谁帮我看下这个问题:
<action name="loginAction" method="login" class="com.imooc.strtus.loginAction">
<result name="success">/success.jsp</result>
<result name="input">/login.jsp</result>
</action>
年龄:<input type="text" name="age"/>
public class User {
private String userName;
private String password;
private int age;
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
执行出错:
警告: Could not find action or result: /helloword/loginAction.action
No result defined for action com.imooc.strtus.loginAction and result input - action - file:/F:/Program%20Files/apache-tomcat-6.0.44/webapps/helloword/WEB-INF/classes/a.xml:15:83
你这个代码怎么看?错误的代码都不贴、、、、
看一下你的Action返回的值是不是result name=" "里的值。
对的吧,不然年龄输入数字,是不会跳转成功的,
你的Action呢?看看你的Action有没有问题!