SSM整合 -- Spring和Mybatis的配置文件详解

不论是SSH还是SSM,只要是JavaWeb项目,就要和配置文件打交道.特别是Spring,这个框架是JavaWeb的重中之重,在Spring中写配置文件可以让你更关注于业务逻辑,而不是配置,所以许多框架都提供了对它的支持,他也一直是初学者们最揪心的地方.就下来,我们就来讲讲SSM中Spring.xml和mybatisConfig.xml这连个配置文件的作用和使用.
一:创建spring-servlet.xml

    <!-- 自动扫描包路径 -->
    <context:component-scan base-package="com.jacx.web.action" />

    <bean
        class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping" />

    <bean
        class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">

        <property name="messageConverters">
            <util:list id="beanList">
                <ref bean="mappingJacksonHttpMessageConverter" />
            </util:list>
        </property>
    </bean>
    <bean id="mappingJacksonHttpMessageConverter"
        class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">

        <property name="supportedMediaTypes">
        <!--代码格式声明-->
            <list>
                <value>text/html;charset=utf-8</value>
            </list>
        </property>
    </bean>

    <bean
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <!--使用前缀后缀,在action中就只用写跳转的文件名-->
        <property name="viewClass"
            value="org.springframework.web.servlet.view.JstlView" />
            <!--前缀-->
        <property name="prefix" value="/WEB-INF/content/" />
        <!--文件名后缀-->
        <property name="suffix" value=".jsp" />
    </bean>


 
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39

可以看到mybatisConfig.xml已经被这个文件替代了这个配置文件仅仅储存了一些概括性的东西,其他的描述信息我们专注于在Spring中实现

2.创建Spring-*.xml  我写的是spring-bean.xml

 
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 1
  • 2
  • 3
  • 4
  • 5
<!-- 1.配置数据库相关参数 这里如果你不是用jdbc.properties文件的话就不用写-->
<context:property-placeholder location="classpath:jdbc.properties"/>
<!-- 2.数据库连接池 -->
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
    <!-- 配置连接池属性 如果没有jdbc.properties  那么value里面就填对应的属性值-->
    <property name="driverClass" value="${driver}"/>
    <property name="jdbcUrl" value="${url}"/>
    <property name="user" value="${username}"/>
    <property name="password" value="${password}"/>

    <!-- c3p0连接池私有属性 -->
    <property name="maxPoolSize" value="30"/>
    <property name="minPoolSize" value="10"/>
    <!-- 关闭连接后不自动Commit -->
    <property name="autoCommitOnClose" value="false"/>
    <!-- 设置连接超时时间,如果值为0,则永不超时 -->
    <property name="checkoutTimeout" value="1000"/>
    <!-- 当获取连接失败时重新次数 -->
    <property name="acquireRetryAttempts" value="2"/>

    <property name="testOnBorrow" value="false"/>
    <property name="testOnReturn" value="false"/>
    <property name="testWhileIdle" value="true"/>
    <!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 -->
    <property name="timeBetweenEvictionRunsMillis" value="60000" />
    <!-- 配置一个连接在池中最小生存的时间,单位是毫秒 -->
    <property name="minEvictableIdleTimeMillis" value="25200000" />

    <!-- 打开removeAbandoned功能 -->
    <property name="removeAbandoned" value="true" />
    <!-- 1800秒,也就是30分钟 -->
    <property name="removeAbandonedTimeout" value="1800" />
    <!-- 关闭abanded连接时输出错误日志 -->
    <property name="logAbandoned" value="true" />

</bean>

<!--3.配置sqlSessionFactory对象  -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
    <!-- 注入数据库连接池 -->
    <property name="dataSource" ref="dataSource"/>
    <!-- 配置MyBatis全局配置文件:MyBatis-config.xml -->
    <property name="configLocation" value="classpath:mybatis-config.xml"/>
    <!-- 使用别名扫描entity -->
    <property name="typeAliasesPackage" value="com.jacx.seckill.entity"/>
    <!-- 扫描sql配置文件:mapper需要的xml文件 -->
    <property name="mapperLocation" value="classpath:mapper/*.xml"/>
</bean>

<!-- 4.配置扫描Dao接口包,动态实现dao接口并注入1到spring容器中 -->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
    <!-- 注入sqlSessionFactory sqlSessionFactoryBeanName使用后注入的方式防止它在加载jdbc配置文件之前就初始化它-->
    <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
    <!-- 给出扫描Dao接口包 -->
    <property name="basePackage" value="com.jacx.seckill.dao"/>
</bean>
<!-- 配置事务管理器 -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    <property name="dataSource" ref="dataSource" />
</bean>

<!-- 注解方式配置事物 -->
<!-- <tx:annotation-driven transaction-manager="transactionManager" /> -->

<!-- 拦截器方式配置事物 --> 
<tx:advice id="transactionAdvice" transaction-manager="transactionManager">
    <tx:attributes>
        <tx:method name="save*" propagation="REQUIRED" />
        <tx:method name="delete*" propagation="REQUIRED" />
        <tx:method name="update*" propagation="REQUIRED" />
        <tx:method name="*" propagation="NEVER" read-only="true" />
    </tx:attributes>
</tx:advice> 
<aop:config>
    <aop:pointcut id="transactionPointcut" expression="execution(* com.jacx.service.impl.*.*(..))" />
    <aop:advisor pointcut-ref="transactionPointcut" advice-ref="transactionAdvice" />
</aop:config>

三:在web.xml中加入spring-*.xml

     <display-name>SSMComputer</display-name>
      <welcome-file-list>
          <welcome-file>index.jsp</welcome-file>
      </welcome-file-list>
   <servlet>
    <servlet-name>springmvc</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:springmvc-servlet.xml</param-value>
    </init-param>
    <!-- 使系统在启动时装在servlet而不是第一个servlet被访问 -->
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>springmvc</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:spring-bean.xml</param-value>
</context-param>
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<!-- 配置过滤器,以下声明的文件不被拦截,否则默认拦截,!!注意servlet-name标签内的default不可更改!!! -->
<servlet-mapping>
    <servlet-name>default</servlet-name>
    <url-pattern>*.js</url-pattern>
    <url-pattern>*.css</url-pattern>
    <url-pattern>/images/*</url-pattern>
</servlet-mapping>
<!--配置编码过滤-->
<filter>
    <filter-name>encodingFilter</filter-name>
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <init-param>
        <param-name>encoding</param-name>
        <param-value>utf-8</param-value>
    </init-param>
</filter>
<filter-mapping>
    <filter-name>encodingFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

为什么要使用Spring来代替MybatisConfig进行配置呢?就是为了体现约定大于配置的编程理念.还记得在Mybatis的单独案例中,我们的配置文件对于entity别名和加载mapper配置文件是怎么配置的吗? 
通过 标签

<typeAlias type="com.jacx.entity.Emp" alias="emp" />
<mapper resource="com/jacx/config/empMapper.xml" />
 
 
  • 1
  • 2
  • 1
  • 2

在真实的项目中我们可能有几十上百张表,如果关注与别名和mapper的映射,是非常消耗时间和精力的. 
但是有了Spring,一切变得不同了,我们只需要使用

<!-- 使用别名扫描entity -->
        <property name="typeAliasesPackage" value="com.jacx.seckill.entity"/>
        <!-- 扫描sql配置文件:mapper需要的xml文件 -->
        <property name="mapperLocation" value="classpath:mapper/*.xml"/>
 
 
  • 1
  • 2
  • 3
  • 4
  • 1
  • 2
  • 3
  • 4

他就可以自动将实体类名作为别名,自动加载mapper文件夹下的所有xml文件.这就是约定大于配置.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值