首页 > 代码库 > 三大框架整合
三大框架整合
1.添加Spring支持,选择spring,spring web库和spring-persistence库
2.添加Struts2,struts2 spring
3.添加Hibernate支持,选择使用spring的配置文件,不创建sessionFactory
4.在src目录下添加log4j.properties
<!-- spring的配置 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/classes/applicationContext.xml
</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
6.修改struts.xml,添加从对象工厂常量,值为spring,添加一个devMode方便调试
<constant name="sturts.objectFactory" value=http://www.mamicode.com/"spring"/>
<constant name="struts.devMode" value=http://www.mamicode.com/"true" />
7.部署到tomcat,删除重复的8个jar包,剩下70个jar包
8.如果启动tomcat报内存溢出的错误:
java.lang.OutOfMemoryError: PermGen space
-XX:PermSize=256m
-XX:MaxPermSize=256m
三大框架整合
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。