springMVC+Hibernate配置

本文描述下 sypro 项目中使用 springMVC+Hibernate配置,初学SpringMVC做下简单整理解。

1.web项目首先我们要使用 web.xml文件将 spring配置引入进来

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/javaee   http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
  5. <description>springMvc+hibernate4+easyui</description>
  6. <display-name>sypro2.02</display-name>
  7. <context-param>
  8. <param-name>contextConfigLocation</param-name>
  9. <param-value>classpath:spring.xml,classpath:spring-hibernate.xml,classpath:spring-ehcache.xml,classpath:spring-apacheFtpServer.xml</param-value>
  10. </context-param>
  11. <filter>
  12. <filter-name>openSessionInViewFilter</filter-name>
  13. <filter-class>org.springframework.orm.hibernate4.support.OpenSessionInViewFilter</filter-class>
  14. <init-param>
  15. <param-name>singleSession</param-name>
  16. <param-value>true</param-value>
  17. </init-param>
  18. </filter>
  19. <filter>
  20. <description>字符集过滤器</description>
  21. <filter-name>encodingFilter</filter-name>
  22. <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
  23. <init-param>
  24. <description>字符集编码</description>
  25. <param-name>encoding</param-name>
  26. <param-value>UTF-8</param-value>
  27. </init-param>
  28. </filter>
  29. <filter-mapping>
  30. <filter-name>openSessionInViewFilter</filter-name>
  31. <url-pattern>*.do</url-pattern>
  32. </filter-mapping>
  33. <filter-mapping>
  34. <filter-name>encodingFilter</filter-name>
  35. <url-pattern>/*</url-pattern>
  36. </filter-mapping>
  37. <listener>
  38. <description>spring监听器</description>
  39. <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  40. </listener>
  41. <listener>
  42. <description>apache ftp server监听器</description>
  43. <listener-class>sy.util.ApacheFtpServerListener</listener-class>
  44. </listener>
  45. <listener>
  46. <description>Introspector缓存清除监听器</description>
  47. <listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>
  48. </listener>
  49. <servlet>
  50. <description>spring mvc servlet</description>
  51. <servlet-name>springMvc</servlet-name>
  52. <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  53. <init-param>
  54. <description>spring mvc 配置文件</description>
  55. <param-name>contextConfigLocation</param-name>
  56. <param-value>classpath:spring-mvc.xml</param-value>
  57. </init-param>
  58. <load-on-startup>1</load-on-startup>
  59. </servlet>
  60. <servlet-mapping>
  61. <servlet-name>springMvc</servlet-name>
  62. <url-pattern>*.do</url-pattern>
  63. </servlet-mapping>
  64. <session-config>
  65. <session-timeout>3</session-timeout>
  66. </session-config>
  67. <welcome-file-list>
  68. <welcome-file>index.jsp</welcome-file>
  69. <welcome-file>init.jsp</welcome-file>
  70. </welcome-file-list>
  71. <error-page>
  72. <error-code>404</error-code>
  73. <location>/error/404.jsp</location>
  74. </error-page>
  75. <error-page>
  76. <error-code>500</error-code>
  77. <location>/error/500.jsp</location>
  78. </error-page>
  79. <distributable />
  80. </web-app>

部署applicationContext的xml文件,如果在web.xml中不写任何参数配置信息,默认的路径是”/WEB-INF
/applicationContext.xml,在WEB-INF目录下创建的xml文件的名称必须是applicationContext.xml。
如果是要自定义文件名可以在web.xml里加入contextConfigLocation如下,在<param-value>
</param-value>里指定相应的xml文件名,如果有多个xml文件,可以写在一起并一“,”号分隔

  1. <display-name>sypro2.02</display-name>
  2. <context-param>
  3. <param-name>contextConfigLocation</param-name>
  4. <param-value>classpath:spring.xml,classpath:spring-hibernate.xml,classpath:spring-ehcache.xml,classpath:spring-apacheFtpServer.xml</param-value>
  5. </context-param>
  6. <filter>
  7. <filter-name>openSessionInViewFilter</filter-name>
  8. <filter-class>org.springframework.orm.hibernate4.support.OpenSessionInViewFilter</filter-class>
  9. <init-param>
  10. <param-name>singleSession</param-name>
  11. <param-value>true</param-value>
  12. </init-param>
  13. </filter>

加载contextConfigLocation则交给监听来实现

  1. <listener>
  2. <description>spring监听器</description>
  3. <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  4. </listener>

然后配置springMVC处理请求映射

  1. <servlet>
  2. <description>spring mvc servlet</description>
  3. <servlet-name>springMvc</servlet-name>
  4. <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  5. <init-param>
  6. <description>spring mvc 配置文件</description>
  7. <param-name>contextConfigLocation</param-name>
  8. <param-value>classpath:spring-mvc.xml</param-value>
  9. </init-param>
  10. <load-on-startup>1</load-on-startup>
  11. </servlet>
  12. <servlet-mapping>
  13. <servlet-name>springMvc</servlet-name>
  14. <url-pattern>*.do</url-pattern>
  15. </servlet-mapping>

2.applicationContext.xml 文件常用配置,在该项目中使用的自定义写法 将
applicationContext.xml 重命名为: spring-mvc.xml
,注意如果不使用自定义写法applicationContext.xml则存放在
/WEB-INF/applicationContext.xml目录且不可重命名

applicationContext.xml (spring-mvc.xml) 常用配置如下:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans
  6. http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  7. http://www.springframework.org/schema/context
  8. http://www.springframework.org/schema/context/spring-context-3.0.xsd
  9. http://www.springframework.org/schema/mvc
  10. http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
  11. <!-- 自动扫描controller包下的所有类,使其认为spring mvc的控制器 -->
  12. <context:component-scan base-package="sy.controller" />
  13. <!-- 避免IE执行AJAX时,返回JSON出现下载文件 -->
  14. <bean id="mappingJacksonHttpMessageConverter"
  15. class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
  16. <property name="supportedMediaTypes">
  17. <list>
  18. <value>text/html;charset=UTF-8</value>
  19. </list>
  20. </property>
  21. </bean>
  22. <!-- 启动Spring MVC的注解功能,完成请求和注解POJO的映射 -->
  23. <bean
  24. class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
  25. <property name="messageConverters">
  26. <list>
  27. <ref bean="mappingJacksonHttpMessageConverter" /><!-- json转换器 -->
  28. </list>
  29. </property>
  30. </bean>
  31. <!-- 对模型视图名称的解析,即在模型视图名称添加前后缀 -->
  32. <bean
  33. class="org.springframework.web.servlet.view.InternalResourceViewResolver"
  34. p:prefix="/" p:suffix=".jsp" />
  35. <bean id="multipartResolver"
  36. class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
  37. <property name="defaultEncoding">
  38. <value>UTF-8</value>
  39. </property>
  40. <property name="maxUploadSize">
  41. <value>32505856</value><!-- 上传文件大小限制为31M,31*1024*1024 -->
  42. </property>
  43. <property name="maxInMemorySize">
  44. <value>4096</value>
  45. </property>
  46. </bean>
  47. <!-- 拦截器 -->
  48. <mvc:interceptors>
  49. <mvc:interceptor>
  50. <mvc:mapping path="/**" />
  51. <bean class="sy.interceptors.EncodingInterceptor" />
  52. </mvc:interceptor>
  53. <mvc:interceptor>
  54. <mvc:mapping path="/**" />
  55. <bean class="sy.interceptors.AuthInterceptor" />
  56. </mvc:interceptor>
  57. </mvc:interceptors>
  58. </beans>

spring-xml:

  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" xmlns:context="http://www.springframework.org/schema/context"
  4. xsi:schemaLocation="
  5. http://www.springframework.org/schema/beans
  6. http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  7. http://www.springframework.org/schema/context
  8. http://www.springframework.org/schema/context/spring-context-3.0.xsd
  9. ">
  10. <!-- 引入属性文件 -->
  11. <context:property-placeholder location="classpath:config.properties" />
  12. <!-- 自动扫描dao和service包(自动注入) -->
  13. <context:component-scan base-package="sy.dao,sy.service" />
  14. </beans>
  1. <!-- 引入属性文件 -->
  2. <context:property-placeholder location="classpath:config.properties" />

项目配置映入属性文件在配置hibenrate数据库配置提供了便利

如下 spring-hibernate.xml 配置

  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" xmlns:tx="http://www.springframework.org/schema/tx"
  4. xsi:schemaLocation="
  5. http://www.springframework.org/schema/beans
  6. http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  7. http://www.springframework.org/schema/tx
  8. http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
  9. ">
  10. <!-- JNDI方式配置数据源 -->
  11. <!-- <bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
  12. <property name="jndiName" value="${jndiName}"></property> </bean> -->
  13. <!-- dbcp数据源 -->
  14. <bean name="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
  15. <property name="driverClassName" value="${driverClassName}"></property>
  16. <property name="url" value="${url}"></property>
  17. <property name="username" value="${username}"></property>
  18. <property name="password" value="${password}"></property>
  19. </bean>
  20. <bean id="sessionFactory"
  21. class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
  22. <property name="dataSource" ref="dataSource" />
  23. <property name="hibernateProperties">
  24. <props>
  25. <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
  26. <prop key="hibernate.dialect">${hibernate.dialect}</prop>
  27. <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
  28. <prop key="hibernate.format_sql">${hibernate.format_sql}</prop>
  29. </props>
  30. </property>
  31. <!-- 注解方式配置 -->
  32. <!-- <property name="packagesToScan"> <list> <value>sy.hbm</value> </list>
  33. </property> -->
  34. <!-- hbm方式配置 -->
  35. <property name="mappingDirectoryLocations">
  36. <list>
  37. <value>classpath:sy/hbm</value>
  38. </list>
  39. </property>
  40. </bean>
  41. <!-- 配置事务 -->
  42. <bean name="transactionManager"
  43. class="org.springframework.orm.hibernate4.HibernateTransactionManager">
  44. <property name="sessionFactory" ref="sessionFactory"></property>
  45. </bean>
  46. <tx:annotation-driven transaction-manager="transactionManager" />
  47. </beans>

spring缓存配置

    1. <!-- 开启spring缓存 -->
    2. <cache:annotation-driven cache-manager="cacheManager" />
    3. <bean id="cacheManagerFactory"
    4. class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"
    5. p:configLocation="classpath:ehcache.xml" p:shared="false" />
    6. <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager"
    7. p:cacheManager-ref="cacheManagerFactory" />
上一篇:SpringMVC简单配置


下一篇:wordpress一些常用代码