错误:Could not find action or resultThere is no Action mapped for namespace / and action name user_del.struts.xml:/add.jsp/del.jspLoginAction.java:public class LoginAction extends ActionSupport {\x05public String add(){\x05\x05return"add";\x05}...
1:action配置路径出错 2:input没有配置 3:页面和后台接收的属性字段或者页面填写的属性和字段名属性不一致(比如字段属性是Integer属性,但是页面填的是string)名不一致(此种原因最多)
1.struts.xml配置的action与我们访问的action或返回的result确实没有匹配导致。这个时候要仔细检查Struts.xml配置文件; 2.我们的action输入正确,返回结果经过无数次查看都是对的,就是报找不到action或者没有对应的result结果,我们也有解决办法。这个时候很可能是没有编译上Struts.xml。查看项目下的struts.xml文件是否被...
如果是你说的那样的话,可能config在struts2核心控制器内起到了很大的作用,可能读取的就是配置文件。
附件上传Could notfind action or result No result defined for action 附件上传错了怎么删除 在上次我们讲过附件文件是怎样上传的,上传前是先判断上传的文件是否小于20MB,如果大于20MB就提醒用户上传的文件大小不能超过20MB,因为在js中上传的文件不能超过20MB,如果超过就要用第三方上传的插件,如果小于20MB的就继续...
Struts出现ERROR Dispatcher Could not find action or result: / There is no Action mapped for namespace [/] and action name [] associated with context path []. - [unknown location] 在struts.xml文件加入 <constant name="struts.action.extension" value="action"></constant> ...
你好好的看下第二句, 按照意思, 一个包标签没有找到, 后面还有信息
警告: Could not find action or result There is no Action mapped for namespace / and action name ddd. - [unknown location] at com.opensymphony.xwork2.DefaultActionProxy.prepare(DefaultActionProxy.java:178) at org.apache.struts2.impl.StrutsActionProxy.prepare(StrutsActionProxy.java:61) ...
Struts2警告:org.apache.struts2.dispatcher.Dispatcher - Could not find action or result WARN [08-19 19:29:10] org.apache.struts2.dispatcher.Dispatcher - Could not find action or resultThere is no Action mapped for namespace /pages and action name . - [un
两种解决方法,一:去掉你的package 中的namespace或者使其="", 二:假设你的namespace为/x,那么你的action 提交名需写作 action="/x/login",要是不对的话,你写做action="x/login"试一下,第二种方法我没试。