springMVC+Hibernate配置

时间:2022-09-26 08:04:19

本文描述下 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+Hibernate配置的更多相关文章

  1. spring &plus; springMVC &plus;hibernate 配置2

    这种方式比较精简 配置项不多 spring采用自动扫描配置 ,分spring_springMVC.xml  . hibernate_config.xml 两个文件 web.xml配置如下 <?x ...

  2. springMVC用法 以及一个简单的基于springMVC hibernate spring的配置

    替代struts 1  web.xml中配置springmvc*控制器 <?xml version="1.0" encoding="UTF-8"?&gt ...

  3. Maven搭建SpringMVC&plus;Hibernate项目详解 【转】

    前言 今天复习一下SpringMVC+Hibernate的搭建,本来想着将Spring-Security权限控制框架也映入其中的,但是发现内容太多了,Spring-Security的就留在下一篇吧,这 ...

  4. Spring MVC&plus;Spring &plus;Hibernate配置事务,但是事务不起作用

    最近做项目,被一个问题烦恼了很久.使用Spring MVC+Spring +Hibernate开发项目,在使用注解配置事务管理,刚开始发现无论如何数据库都无法更新,但是可以从数据库查询到数据.怀疑是配 ...

  5. springmvc&plus;hibernate入门-揭开神秘的面纱

            Spring 框架提供了构建 Web 应用程序的全功能 MVC 模块.使用 Spring 可插入的 MVC 架构,可以选择是使用内置的 Spring Web 框架还是 Struts 这 ...

  6. Maven搭建SpringMVC&plus;Hibernate项目详解

    前言 今天复习一下SpringMVC+Hibernate的搭建,本来想着将Spring-Security权限控制框架也映入其中的,但是发现内容太多了,Spring-Security的就留在下一篇吧,这 ...

  7. springMVC&plus;Hibernate常用的配置文件

    每次写一个新的web项目时都要写配置文件.比较麻烦,现在把常用到的配置文件记录下来,方便以后使用 web.xml <?xml version="1.0" encoding=& ...

  8. 项目总结SpringMVC&plus;hibernate框架 web&period;xml 分析(2)

    紧接 项目总结SpringMVC+hibernate框架 原理(MVC) applicationContext.xml 文件(3) 这一步讲解项目模块化的配置,项目中每个模块配置一个文件,命名规则为 ...

  9. Maven搭建SpringMVC&plus;Hibernate项目详解&lpar;转&rpar;

    前言 今天复习一下SpringMVC+Hibernate的搭建,本来想着将Spring-Security权限控制框架也映入其中的,但是发现内容太多了,Spring-Security的就留在下一篇吧,这 ...

随机推荐

  1. jquery动画,基础以及我发现的新大陆

    $.animate()在jquery官方介绍有2中方式,其实我发现的新大陆也是第二种方式的扩展! 一.$.animate( properties [, duration ] [, easing ] [ ...

  2. iOS 9&period;3真机适配-Could not find Developer Disk Image问题

    Could not find Developer Disk Image 这是由于真机系统过高或者过低,Xcode中没有匹配的配置包文件,我们可以通过这个路径进入配置包的存放目录: /Applicati ...

  3. 夺命雷公狗----Git---1---安装步骤

    除了上面的路径修改一下,别的都用默认的问题即可解决.....

  4. 同时使用Junit4的&commat;Parameterized参数化测试和Spring容器

    转载:http://www.jianshu.com/p/d191fe54915f 整合Spring容器 @SpringApplicationConfiguration(classes = Applic ...

  5. Hadoop2&period;6&period;0配置参数查看小工具

    前言 使用Hadoop进行离线分析或者数据挖掘的工程师,经常会需要对Hadoop集群或者mapreduce作业进行性能调优.也许你知道通过浏览器访问http://master:18088/conf来查 ...

  6. 随机数组&amp&semi;大数相加

    随机生成10个数,填充一个数组,然后用消息框显示数组内容,接着计算数组元素的和,将结果也显示在消息框中 一,      设计思路: 先生成随机数数组,再将数组保存在一个字符串中,然后将数组各数字加和, ...

  7. web app变革之rem(手机屏幕实现全适配)

    以往web移动适配,常规写法是:media only screen @media only screen and (min-device-width: 320px){ //针对iPhone 3 } @ ...

  8. stardict

    1.下载词典文件: 2.把下载到的文件移动到/tmp目录下 # mv stardict-*.bz2 /tmp 3.解压缩 # tar jxf stardict-oxford-gb-2.4.2.tar. ...

  9. UVaLive 7360 Run Step &lpar;排列组合,枚举&rpar;

    题意:给定一个数 n ,表示一共有 n 步,然后你可以迈一步也可以迈两步,但是左腿和右腿的一步和两步数要一样,并且两步数不小于一步数,问你有多少种方式. 析:虽然是排列组合,但还是不会做.....水啊 ...

  10. 一致性哈希与java实现

    一致性哈希算法是分布式系统中常用的算法.比如,一个分布式的存储系统,要将数据存储到具体的节点上,如果采用普通的hash方法,将数据映射到具体的节点上,如key%N,key是数据的key,N是机器节点数 ...