Spring+Struts2整合

1,整合Struts2

a)导入struts的jar包

struts2-core-2.1.6.jar xwork-2.1.2.jar ognl-2.6.11.jar freemarker-2.3.13.jar commons-logging-1.1.jar commons-fileupload-1.2.1.jar

b)将struts.xml文件拷贝到src目录下

c)在web.xml里配置struts的核心过滤器


2,整合Spring

a)导入Spring的jar包 spring.jar commons-logging.jar

b)将applicationContext.xml文件拷贝到WEB-INF目录下

c)在web.xml里配置spring的监听器

 


d)添加spring与struts2整合的插件 struts2-spring-plugin-2.1.6.jar

 

3,编写代码测试

登录页面login.jsp

 


登录成功页面 success.jsp


LoginDao业务接口

 

LoginDaoImpl业务接口实现


LoginAction


struts.xml配置文件


applicationContext.xml配置文件


部署,启动tomcat 输入"zhangsan","123" 跳转到success.jsp 整合成功

 

组织结构图

Spring+Struts2整合

 
Spring+Struts2整合

 

 

 

 

 

你可能感兴趣的:(struts2)