慕慕8590642
2017-02-27 20:14
<package name="ssh" extends="struts-default" namespace="/"> <action name="product_*" class="productAction" method="{1}"> </action> </package>
这里class不用全路径就报错。。。为什么啊?
你的applicationContext.xml中有没有配置ProductAction类
<!-- 配置Action类 -->
<bean id="productAction" class="cn.muke.ssh.action.ProductAction" scope="prototype">
<!-- 手动注入Service -->
<property name="productService" ref="productService"></property>
</bean>
我也是配好了,不行
<bean id="productAction" class="cn.muke.ssh.action.ProductAction" scope="prototype">
<property name="productService" ref="productService"/>
</bean>
<package name="ssh" extends="struts-default" namespace="/">
<action name="product_*" class="productAction" method="{1}"></action>
</package>
这些都配好了,还是不行是怎么回事?
其实是自己写错了一个字母。。太不细心了,不过终于解决问题,谢谢哒
基于SSH实现员工管理系统之框架整合篇
49832 学习 · 344 问题
相似问题