精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2012-03-28
本人采用struts2的注解,配置好后可以在tomcat下运行,但是使用嵌入式jetty运行时,总是出现无法找到action的问题。 package com.action; import org.apache.struts2.convention.annotation.Action; import org.apache.struts2.convention.annotation.Namespace; import org.apache.struts2.convention.annotation.ParentPackage; import org.apache.struts2.convention.annotation.Result; import org.apache.struts2.convention.annotation.Results; import com.opensymphony.xwork2.ActionSupport; @Namespace(value="/tt") @ParentPackage(value="struts-default") @Results( { @Result(name="success",location="/hello.jsp"), @Result(name="error",location="/hello.jsp") }) public class HelloAction extends ActionSupport{ private String username; private String password; private String result; public String getResult() { return result; } public void setResult(String result) { this.result = result; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String execute() throws Exception { result =this.getClass().getSimpleName(); return SUCCESS; } /** * @return * @throws Exception */ @Action(value="login",results={ @Result(name="success",location="/hello.jsp"), @Result(name="error",location="/hello.jsp") }) public String login()throws Exception{ result =this.getClass().getSimpleName()+ username+":"+password; return SUCCESS; } } //======================================================================== 求指导。。。。。。。 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2013-03-07
之后是换了web容器还是怎么解决的呢
|
|
返回顶楼 | |
浏览 2095 次