Could not find action or result】的更多相关文章

js里用jQuery.post去后台查询数据,返回的是xml格式的数据流. js代码: var params = ""; params = encodeURI(params); var url = "frame.query.action"; jQuery.post(url, params, function(xmlHttp){ var items = xmlHttp.getElementsByTagName("jg"); for (var i =…
解决如下: 将:<package name="struts2" extends="struts-default" >      <action name="login" class="com.lyw.action.LoginAction">        <result name="success">/result.jsp</result>         &…
action中result没有值,访问action会输出action中的所有数据,输出类型为.action类型 .…
[WARN ] 2013-11-21 14:08:16 :Could not find action or resultThere is no Action mapped for namespace [/] and action name [b2bAccOcSearchInput1] associated with context path [/acode]. - [unknown location]at com.opensymphony.xwork2.DefaultActionProxy.pr…
SEVERE: Could not find action or result There is no Action mapped for namespace / and action name . - [unknown location] at com.opensymphony.xwork2.DefaultActionProxy.prepare(DefaultActionProxy.java:178) at org.apache.struts2.impl.StrutsActionProxy.p…
一.Action缺省配置值 <span style="font-size:18px;"><package name="itcast" namespace="/test" extends="struts-default"> <action name="helloworld" class="cn.itcast.action.HelloWorldAction" m…
今天来配置这个S2SH框架的的时候,刚把环境搭建好,启动时并没有报错,但是当我写了一个action,我也准备通过这个action来访问页面,但是这里我访问的时候却给我报Could not find action or result这个异常,我再三检查,觉得自己的配置都没错什么错误的地方,但是,我还是决定把我struts.xml中的action的名称改了,但他么的奇怪的是 又可以了,这他么的难道action的命名是有一定要求的,我来会的实验,只发现给action命名为test开头的都不可以访问,求…
本文地址:http://blog.csdn.net/sushengmiyan/article/details/43272061 本文作者:sushengmiyan ------------------------------------------------------------------------------------------------------------------------------------ struts2-core-2.3.20依赖的其他jar包. 如果启动的…
出现这个错 00:03:37,142 WARN Dispatcher:68 - Could not find action or result: /crm/linkMan_addLinkMan.action No result defined for action com.lmn.action.LinkManAction and result input - action - file:/D:/ProgramFiles/WorkspaceforJavaEE/crm/WEB-INF/classes…
今天在编程的时候,我遇到了No result defined for action and result input的错误,这个错误想必大家都有遇到过吧,我今天发了很长时间弄这个错误,我以为我的Action函数出错了想调试,但是程序就是不进入断点,上网查资料,有的说路径错误啦,然后我找我的路径错误,搞了半天还是没发现有路径问题.然后我给我的属性的get方法都弄上了断点,我发现了问题,现在跟大家分享. 这个错误就是说没有为返回的input定义,可是有时候我们不一定要这个鬼东西,然而在Action中…