为了账号安全,请及时绑定邮箱和手机立即绑定

用struts配置action没问题,用spring却出现bug..?

<package name="ssh" extends="struts-default" namespace="/">
<action name="product_*" class="productAction" method="{1}">

</action>
</package>

这里class不用全路径就报错。。。为什么啊?

正在回答

4 回答

你的applicationContext.xml中有没有配置ProductAction类

<!-- 配置Action类 -->

<bean id="productAction" class="cn.muke.ssh.action.ProductAction" scope="prototype">

<!-- 手动注入Service -->

<property name="productService" ref="productService"></property>

</bean>


0 回复 有任何疑惑可以回复我~
#1

慕慕8590642 提问者

这个我配好了的,还是不知道哪里有问题
2017-02-28 回复 有任何疑惑可以回复我~
#2

慕慕8590642 提问者

非常感谢!
2017-02-28 回复 有任何疑惑可以回复我~

我也是配好了,不行

0 回复 有任何疑惑可以回复我~

<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>

这些都配好了,还是不行是怎么回事?

0 回复 有任何疑惑可以回复我~

其实是自己写错了一个字母。。太不细心了,不过终于解决问题,谢谢哒

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

用struts配置action没问题,用spring却出现bug..?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信