Struts 2是一個MVC框架,以WebWork框架的設計思想爲核心,吸取了Struts 1的部分優勢web
Struts 2擁有更加廣闊的前景,自身功能強大,還對其餘框架下開發的程序提供很好的兼容性apache
步驟1: 配置web.xml文件瀏覽器
<filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> </filter> <filter-mapping> <filter-name>struts2</filter-name> <!-- 攔截全部的action --> <url-pattern>/*</url-pattern> </filter-mapping>
步驟2:在src下建立名稱爲struts.xml的配置文件tomcat
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd"> <struts> <!-- 配置文件中只要添加如下配置,那麼之後修改配置文件不用重啓tomcat --> <constant name="struts.devMode" value="true" /> <package name="default" namespace="/" extends="struts-default"> <!-- 第一個action的例子 --> <action name="helloWorld" class="cn.happy.action.HelloWorldAction"> <result name="success"> index.jsp </result> </action> <!-- 登錄的action --> </package> <!-- Add packages here --> </struts>
步驟3:編寫HelloWorldActionapp
package cn.happy.action; import com.opensymphony.xwork2.Action; public class HelloWorldAction implements Action{ private String name ; private String message; public String execute() throws Exception { setMessage("Hello"+getName()); return "success"; } }
步驟4:建立index.jsp頁面框架
<div>
<h1>
<!--顯示Struts Action中message的屬性內容-->
<s:property value="message"/>
</h1>
</div>
<div>
<form action="helloWorld.action" method="post">
請輸入您的姓名:
<input name="name" type="text" />
<input type="submit" value="提交" />
</form>
</div>
步驟5:經過瀏覽器訪問jsp
點擊提交後結果post
<!-- 配置文件中只要添加如下配置,那麼之後修改配置文件不用重啓tomcat --> <constant name="struts.devMode" value="true" />
問題描述:No configuration found for the specified action: 'login.action' in namespace: ''. Form action defaulting to 'action' attribute's literal value.url
解析:spa
<s:form action="Login" method="post" namespace="/"> or <s:form action="/Login" method="post" >
步驟一:struts.xml文件
<!-- 登錄的action --> <action name="login" class="cn.happy.action.LoginAction"> <result name="success"> login/success.jsp </result> <result name="login"> login/login.jsp </result> </action>
步驟二:LoginAction類的建立
package cn.happy.action; import com.opensymphony.xwork2.Action; public class LoginAction implements Action{ private String username = ""; private String password = ""; public String execute() throws Exception { if (username.equals("1")&&password.equals("1")) { return SUCCESS; }else { return LOGIN; } } }
步驟三:建立登錄界面
<s:form name="form1" namespace="/" method="post" action="login">
請輸入用戶名: <s:textfield name="username"></s:textfield> <br/>
<s:textfield name="password"></s:textfield><br/>
<s:submit value="登錄"></s:submit>
</s:form>
步驟四:在瀏覽器中訪問
在開發中,一般會以JavaBean方式保存數據。因此能夠有以下寫法
Action類
Jsp頁面