请问,显示The requested resource is not available.怎么解决??
/result.jsp
/add.jsp
/update.jsp
package com.imooc.action;
import com.opensymphony.xwork2.ActionSupport;
public class HelloWorld extends ActionSupport{
public String add(){
return "add";
}
public String update(){
return "update";
}
@Override
public String execute() throws Exception {
// TODO Auto-generated method stub
System.out.println("Action执行");
return SUCCESS;
}
}
输入 :http://localhost:8080/S11/addAction.action
出现错误如下:
type Status report
message /S11/addAction.action
description The requested resource is not available. |
免责声明:本内容仅代表回答会员见解不代表天盟观点,请谨慎对待。
版权声明:作者保留权利,不代表天盟立场。
|
|
|
|
感谢你的回答,但是只有一个action的时候可以,多个action就不行了,我用的myeclipse8.6的,跟这个有关系吗??。 |
|
|
|
|