SSM整合(Spring+SpringMVC+Mybatis)

1、准备好需要的jar包
2、项目中配置文件目录
SSM整合(Spring+SpringMVC+Mybatis)_第1张图片
applicationContext.xml:spring的配置文件,配置了数据源和mybatis的相关信息
log4j.properties:日志相关配置
spring-mvx.xml:SpringMVC相关配置
sqljdbc.properties:数据库链接信息相关配置
3、配置文件详解
3.1、applicationContext.xml


<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:p="http://www.springframework.org/schema/p"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop" 
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
    http://www.springframework.org/schema/aop 
    http://www.springframework.org/schema/aop/spring-aop-3.0.xsd 
    http://www.springframework.org/schema/tx 
    http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
    http://www.springframework.org/schema/context 
    http://www.springframework.org/schema/context/spring-context-3.0.xsd">  
       
    <context:component-scan base-package="com.wxcoming.*.service.impl" />  
      
    <context:property-placeholder location="classpath:sqljdbc.properties" />
    
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close">
        <property name="jdbcUrl" value="${jdbcUrl}">property>
        <property name="driverClass" value="${driverClass}">property>
        <property name="user" value="${user}">property>
        <property name="password" value="${password}">property>
        
        <property name="initialPoolSize" value="${initialPoolSize}">property>
        
        <property name="minPoolSize" value="3">property>
        
        <property name="maxPoolSize" value="${maxPoolSize}">property>
        
        <property name="acquireIncrement" value="3">property>
        
        <property name="maxIdleTime" value="1800">property>
    bean>
      
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource"/>
          
        <property name="mapperLocations" value="classpath:com/wxcoming/*/dao/*.xml">property>  
        
    bean>
      
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">  
        <property name="basePackage" value="com.wxcoming.core.dao" />  
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory">property>  
    bean>  

      
    <bean id="transactionManager"       class="org.springframework.jdbc.datasource.DataSourceTransactionManager">  
        <property name="dataSource" ref="dataSource" />  
    bean>  
beans>

3.2、spring-mvx.xml


<beans xmlns="http://www.springframework.org/schema/beans"  
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"  
    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-3.1.xsd    
                        http://www.springframework.org/schema/context    
                        http://www.springframework.org/schema/context/spring-context-3.1.xsd    
                        http://www.springframework.org/schema/mvc    
                        http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">  
      
    <context:component-scan base-package="com.wxcoming.*.controller" />  
      
    <bean id="mappingJacksonHttpMessageConverter"  
        class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">  
        <property name="supportedMediaTypes">  
            <list>  
                <value>text/html;charset=UTF-8value>  
            list>  
        property>  
    bean>  
      
    <bean  
        class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">  
        <property name="messageConverters">  
            <list>  
                <ref bean="mappingJacksonHttpMessageConverter" />   
            list>  
        property>  
    bean>  
      
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">  
          
        <property name="prefix" value="/WEB-INF/jsp/" />  
        <property name="suffix" value=".jsp" />  
    bean>  

      
    <bean id="multipartResolver"    
        class="org.springframework.web.multipart.commons.CommonsMultipartResolver">    
          
        <property name="defaultEncoding" value="utf-8" />    
          
        <property name="maxUploadSize" value="10485760000" />    
          
        <property name="maxInMemorySize" value="40960" />    
    bean>   
beans>  

3.3、web.xml


<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
  <display-name>ERP2.0display-name>
      
    <context-param>  
        <param-name>contextConfigLocationparam-name>  
        <param-value>classpath:spring-mybatis.xmlparam-value>  
    context-param>  
      
    <filter>  
        <filter-name>encodingFilterfilter-name>  
        <filter-class>org.springframework.web.filter.CharacterEncodingFilterfilter-class>  
        <async-supported>trueasync-supported>  
        <init-param>  
            <param-name>encodingparam-name>  
            <param-value>UTF-8param-value>  
        init-param>  
    filter>  
    <filter-mapping>  
        <filter-name>encodingFilterfilter-name>  
        <url-pattern>/*url-pattern>  
    filter-mapping>  
      
    <listener>  
        <listener-class>org.springframework.web.context.ContextLoaderListenerlistener-class>  
    listener>  
      
    <listener>  
        <listener-class>org.springframework.web.util.IntrospectorCleanupListenerlistener-class>  
    listener>  
      
    <servlet>  
        <servlet-name>SpringMVCservlet-name>  
        <servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>  
        <init-param>  
            <param-name>contextConfigLocationparam-name>  
            <param-value>classpath:spring-mvc.xmlparam-value>  
        init-param>  
        <load-on-startup>1load-on-startup>  
        <async-supported>trueasync-supported>  
    servlet>  
    <servlet-mapping>  
        <servlet-name>SpringMVCservlet-name>  
          
        <url-pattern>/url-pattern>  
    servlet-mapping>  
web-app>

3.4、mapper.xml


 
            
            <mapper namespace="com.wxcoming.core.dao.BaseDao"> 
                
                <select id="findAllWare" resultType="com.wxcoming.core.bean.Ware">
                   select iden,name,code,model,price,unit,bmstock_iden,bmsite_iden,level
                   from ware            
                select>
            mapper>

配置文件的内容到这里就结束了,java代码的编写应该不难,这里就不写了。在整合的过程中,可能有的人喜欢将mybatis和spring文件分开,所有SSM的整合没有唯一的标准,主要是以下内容:
1、spring注解
2、spring扫描,指定扫描的范围
3、数据库信息的引入
4、数据源
5、数据库工厂
6、关系mapper.xml
7、springMVC开启注解
8、springMVC的视图配置
9、在wem.xml中配置springMVC的前端控制器
10、在wem.xml中配置编码处理
这里讲了些主要的配置信息,可能漏了些,以后想起再补上。

你可能感兴趣的:(java框架,mybatis)