SSM配置文件详解

这几天一直在整合SSM框架,虽然网上有很多已经整合好的,但是对于里面的配置文件并没有进行过多的说明,很多人知其然不知其所以然,经过几天的搜索和整理,今天总算对其中的XML配置文件有了一定的了解,所以拿出来一起分享一下,希望有不足的地方大家批评指正~~~

首先   这篇文章暂时只对框架中所要用到的配置文件进行解释说明,而且是针对注解形式的,框架运转的具体流程过两天再进行总结.

spring+springmvc+mybatis框架中用到了三个XML配置文件:web.xml,spring-mvc.xml,spring-mybatis.xml.第一个不用说,每个web项目都会有的也是关联整个项目的配置.第二个文件spring-mvc.xml是springmvc的一些相关配置,第三个是mybatis的相关配置.

项目中还会用到两个资源属性文件jdbc.properties和log4j.properties.一个是关于jdbc的配置,提取出来方便以后的修改.另一个是日志文件的配置.

以上是我这篇文章中所要讲的内容,比较简单,也很容易懂.希望大牛不要鄙视~~接下来进入正题:

一  web.xml

关于这个配置文件我以前一直都是朦朦胧胧的状态,刚好借着这次整合框架的机会将它了解清楚.在下面的代码中我对每一个标签都进行了详细的注释,大家一看就懂,主要理解中的配置,因为其中配置了前端控制器,在SSM框架中,前端控制器起着最主要的作用.下面贴上代码

[html]  view plain  copy
  1. xml version="1.0" encoding="UTF-8"?>  
  2. <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  3.   xmlns="http://java.sun.com/xml/ns/javaee"  
  4.   xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"  
  5.   version="3.0">  
  6.       
  7.     <context-param>   
  8.         <param-name>contextConfigLocationparam-name>            
  9.         <param-value>classpath:spring-mybatis.xmlparam-value>       
  10.     context-param>  
  11.       
  12.            
  13.                                   
  14.       
  15.       
  16.     <filter>        
  17.         <filter-name>encodingFilterfilter-name>       
  18.         <filter-class>org.springframework.web.filter.CharacterEncodingFilterfilter-class>   
  19.         <async-supported>trueasync-supported>       
  20.         <init-param>  
  21.             <param-name>encodingparam-name>     
  22.             <param-value>UTF-8param-value>   
  23.         init-param>  
  24.     filter>  
  25.     <filter-mapping>  
  26.         <filter-name>encodingFilterfilter-name>       
  27.         <url-pattern>/*url-pattern>         
  28.     filter-mapping>  
  29.       
  30.       
  31.       
  32.     <listener>          
  33.         <listener-class>org.springframework.web.context.ContextLoaderListenerlistener-class>  
  34.     listener>  
  35.       
  36.     <listener>  
  37.         <listener-class>org.springframework.web.util.IntrospectorCleanupListenerlistener-class>  
  38.     listener>  
  39.       
  40.       
  41.     <servlet>         
  42.         <servlet-name>SpringMVCservlet-name>    
  43.         <servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>   
  44.         <init-param>  
  45.             <param-name>contextConfigLocationparam-name>    
  46.             <param-value>classpath:spring-mvc.xmlparam-value>   
  47.         init-param>  
  48.         <load-on-startup>1load-on-startup>  
  49.         <async-supported>trueasync-supported>  
  50.     servlet>  
  51.     <servlet-mapping>  
  52.         <servlet-name>SpringMVCservlet-name>    
  53.         <url-pattern>/url-pattern>          
  54.     servlet-mapping>  
  55.       
  56.       
  57.     <session-config>  
  58.         <session-timeout>120session-timeout>  
  59.     session-config>  
  60.       
  61.     <mime-mapping>  
  62.         <extension>*.pptextension>              
  63.         <mime-type>application/mspowerpointmime-type>           
  64.     mime-mapping>  
  65.       
  66.     <welcome-file-list>  
  67.         <welcome-file>/index.jspwelcome-file>   
  68.         <welcome-file>/index.htmlwelcome-file>  
  69.     welcome-file-list>  
  70.       
  71.     <error-page>    
  72.         <error-code>404error-code>          
  73.         <location>error.htmllocation>           
  74.     error-page>  
  75.     <error-page>  
  76.         <exception-type>java.lang.Exceptionexception-type>  
  77.         <location>ExceptionError.htmllocation>              
  78.     error-page>  
  79. web-app>  

二  spring-mvc.xml

需要实现基本功能的配置 
1 配置
2 配置 //配置controller的注入
3 配置视图解析器

  相当于注册了DefaultAnnotationHandlerMapping(映射器)和AnnotationMethodHandlerAdapter(适配器)两个bean.即解决了@Controller注解的使用前提配置。 

context:component-scan  对指定的包进行扫描,实现注释驱动Bean定义,同时将bean自动注入容器中使用。即解决了@Controller标识的类的bean的注入和使用。

[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:aop="http://www.springframework.org/schema/aop"  
  5.     xmlns:mvc="http://www.springframework.org/schema/mvc"  
  6.     xmlns:context="http://www.springframework.org/schema/context"  
  7.     xmlns:tx="http://www.springframework.org/schema/tx"  
  8.     xsi:schemaLocation="http://www.springframework.org/schema/beans  
  9.         http://www.springframework.org/schema/beans/spring-beans-4.1.xsd  
  10.         http://www.springframework.org/schema/tx  
  11.         http://www.springframework.org/schema/tx/spring-tx-4.1.xsd  
  12.         http://www.springframework.org/schema/aop  
  13.         http://www.springframework.org/schema/aop/spring-aop-4.1.xsd  
  14.         http://www.springframework.org/schema/context  
  15.         http://www.springframework.org/schema/context/spring-context-4.1.xsd  
  16.         http://www.springframework.org/schema/mvc  
  17.         http://www.springframework.org/schema/mvc/spring-mvc.xsd">  
  18.      
  19.      
  20.    <mvc:annotation-driven>mvc:annotation-driven>  
  21.      
  22.      
  23.    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">  
  24.    <span style="white-space:pre"> span>  
  25.      <property name="prefix" value="/"/>  
  26.      <property name="suffix" value=".jsp"/>  
  27.    bean>  
  28.      
  29.      
  30.    <context:component-scan base-package="com.rhzh.controller"/>  
  31. beans>  

三  spring-mybatis.xml

需要实现基本功能的配置 
1 配置 //自动扫描,将标注Spring注解的类自动转化Bean,同时完成Bean的注入
2 加载数据资源属性文件
3 配置数据源  三种数据源的配置方式 http://blog.csdn.net/yangyz_love/article/details/8199207
4 配置sessionfactory
5 装配Dao接口
6 声明式事务管理 
7 注解事务切面 

[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:aop="http://www.springframework.org/schema/aop"  
  5.     xmlns:context="http://www.springframework.org/schema/context"  
  6.     xmlns:tx="http://www.springframework.org/schema/tx"  
  7.     xsi:schemaLocation="http://www.springframework.org/schema/beans  
  8.         http://www.springframework.org/schema/beans/spring-beans-4.1.xsd  
  9.         http://www.springframework.org/schema/tx  
  10.         http://www.springframework.org/schema/tx/spring-tx-4.1.xsd  
  11.         http://www.springframework.org/schema/aop  
  12.         http://www.springframework.org/schema/aop/spring-aop-4.1.xsd  
  13.         http://www.springframework.org/schema/context  
  14.         http://www.springframework.org/schema/context/spring-context-4.1.xsd">  
  15.     
  16.   <context:component-scan base-package="com.rhzh" />  
  17.     
  18.   <bean id="propertyConfigurer"  
  19.     class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
  20.     <property name="location" value="classpath:jdbc.properties" />  
  21.   bean>  
  22.   <span style="white-space:pre">span>  
  23.   <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"  
  24.     destroy-method="close">  
  25.     <property name="driverClassName" value="${driver}" />  
  26.     <property name="url" value="${url}" />  
  27.     <property name="username" value="${username}" />  
  28.     <property name="password" value="${password}" />  
  29.       
  30.     <property name="initialSize" value="${initialSize}">property>  
  31.       
  32.     <property name="maxActive" value="${maxActive}">property>  
  33.       
  34.     <property name="maxIdle" value="${maxIdle}">property>  
  35.       
  36.     <property name="minIdle" value="${minIdle}">property>  
  37.       
  38.     <property name="maxWait" value="${maxWait}">property>  
  39.   bean>  
  40.     
  41.   <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">  
  42.     <property name="dataSource" ref="dataSource" />  
  43.       
  44.     <property name="mapperLocations" value="classpath:com/rhzh/mapping/*.xml">property>  
  45.   bean>  
  46.     
  47.   <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">  
  48.     <property name="basePackage" value="com.rhzh.dao" />   
  49.     <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory">property>  
  50.   bean>  
  51.     
  52.   <bean id="transactionManager"  
  53.     class="org.springframework.jdbc.datasource.DataSourceTransactionManager">  
  54.     <property name="dataSource" ref="dataSource" />  
  55.   bean>  
  56.   <span style="font-family: Arial, Helvetica, sans-serif;">span><pre name="code" class="html">   <tx:annotation-driven transaction-manager="transactionManager"/>  
[html]  view plain  copy
  1. beans>  

 
  
下面是需要引入的两个资源属性文件:

jdbc.properties

[html]  view plain  copy
  1. driver=com.mysql.jdbc.Driver  
  2. url=jdbc:mysql://127.0.0.1:3306/ecdatabase?characterEncoding=utf-8  
  3. username=root  
  4. password=admin  
  5. #定义初始连接数  
  6. initialSize=0  
  7. #定义最大连接数  
  8. maxActive=20  
  9. #定义最大空闲  
  10. maxIdle=20  
  11. #定义最小空闲  
  12. minIdle=1  
  13. #定义最长等待时间  
  14. maxWait=60000  

log4j.properties

[html]  view plain  copy
  1. #定义LOG输出级别  
  2. log4j.rootLogger=INFO,Console,File  
  3. #定义日志输出目的地为控制台  
  4. log4j.appender.Console=org.apache.log4j.ConsoleAppender  
  5. log4j.appender.Console.Target=System.out  
  6. #可以灵活地指定日志输出格式,下面一行是指定具体的格式  
  7. log4j.appender.Console.layout = org.apache.log4j.PatternLayout  
  8. log4j.appender.Console.layout.ConversionPattern=[%c] - %m%n  
  9.   
  10. #文件大小到达指定尺寸的时候产生一个新的文件  
  11. log4j.appender.File = org.apache.log4j.RollingFileAppender  
  12. #指定输出目录  
  13. log4j.appender.File.File = logs/ssm.log  
  14. #定义文件最大大小  
  15. log4j.appender.File.MaxFileSize = 10MB  
  16. # 输出所以日志,如果换成DEBUG表示输出DEBUG以上级别日志  
  17. log4j.appender.File.Threshold = ALL  
  18. log4j.appender.File.layout = org.apache.log4j.PatternLayout  
  19. log4j.appender.File.layout.ConversionPattern =[%p] [%d{yyyy-MM-dd HH\:mm\:ss}][%c]%m%n  

以上仅仅是对于框架中的配置文件进行解释说明,整合框架并不是能够运行就OK了,了解其中的原理以便于以后发现问题和解决问题,不要急于求成,一步一步走踏实了,你会发现你比别人走的更快!!!

你可能感兴趣的:(javaweb)