struts2环境搭建,提示找不到action,Caused by: Action class [a.b] not found
struts.xml内容
<struts>
<package name="hellodemo" extends="struts-default" namespace="/">
<action name="hell" class="a.b">
<result name="ok">/hello.jsp</result>
</action>
</package>
</struts>
a.b类
package a;
public class b {
public String execute() {
return "ok";
}
}
报错信息
严重: Dispatcher initialization failed
Unable to load configuration. - action - file:/G:/eclipse-workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/struts/WEB-INF/classes/struts.xml:8:35
Caused by: Action class [a.b] not found - action - file:/G:/eclipse-workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/struts/WEB-INF/classes/struts.xml:8:35
求大神帮忙看看,实在找不出错误。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
原来是jdk9和tomcat8.5
出现了截图这个问题,为解决这个,卸载了jdk9,重装jdk8,eclipse也不管用了。重装elicpse。出现了我提问的这个问题,搜了无数答案,仔细检查自己的代码也没有问题,,第一次提问,也没人回答,笑哭,最后一个办法,卸载tomcat安装tomcat8.0,再次安装elicpse。ok问题解决了。