标签:产品 div ons 之间 att upload display rri 业务
Struts 2是Struts的下一代产品,是在WebWork的技术基础上开发了全新MVC框架。虽然Struts2号称是一个全新的框架,但这仅仅是相对Struts1而言。Struts2与Struts1相比,确实有很多革命性的改进。
3.修改Web.xml配置文件
1 <?xml version="1.0" encoding="UTF-8"?> 2 <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xmlns="http://java.sun.com/xml/ns/javaee" 4 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" 5 id="WebApp_ID" version="3.0"> 6 <display-name>Struts2_hellostruts2</display-name> 7 <welcome-file-list> 8 <welcome-file>index.jsp</welcome-file> 9 </welcome-file-list> 10 11 <filter> 12 <filter-name>struts2</filter-name> 13 <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> 14 </filter> 15 16 <filter-mapping> 17 <filter-name>struts2</filter-name> 18 <url-pattern>/*</url-pattern> 19 </filter-mapping> 20 </web-app> 21
4.添加struts.xml配置文件
1 <?xml version="1.0" encoding="UTF-8" ?> 2 <!DOCTYPE struts PUBLIC 3 "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" 4 "http://struts.apache.org/dtds/struts-2.3.dtd"> 5 <struts> 6 <package name="default" namespace="/" extends="struts-default"> 7 <action name="hello" class="hellostruts2.helloAction" method="execute"> 8 <result name="success">/helloStruts2.jsp</result> 9 </action> 10 </package> 11 </struts> 12
5.添加并实现Action类
1 package hellostruts2 2 3 import com.opensymphony.xwork2.ActionSupport; 4 5 public class helloAction extends ActionSupport{ 6 private String emg; 7 8 public String getEmg() { 9 return emg; 10 } 11 12 public void setEmg(String emg) { 13 this.emg = emg; 14 } 15 @Override 16 public String execute()throws Exception{ 17 emg="hello Struts2"; 18 return "success"; 19 20 } 21 }
配置好struts.xml文件后,Struts2即可完成整个请求过程,当用户发送一个请求后,Web服务器将这个请求的URL(地址)对应到一个Action类(helloAction),并调用相应的方法[execute()]进行处理,该方法的(success)返回值,Struts2根据这个返回值对应到相应的<result>,并使用<result>中的配置(/helloStruts2.jsp)来响应客户请求。
标签:产品 div ons 之间 att upload display rri 业务
原文地址:http://www.cnblogs.com/xiaohao-Marldoro1997/p/6686238.html