struts2开发流程及详细配置
一:Struts开发步骤:
我们提供的服务有:网站设计、成都网站建设、微信公众号开发、网站优化、网站认证、尖山ssl等。为超过千家企事业单位解决了网站和推广的问题。提供周到的售前咨询和贴心的售后服务,是有科学管理、有技术的尖山网站制作公司
1. web项目,引入struts - jar包
2. web.xml中,引入struts的核心功能
配置过滤器
3. 开发action
4. 配置action
src/struts.xml
二:详细配置
1.引入8个jar文件
commons-fileupload-1.2.2.jar 【文件上传相关包】
commons-io-2.0.1.jar
struts2-core-2.3.4.1.jar 【struts2核心功能包】
xwork-core-2.3.4.1.jar 【Xwork核心包】
ognl-3.0.5.jar 【Ognl表达式功能支持表】
commons-lang3-3.1.jar 【struts对java.lang包的扩展】
freemarker-2.3.19.jar 【struts的标签模板库jar文件】
javassist-3.11.0.GA.jar 【struts对字节码的处理相关jar】
2.web.xml详细配置
<?xml version="1.0" encoding="UTF-8"?>struts2 org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter struts2 /* index.jsp
3.开发Action(3种方式)
1种:直接继承ActionSupport
package cn.itcast.a_config; import com.opensymphony.xwork2.ActionSupport; public class UserAction extends ActionSupport { // Action中业务处理方法 public String login() { System.out.println("UserAction.login()"); return "success"; } }
2种:继承Action接口
package cn.itcast.a_config; import com.opensymphony.xwork2.Action; import com.opensymphony.xwork2.ActionSupport; public class UserAction implements Action { // Action中业务处理方法 public String login() { System.out.println("UserAction.login()"); return "success"; } @Override public String execute() throws Exception { return null; } }
3种:不继承任何类,不实现任何接口
package cn.itcast.a_config; import com.opensymphony.xwork2.Action; import com.opensymphony.xwork2.ActionSupport; public class UserAction { private String userName; public void setUserName(String userName) { this.userName = userName; } // Action中业务处理方法 public String login() { System.out.println("UserAction.login()" + userName); return "login"; } public String register() { System.out.println("register()" + userName); return "register"; } }
4. 配置action : src/struts.xml
<?xml version="1.0" encoding="UTF-8" ?>/index.jsp
本文有关struts开发流程及详细配置的内容就到这里,希望对大家有所帮助。有兴趣的朋友可以参阅:struts1之简单mvc示例_动力节点Java学院整理、jsp 开发之struts2中s:select标签的使用等。欢迎阅读本站其他有关专题,感谢大家对创新互联的支持!
当前文章:struts2开发流程及详细配置
URL标题:http://myzitong.com/article/gijpjc.html