Struts中配置action访问出错: Struts Problem Report Struts has detected an unhandled exception: Messages: No result defined for action com.java.test.Action.HelloAction and result index File: file:/J:/javaTest/.metadata/.plugins/org.eclipse.wst.server.core/tmp…
意图访问一个 /es/index.action 竟然出现: [SAE ] ERROR [05-11 13:54:32] [http-80-5] com.opensymphony.xwork2.util.logging.commons.CommonsLogger.error(38) | Exception occurred during processing request: No result defined for action com.lk.actions.IndexAction and r…
这是我跑struts2的第一个例子,跑的也够郁闷的,这个问题烦了我几个钟... 2011-5-10 10:10:17 com.opensymphony.xwork2.util.logging.commons.CommonsLogger warn警告: Could not find action or resultNo result defined for action com.augur.action.LoginAction and result success at com.opensym…
问题描述: No result defined for action com.freedom.funitureCityPSIMS.controller.login.CheckAction and result error at com.opensymphony.xwork2.DefaultActionInvocation.executeResult(DefaultActionInvocation.java:373) at com.opensymphony.xwork2.DefaultAction…
Struts Problem Report Struts has detected an unhandled exception: Messages: No result defined for action cn.itcast.oa.test.TestAction and result SUCCESS Stacktraces No result defined for action cn.itcast.oa.test.TestAction and result SUCCESS com.open…
今天做个小项目,用的是ssh,结果在运行的时候出现HTTP Status 404 - No result defined for action and result input的错误. 首先认真检查所有的配置文件,命名空间,路径,名称都没问题. 于是各种查资料,最后发现,是validate校验器搞的鬼. 分析: 因为我把方法都写在RegisterAction,而检验器文件名为RegisterAction-validation.xml,就是对RegisterAction里的所有方法都起作用,以至于…
1.no result defined for action .......and result input 或者 no result defined for action .......and result dataAccessFailure 原因: 类型转换异常 1.实体类中,有Double类型的属性, 当页面向action传参时,action中的属性有该实体,页面传的是String类型的,属性不能转换 2. 页面中 <input name=" "> 有多个i…
在开发中总遇到这个问题,No result defined for action:原因:Action中的属性值为空的时候,Struts2的默认拦截器会报错,但是又找不到input的Result,不能够把错误返回,所以报这种错误. 解决方法:1.在页面中给空值赋默认值.2.重新定义一个Action,去掉空值的成员变量.3.添加input的Result,并在这个页面给出提示----------------------------------------------------------------…
struts2.1.8 必须在struts.xml中配置namespace属性 如果你在2.0中一切OK,但是在2.1中确出现了No result defined for action的异常,就是在因为在2.1中有一个插件struts2-convention-plugin-2.1.8.jar,这个插件是2.1版本中新添加的默认核心包,这个插件是实现Struts2的零配置,必须引入namespace命名空间,否则就会出现刚才的No result defined for action的异常 这里需要…