提示:myeclipse环境、工程环境、tomcat环境的jdk保持一致
1、新建一个工程,把工程的编码为utf-8
2、把jsp的编码形式改成utf-8
3、把jar包放入到lib下
4、建立三个src folder
src 存放源代码
config 存放配置文件
hibernate 存放hibernate的配置文件
spring 存放spring的配置文件
struts 存放struts的配置文件
struts.xml
test 存放单元测试
5、在src下建立包
cn.itcast.s2sh.domain
持久化类和映射文件
6、编写dao层和service层
7、写spring的配置文件
1、写sessionFactory
2、测试
3、写dao和service
4、测试
8、写action
9、写spring的配置文件
把action注入到spring容器中
<beanid="personAction"class="cn.itcast.s2sh.struts2.action.sh.PersonAction"scope="prototype">
scope为"prototype"保证了action的多实例
10、在web.xml
加入spring的监听器
加入struts2的过滤器
11、请求原文地址:http://blog.csdn.net/u014010769/article/details/44993519