美文网首页
ssm整合基础篇

ssm整合基础篇

作者: 宋雨轩同学 | 来源:发表于2018-05-08 10:04 被阅读100次

Mybatis与Spring的整合

1:引入spring与mybatis各自的jar包
2:引入spring与mybatis整合的包

    mybatis-spring-1.2.4.jar

3:当有 jar包冲突,保留高版本的jar包
4:在spring的配置文件applicationContext.xml中

      配置管理sqlSessionFactory
      配置管理数据源
      配置管理mapper对象

5:引入SpringMVC需要的jar包

      spring-web.jar
      spring-webmvc.jar

6:将spring的IOC容器委托给web容器管理

 在web.xml配置spring提供的监听器以及制定spring配置文件      applicationContext.xml的位置

7:springMVC的配置

      在web.xml加入springmvc前端控制的配置,并指定springmvc配置文件的位置
注意:SpringMVC是Spring的一个子容器,但是我们一般不会将springmvc的配置和spring的配置放一起
      Spring的配置文件一般包括数据源的配置,事务控制,跟其他框架的整合,注解驱动(service类和dao类的注册以及依赖关系)
SpringMVC的配置文件一般包括Controller层的注册以及涉及到springmvc的一些相关配置(映射器,适配器,类型转换,异常配置,国际化)
**特别注意:在进行注解扫描时,要在spring的配置文件里面剔除掉controller的扫描
在springmvc的配置文件只能包含controller的扫描
**特别特别注意:SpringMVC子容器里面的对象可以依赖Spring父容器的对象,反之不行
比如:Controller可以依赖service service/repository不能依赖Controller

8:SpringMVC同样提供了一个用于指定传输格式编码的过滤器
 <filter>
    <filter-name>CharacterEncodingFilter</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>CharacterEncodingFilter</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping> 

applicationContext.xml

<?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:tx="http://www.springframework.org/schema/tx"
    xmlns:aop="http://www.springframework.org/schema/aop" 
    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/tx 
        http://www.springframework.org/schema/tx/spring-tx.xsd      
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop.xsd">
        
        <context:component-scan base-package="com.hycj.sysmanage">
          <!-- 过滤掉控制层的注解 -->
          <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
        </context:component-scan>
        <context:property-placeholder location="classpath:jdbc.properties"/>
        <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
           <property name="driver" value="${jdbc.driver}"></property>
           <property name="url" value="${jdbc.url}"></property>
           <property name="username" value="${jdbc.username}"></property>
           <property name="password" value="${jdbc.password}"></property>
        </bean>
        <!-- 注册事物管理器 -->
        <bean id="txMgr" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
            <property name="dataSource" ref="dataSource"/>
        </bean>
        <!-- 开启事物注解驱动 -->
        <tx:annotation-driven transaction-manager="txMgr"/>
        <!-- 配置mybatis的sqlSessionFactory -->
        <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
            <property name="dataSource" ref="dataSource"></property>
            <property name="configLocation" value="classpath:mybatis-config.xml"></property>
        </bean>
        <!--    采用MapperScannerConfigurer扫描器来配置某些包下面的接口需要自动创建实现类代理对象 -->
        <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
          <property name="basePackage" value="com.hycj.sysmanage.mapper"></property>
          <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
        </bean>
</beans>

jdbc.properties

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://127.0.0.1:3306/springmvc_test
jdbc.user=root
jdbc.password=root

log4j.properties

log4j.rootLogger=DEBUG, CONSOLE, FILE 

##  console  配置文件输出的目的地 (控制台)
log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
log4j.appender.CONSOLE.layout.ConversionPattern=%d{yyyy/MM/dd/HH:mm:ss} %-5p [%t] %10l - %m%n

##  file  配置文件输出的目的地 (写入日志文件)
log4j.appender.FILE=org.apache.log4j.RollingFileAppender
log4j.appender.FILE.File=D:/logs/log4j.log
log4j.appender.FILE.MaxFileSize=1MB
log4j.appender.FILE.Append = true
log4j.appender.FILE.layout=org.apache.log4j.PatternLayout
log4j.appender.FILE.layout.ConversionPattern=%d{yyyy/MM/dd/HH:mm:ss} %-5p [%t] %10l - %m%n

##第一个参数代表日志的级别  日志级别有五个  DEBUG INFO WARN ERROR FATAL
##常用的日志基本有4个 DEBUG INFO WARN ERROR
##DEBUG 我们为程序设定的一些调试信息
##INFO  为一般 要显示的信息 ,比如登陆,参数的值
##WARN  一般为警告信息 ,比如说session丢失,文件路径不存在
##ERROR 一般为异常信息   用于异常打印
##

##第二个和第三个参数代表日志信息的输出地点  输出地点分五个类型
##1.org.apache.log4j.ConsoleAppender(控制台)
##2.org.apache.log4j.FileAppender(文件)
##3.org.apache.log4j.DailyRollingFileAppender(每天产生一个日志文件)
##4.org.apache.log4j.RollingFileAppender(文件大小到达指定尺寸的时候产生一个新的文件)
##5.org.apache.log4j.WriterAppender(将日志信息以流格式发送到任意指定的地方--邮箱)


## layout表示日志信息的输出格式风格
## 1.org.apache.log4j.HTMLLayout(以HTML表格形式布局),
## 2.org.apache.log4j.PatternLayout(可以灵活地指定布局模式),
## 3.org.apache.log4j.SimpleLayout(包含日志信息的级别和信息字符串),
## 4.org.apache.log4j.TTCCLayout(包含日志产生的时间、线程、类别等等信息)

##%d: 输出日志时间点的日期或时间,比如:%d{yyy MMM dd HH:mm:ss},输出类似:2011年10月18日 22:10:28
##%p: 输出日志信息优先级,即DEBUG,INFO,WARN,ERROR,FATAL,
##%t: 输出产生该日志事件的线程名
##%c: 输出日志信息所属的类目,通常就是所在类的全名
##%l: 输出代码中的行号
##%m: 输出代码中指定的消息,产生的日志具体信息
##%n: 输出一个回车换行符

mybatis-config.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration   
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"  
"http://mybatis.org/dtd/mybatis-3-config.dtd">  
<configuration>
  <settings>
        <!-- 是否开启自动驼峰命名规则  USER_ID userId
            既从经典的数据表列名 AB_COLUMN到经典的java属性名的映射abColumn
            默认是false
        -->
        <setting name="mapUnderscoreToCamelCase" value="true"/>
    
        <!--开启延迟加载的总开关  -->
        <setting name="lazyLoadingEnabled" value="true"/>
        <!--开启按需加载的开关  -->
        <setting name="aggressiveLazyLoading" value="false"/>
  </settings>
  <!--设置别名  -->
    <typeAliases>
        <!--单个设置别名  --> 
        <!-- <typeAlias type="com.tz.mybatis.sysmanage.entity.User" alias="user"/> -->
        <!--批量设置别名 -->
        <package name="com.tz.springmvc.sysmanage.entity"/>
    </typeAliases>  
        <!-- 加入所有的sql映射文件 -->
    <mappers>
        <!--第一种方式 ,用resource标签  -->
        <!-- <mapper resource="UserMapper.xml"/>  -->
        <!--第二种方式,用class标签应用接口类,规则:接口类和sql映射文件必须同名,然后在同一路径  -->
        <!-- <mapper class="com.tz.mybatis.sysmanage.mapper.UserMapper" /> -->
        <!--第三种方式 用package标签批量自动扫描所配置的报路径的所有接口 
            规则: 接口类和sql映射文件必须同名,然后在同一路径-->
         <package name="com.tz.springmvc.sysmanage.mapper"/>
    </mappers>
</configuration>

springmvc.xml

<?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:tx="http://www.springframework.org/schema/tx"
    xmlns:mvc="http://www.springframework.org/schema/mvc"     
    xmlns:aop="http://www.springframework.org/schema/aop" 
    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/tx 
        http://www.springframework.org/schema/tx/spring-tx.xsd   
        http://www.springframework.org/schema/mvc    
        http://www.springframework.org/schema/mvc/spring-mvc.xsd    
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop.xsd">
       <context:component-scan base-package="com.hycj.sysmanage" use-default-filters="false">
         <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
       </context:component-scan>
       <mvc:annotation-driven></mvc:annotation-driven>
       <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <property name="prefix" value="/WEB-INF/pages/"></property>
            <property name="suffix" value=".jsp"></property>
       </bean>
</beans> 

相关文章

网友评论

      本文标题:ssm整合基础篇

      本文链接:https://www.haomeiwen.com/subject/cmrirftx.html