SSM框架---整合配置详情

[html]  view plain  copy
 
  1. S<span style="font-family: "Microsoft YaHei"; font-size: 15px; color: rgb(51, 51, 51); line-height: 24px; background-color: rgb(255, 255, 255);">pring:span><a target=_blank target="_blank" href="http://spring.io/docs" style="font-family: "Microsoft YaHei"; font-size: 15px; line-height: 24px; margin: 0px; padding: 0px; text-decoration: none; color: rgb(0, 0, 0); border-bottom: 1px dotted rgb(51, 51, 51); background-color: rgb(255, 255, 255);">http://spring.io/docsa>  

MyBatis:http://mybatis.github.io/mybatis-3/

基本的组织结构和用法就不说了,前面的博客和官方文档上都非常的全面。jar包可以使用Maven来组织管理。来看配置文件。

 

web.xml的配置                                                                                                                                   

web.xml应该是整个项目最重要的配置文件了,不过servlet3.0中已经支持注解配置方式了。在servlet3.0以前每个servlet必须要在web.xml中配置servlet及其映射关系。但是在spring框架中就不用了,因为spring中是依赖注入(Dependency Injection)的也叫控制反转(Inversion of Control)。但是也要配置一个重要的servlet,就是前端控制器(DispatcherServlet)。配置方式与普通的servlet基本相似。

配置内容如下:

[html]  view plain  copy
 
  1.   
  2.   <servlet>  
  3.       <servlet-name>springservlet-name>  
  4.       <servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>  
  5.       <init-param>  
  6.             
  7.   <error-page>  
  8.     <error-code>404error-code>  
  9.     <location>/error404.jsplocation>  
  10.   error-page>  
  11.     
  12.   <error-page>  
  13.     <error-code>500error-code>  
  14.     <location>/error500.jsplocation>  
  15.   error-page>  
  16.     
  17.     
  18.     <context-param>  
  19.         <param-name>contextConfigLocationparam-name>  
  20.         <param-value>WEB-INF/classes/spring/applicationContext-*.xmlparam-value>  
  21.     context-param>  
  22.     <listener>  
  23.         <listener-class>org.springframework.web.context.ContextLoaderListenerlistener-class>  
  24.     listener>  
  25.   
  26.       
  27.     
  28.   <servlet>  
  29.       <servlet-name>springservlet-name>  
  30.       <servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>  
  31.       <init-param>  
  32.             
  33.   <filter>  
  34.       <filter-name>CharacterEncodingFilterfilter-name>  
  35.       <filter-class>org.springframework.web.filter.CharacterEncodingFilterfilter-class>  
  36.       <init-param>  
  37.           <param-name>encodingparam-name>  
  38.           <param-value>utf-8param-value>  
  39.       init-param>  
  40.   filter>  
  41.   <filter-mapping>  
  42.       <filter-name>CharacterEncodingFilterfilter-name>  
  43.       <url-pattern>/*url-pattern>  
  44.   filter-mapping>  
  45.   <welcome-file-list>  
  46.     <welcome-file>welcome.jspwelcome-file>  
  47.   welcome-file-list>    
  48. web-app>  

 看到配置文件中多了两块内容,一个是error page是用来友好的处理错误的,可以使用错误代码来区别并跳转到相应的处理页面。这段配置代码最好放到最前面,在前端控制器拦截之前处理。

还有一块内容是一个解决post乱码问题的过滤器,拦截post请求并编码为utf8。

springmvc.xml的配置                                                                                                                                                

视图解析器的配置:

[html]  view plain  copy
 
  1.   
  2. <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">  
  3.            
  4.          <property name="prefix" value="/">property>  
  5.          <property name="suffix" value=".jsp">property>  
  6. bean>  

在Controller中设置视图名的时候会自动加上前缀和后缀。

Controller的配置

自动扫描方式,扫描包下面所有的Controller,可以使用注解来指定访问路径。


<context:component-scan base-package="com.wxisme.ssm.controller">

也可以使用单个的配置方式,需要指定Controller的全限定名。

<bean name="/queryUser.action" class="com.wxisme.ssm.controller.Controller1"/>

配置注解的处理器适配器和处理器映射器:


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

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

也可以使用下面的简化配置:


<mvc:annotation-driven conversion-service="conversionService">mvc:annotation-driven>

配置拦截器,可以直接定义拦截所有请求,也可以自定义拦截路径。

[html]  view plain  copy
 
  1. <mvc:interceptors>  
  2.       
  3.     <bean class="com.wxisme.ssm.interceptor.IdentityInterceptor">bean>  
  4.          <bean id="exceptionResolver" class="com.wxisme.ssm.exception.OverallExceptionResolver">bean>
配置文件上传数据解析器,在上传文件时需要配置。

[html]  view plain  copy
 
  1.   
  2.     <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">  
  3.         <property name="maxUploadSize">  
  4.             <value>9242880value>  
  5.         property>  
  6.     bean>  
还可以配置一些自定义的参数类型,以日期类型绑定为例。

[html]  view plain  copy
 
  1.   
  2.     <bean id="conversionService" class="org.springframework.format.support.FormattingConversionServiceFactoryBean">  
  3.      <property name="converters">  
  4.          <list>  
  5.                
  6.              <bean class="com.wxisme.ssm.controller.converter.DateConverter"/>  
  7.          list>  
  8.      property>  
  9.     bean>  

上面提到过如果在配置前端控制器时拦截了所有的请求,不做特殊处理就会导致部分静态资源无法使用。如果是这种情况就可以使用下面的配置来访问静态资源文件。

<mvc:resources mapping="/images/**" location="/images/" />
<mvc:resources mapping="/css/**" location="/css/" />  
<mvc:resources mapping="/js/**" location="/js/" />
<mvc:resources mapping="/imgdata/**" location="/imgdata/" />

也可以使用默认,但是需要在web.xml中配置。


    

完全可以不拦截所有路径,大可避免这个问题的发生。

完整的配置大概是这样的,需要注意xml文件的命名空间,有时候会有影响的。

[html]  view plain  copy
 
  1. xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  4. xmlns:context="http://www.springframework.org/schema/context"  
  5. xmlns:mvc="http://www.springframework.org/schema/mvc"  
  6. xmlns:jdbc="http://www.springframework.org/schema/jdbc"  
  7. xmlns:jee="http://www.springframework.org/schema/jee"  
  8. xmlns:aop="http://www.springframework.org/schema/aop"  
  9. xmlns:tx="http://www.springframework.org/schema/tx"  
  10. xsi:schemaLocation="http://www.springframework.org/schema/beans  
  11. http://www.springframework.org/schema/beans/spring-beans.xsd  
  12. http://www.springframework.org/schema/context  
  13. http://www.springframework.org/schema/context/spring-context.xsd  
  14. http://www.springframework.org/schema/mvc  
  15. http://www.springframework.org/schema/mvc/spring-mvc.xsd  
  16. http://www.springframework.org/schema/tx  
  17. http://www.springframework.org/schema/tx/spring-tx.xsd  
  18. http://www.springframework.org/schema/aop  
  19. http://www.springframework.org/schema/aop/spring-aop.xsd">  
  20.       
  21.       
  22.        
  23.      <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">  
  24.            
  25.          <property name="prefix" value="/">property>  
  26.          <property name="suffix" value=".jsp">property>  
  27.      bean>  
  28.        
  29.        
  30.      <context:component-scan base-package="com.wxisme.ssm.controller">  
  31.      context:component-scan>  
  32.        
  33.     <mvc:annotation-driven conversion-service="conversionService">mvc:annotation-driven>  
  34.       
  35.       
  36.     <bean id="conversionService" class="org.springframework.format.support.FormattingConversionServiceFactoryBean">  
  37.      <property name="converters">  
  38.          <list>  
  39.                
  40.              <bean class="com.wxisme.ssm.controller.converter.DateConverter"/>  
  41.          list>  
  42.      property>  
  43.     bean>  
  44.       
  45.       
  46.       
  47.       
  48.       
  49.     <mvc:resources mapping="/images/**" location="/images/" />  
  50.     <mvc:resources mapping="/css/**" location="/css/" />    
  51.     <mvc:resources mapping="/js/**" location="/js/" />  
  52.     <mvc:resources mapping="/imgdata/**" location="/imgdata/" />  
  53.       
  54.       
  55.     <mvc:interceptors>  
  56.       
  57.     <bean class="com.wxisme.ssm.interceptor.IdentityInterceptor">bean>  
  58.           
  59.     <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">  
  60.         <property name="maxUploadSize">  
  61.             <value>9242880value>  
  62.         property>  
  63.     bean>  
  64.       
  65.       
  66.       
  67.     <bean id="exceptionResolver" class="com.wxisme.ssm.exception.OverallExceptionResolver">bean>  
  68.       
  69.  beans>  

applicationContext-*.xml的配置                                                                                                

applicationContext-*.xml包括三个配置文件,分别对应数据层控制、业务逻辑service控制和事务的控制。

数据访问层的控制,applicationContext-dao.xml的配置:

配置加载数据连接资源文件的配置,把数据库连接数据抽取到一个properties资源文件中方便管理。

配置为:


<context:property-placeholder location="/WEB-INF/classes/jdbc.properties"/>

其中jdbc.properties文件的内容如下:

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/database
jdbc.username=root
jdbc.password=1234

 

 配置数据库连接池,这里使用的是dbcp,别忘了添加jar包!

[html]  view plain  copy
 
  1.   
  2. <bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource" destroy-method="close">  
  3.     <property name="driverClassName" value="${jdbc.driver}"/>  
  4.     <property name="url" value="${jdbc.url}"/>  
  5.     <property name="username" value="${jdbc.username}"/>  
  6.     <property name="password" value="${jdbc.password}"/>  
  7. bean>  

Spring和MyBatis整合配置,jar包由MyBatis提供。

配置sqlSessionFactory

[html]  view plain  copy
 
  1.   
  2. <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">  
  3.       
  4.     <property name="dataSource" ref="dataSource"/>  
  5.       
  6.     <property name="configLocation" value="/WEB-INF/classes/mybatis/SqlMapConfig.xml"/>  
  7.   
  8. bean>  

 SqlMapConfig.xml文件是MyBatis的配置文件,后面会提到。

配置Mapper扫描器,扫描mapper包下的所有mapper文件和类,要求mapper配置文件和类名需要一致。


<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
    
    <property name="basePackage" value="com.wxisme.ssm.mapper">property>
    <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
bean>
 整个applicationContext-dao.xml配置文件应该是这样的:

[html]  view plain  copy
 
  1. xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  4. xmlns:context="http://www.springframework.org/schema/context"  
  5. xmlns:mvc="http://www.springframework.org/schema/mvc"  
  6. xmlns:jdbc="http://www.springframework.org/schema/jdbc"  
  7. xmlns:jee="http://www.springframework.org/schema/jee"  
  8. xmlns:aop="http://www.springframework.org/schema/aop"  
  9. xmlns:tx="http://www.springframework.org/schema/tx"  
  10. xsi:schemaLocation="http://www.springframework.org/schema/beans  
  11. http://www.springframework.org/schema/beans/spring-beans.xsd  
  12. http://www.springframework.org/schema/context  
  13. http://www.springframework.org/schema/context/spring-context.xsd  
  14. http://www.springframework.org/schema/mvc  
  15. http://www.springframework.org/schema/mvc/spring-mvc.xsd  
  16. http://www.springframework.org/schema/tx  
  17. http://www.springframework.org/schema/tx/spring-tx.xsd  
  18. http://www.springframework.org/schema/aop  
  19. http://www.springframework.org/schema/aop/spring-aop.xsd">  
  20.   
  21.   
  22. <context:property-placeholder location="/WEB-INF/classes/jdbc.properties"/>  
  23.   
  24.   
  25. <bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource" destroy-method="close">  
  26.     <property name="driverClassName" value="${jdbc.driver}"/>  
  27.     <property name="url" value="${jdbc.url}"/>  
  28.     <property name="username" value="${jdbc.username}"/>  
  29.     <property name="password" value="${jdbc.password}"/>  
  30. bean>  
  31.   
  32.   
  33. <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">  
  34.       
  35.     <property name="dataSource" ref="dataSource"/>  
  36.       
  37.     <property name="configLocation" value="/WEB-INF/classes/mybatis/SqlMapConfig.xml"/>  
  38. bean>  
  39.   
  40.   
  41. <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">  
  42.       
  43.     <property name="basePackage" value="com.wxisme.ssm.mapper">property>  
  44.     <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>  
  45. bean>  
  46. beans>  

 业务逻辑控制,applicationContext-service.xml的配置:

这个文件里暂时只需要定义service的实现类即可。


<bean id="userService" class="com.wxisme.ssm.service.impl.UserServiceImpl"/>

 事务控制,applicationContext-transaction.xml的配置

配置数据源,使用JDBC控制类。

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

 配置通知,事务控制。

[html]  view plain  copy
 
  1.   
  2.     <tx:advice id="txAdvice" transaction-manager="transactionManager">  
  3.         <tx:attributes>  
  4.               
  5.             <tx:method name="save*" propagation="REQUIRED"/>  
  6.             <tx:method name="insert*" propagation="REQUIRED"/>  
  7.             <tx:method name="update*" propagation="REQUIRED"/>  
  8.             <tx:method name="delete*" propagation="REQUIRED"/>  
  9.             <tx:method name="find*" propagation="SUPPORTS" read-only="true"/>  
  10.             <tx:method name="select*" propagation="SUPPORTS" read-only="true"/>  
  11.               
  12.         tx:attributes>  
  13.     tx:advice>  

 配置AOP切面


    <aop:config>
        <aop:advisor advice-ref="txAdvice" pointcut="execution(* com.wxisme.ssm.service.impl.*.*(..))"/>
    aop:config>

 整个事务控制的配置是这样的:

[html]  view plain  copy
 
  1. xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  4. xmlns:context="http://www.springframework.org/schema/context"  
  5. xmlns:mvc="http://www.springframework.org/schema/mvc"  
  6. xmlns:jdbc="http://www.springframework.org/schema/jdbc"  
  7. xmlns:jee="http://www.springframework.org/schema/jee"  
  8. xmlns:aop="http://www.springframework.org/schema/aop"  
  9. xmlns:tx="http://www.springframework.org/schema/tx"  
  10. xsi:schemaLocation="http://www.springframework.org/schema/beans  
  11. http://www.springframework.org/schema/beans/spring-beans.xsd  
  12. http://www.springframework.org/schema/context  
  13. http://www.springframework.org/schema/context/spring-context.xsd  
  14. http://www.springframework.org/schema/mvc  
  15. http://www.springframework.org/schema/mvc/spring-mvc.xsd  
  16. http://www.springframework.org/schema/tx  
  17. http://www.springframework.org/schema/tx/spring-tx.xsd  
  18. http://www.springframework.org/schema/aop  
  19. http://www.springframework.org/schema/aop/spring-aop.xsd">  
  20.       
  21.   
  22.   
  23. <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">  
  24.       
  25.     <property name="dataSource" ref="dataSource"/>  
  26. bean>  
  27.       
  28.       
  29.     <tx:advice id="txAdvice" transaction-manager="transactionManager">  
  30.         <tx:attributes>  
  31.               
  32.             <tx:method name="save*" propagation="REQUIRED"/>  
  33.             <tx:method name="insert*" propagation="REQUIRED"/>  
  34.             <tx:method name="update*" propagation="REQUIRED"/>  
  35.             <tx:method name="delete*" propagation="REQUIRED"/>  
  36.             <tx:method name="find*" propagation="SUPPORTS" read-only="true"/>  
  37.             <tx:method name="select*" propagation="SUPPORTS" read-only="true"/>  
  38.               
  39.               
  40.         tx:attributes>  
  41.     tx:advice>  
  42.       
  43.       
  44.     <aop:config>  
  45.         <aop:advisor advice-ref="txAdvice" pointcut="execution(* com.wxisme.ssm.service.impl.*.*(..))"/>  
  46.     aop:config>  
  47.       
  48.       
  49. beans>  


 MyBatis的配置                                                                                                                                             

SqlMapConfig.xml的配置   全局setting配置这里省略,数据库连接池在spring整合文件中已经配置,具体setting配置参考官方文档。

别名的定义:

<typeAliases>
    
    <package name="com.wxisme.ssm.po"/>
typeAliases>
mapper映射文件的配置:

[html]  view plain  copy
 
  1. <mappers>  
  2.       
  3.       
  4.     <package name="com.wxisme.ssm.mapper"/>  
  5.        
  6.        
  7. mappers>  
 整个文件的配置应该是这样的:

[html]  view plain  copy
 
  1. xml version="1.0" encoding="UTF-8"?>  
  2. PUBLIC "-//mybatis.org//DTD Config 3.0//EN"  
  3. "http://mybatis.org/dtd/mybatis-3-config.dtd">  
  4. <configuration>  
  5.   
  6.   
  7.   
  8.   
  9. <typeAliases>  
  10.       
  11.     <package name="com.wxisme.ssm.po"/>  
  12. typeAliases>  
  13.   
  14.   
  15.   
  16. <mappers>  
  17.       
  18.     <package name="com.wxisme.ssm.mapper"/>  
  19. mappers>  
  20. configuration>  

具体mapper文件的配置,在使用mapper代理的方法时,命名空间需要是对应的Mapper类。

xml version="1.0" encoding="UTF-8" ?>
DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.wxisme.ssm.mapper.AlbumMapper" >
  
mapper>

以上只是对SSM框架简单使用时的配置文件,如果需要深入使用或者需要理解其内部机理需要参考官方文档和其源代码。

原文http://www.cnblogs.com/wxisme/p/4924561.html?utm_source=tuicool&utm_medium=referral

你可能感兴趣的:(SSM)