HTTP Status 404 - No result defined for action cn.muke.ssh.action.ProductAction and result input
2018-02-12
妈的,出现productService为null的原因是因为在applicationContext.xml中bean的id名称和action中定义的server名称不相同 所以找不到!!! 浪费我一下午
2018-02-07
老师为什么不给文件和原码呢,版本不一样,造成很多的麻烦,初学者就版本问题就把头搞大了,根本没法往下学,要兼顾初学者啊
2018-01-11
spring-web-sources 文件
链接: https://pan.baidu.com/s/1o85jSwi 密码: 42xf
链接: https://pan.baidu.com/s/1o85jSwi 密码: 42xf
2018-01-04
出现404错误"There is no Action mapped for namespace [/] and action name [product_save] associated with context path [/ssh]."修改为:
<action name="product_*" class="com.ssh.action.ProductAction" method="{1}">
<!-- struts2.3版本之后,使用通配符调用方法时,内部会验证是否允许访问该方法-->
<allowed-methods>save</allowed-methods>
</action>
<action name="product_*" class="com.ssh.action.ProductAction" method="{1}">
<!-- struts2.3版本之后,使用通配符调用方法时,内部会验证是否允许访问该方法-->
<allowed-methods>save</allowed-methods>
</action>
2018-01-03
小伙伴们,如果出现
Message There is no Action mapped for namespace [/] and action name [product_save] associated with context path [/ssh].
在struts.xml中的<action>标签中加入<allowed-methods>save</allowed-methods>
因为在struts2.3版本之后,使用通配符调用方法时,内部会验证是否允许访问该方法,所以要加上下面的allowed-methods, 如何其中包含多个方法,可以用逗号分开
Message There is no Action mapped for namespace [/] and action name [product_save] associated with context path [/ssh].
在struts.xml中的<action>标签中加入<allowed-methods>save</allowed-methods>
因为在struts2.3版本之后,使用通配符调用方法时,内部会验证是否允许访问该方法,所以要加上下面的allowed-methods, 如何其中包含多个方法,可以用逗号分开
2018-01-03
如果能看懂了视频并且完成一定的作业,可以分享代码,就好,因为有些架包的版本或是开发环境的问题,感觉,写的时候总是有点下问题
2017-12-17