Struts2 동적 결과 세트
1539 단어 struts2.0
<body>
set get
<ol>
<li><a href="user/user?type=1"> success</li>
<li><a href="user/user?type=2"> error</li>
</ol>
</body>
2.struts.xml
<struts>
<constant name="struts.devMode" value="true" />
<package name="user" namespace="/user" extends="struts-default">
<action name="user" class="com.wxh.action.UserAction">
<result >${r}</result>
</action>
</package>
</struts>
3.UserAction.java
package com.wxh.action;
import com.opensymphony.xwork2.ActionSupport;
public class UserAction extends ActionSupport{
/**
*
*/
private static final long serialVersionUID = 1L;
private int type;
private String r;
public String getR() {
return r;
}
public void setR(String r) {
this.r = r;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
// r
public String execute() throws Exception{
if(type==1) r="/userSuccess.jsp";
else if(type==2) r="/userError.jsp";
return "success";
}
}
4.userError.jsp
<body>
user error!
</body>
5.userSuccess.jsp
<body>
user Success!
</body>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Struts2 글로벌 결과 세트1、index,jsp 2、struts.xml 3、AdminAction.java 4、UserAction.java 5、admin,jsp 6、main,jsp 7、userError.jsp 8、userSuccess.jsp...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.