スプリングとSprigMVCの配置

29308 ワード

スプリング
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
                        http://www.springframework.org/schema/aop
                        http://www.springframework.org/schema/aop/spring-aop.xsd
                        http://www.springframework.org/schema/tx
                        http://www.springframework.org/schema/tx/spring-tx.xsd
                         http://www.springframework.org/schema/context
                        http://www.springframework.org/schema/context/spring-context.xsd
        "
       default-autowire="byName"
>
    <!--        -->
        <context:property-placeholder location="classpath:db.properties"></context:property-placeholder>
    <!--      -->
        <context:component-scan base-package="com.bjsxt.service.impl"></context:component-scan>
    <!--     bean-->
        <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
            <property name="driverClassName" value="${mysql.driver}"></property>
            <property name="url" value="${mysql.url}"></property>
            <property name="username" value="${mysql.username}"></property>
            <property name="password" value="${mysql.password}"></property>
        </bean>
    <!--    bean-->
        <bean id="factory" class="org.mybatis.spring.SqlSessionFactoryBean">
            <property name="typeAliasesPackage" value="com.bjsxt.pojo"></property>
        </bean>
    <!--  Mapper-->
        <bean id="mapper" class="org.mybatis.spring.mapper.MapperScannerConfigurer">
            <property name="sqlSessionFactoryBeanName" value="factory"></property>
            <property name="basePackage" value="com.bjsxt.mapper"></property>
        </bean>
    <!--      bean-->
        <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"></bean>
    <!--      -->
        <tx:advice id="advice" transaction-manager="transactionManager">
            <tx:attributes>
                <tx:method name="sel*" read-only="true"/>
                <tx:method name="ins*"></tx:method>
                <tx:method name="up*"></tx:method>
                <tx:method name="del*"></tx:method>
            </tx:attributes>
        </tx:advice>
    <!--    -->
        <aop:config>
            <aop:pointcut id="my" expression="execution(* com.bjsxt.service.impl.*.*(..))"></aop:pointcut>
            <aop:advisor advice-ref="advice" pointcut-ref="my"></aop:advisor>
        </aop:config>
</beans>
SpringMVC
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd
       ">
    <!--      -->
        <context:component-scan base-package="com.bjsxt.controller"></context:component-scan>
    <!--       -->
        <mvc:annotation-driven></mvc:annotation-driven>
    <!--        -->
        <mvc:resources mapping="/js/**" location="/js/"></mvc:resources>
        <mvc:resources mapping="/css/**" location="/css/"></mvc:resources>
        <mvc:resources mapping="/images/**" location="/images/"></mvc:resources>
        <mvc:resources mapping="/themes/**" location="/themes/"></mvc:resources>
        <mvc:resources mapping="/upload/**" location="/upload/"></mvc:resources>
    <!--      bean-->
        <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
            <property name="defaultEncoding" value="utf-8"></property>
            <property name="maxInMemorySize" value="16003396"></property>
            <property name="maxUploadSize" value="16003396"></property>
         </bean>
    <!--      bean-->
        <bean id="exceptionResolverxceptionResolver" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
            <property name="exceptionMappings">
                <props>
                    <prop key="org.springframework.web.multipart.MaxUploadSizeExceededException">limit.jsp</prop>
                </props>
            </property>
        </bean>
    <!--          -->
        <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <property name="prefix" value="/WEB-INF/"></property>
            <property name="suffix" value=".jsp"></property>
        </bean>
</beans>