指导一下简单的struts2,简单的页面跳转。

希望远程协助一下,2472680253
2025-02-01 05:11:30
推荐回答(4个)
回答1:

login.jsp 页面


账 号
密 码



在struts.xml配置


login.jsp
login_ok.jsp


web.xml加上下面的代码

struts2

org.apache.struts2.dispatcher.FilterDispatcher



struts2
/*


public class UserAction extends ActionSupport{
private String username;
private String passwd;
自己加上set get方法
public String execute() throws Exception{
if(("haha".equals(username) &&( "hehe".equals(passwd)){
return SUCCESS;
}else{
return INPUT;
}
}

}

回答2:

首先你的web.xml,struts.xml,jar包,配置好要,web.xml加载struts.xml,struts.xml里面配置action,action继承ActionSupport,从jsp页面跳转到action里面传值方式有很多种,一般常用模型驱动和属性驱动两种方式,这里就不一一详说啦,从action再跳到jsp页面可以用EL表达式来接

回答3:

采纳,完成就帮你搞定。我先加你吧

回答4:

搞定没 没有 我帮你搞定