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

来源:4-4 Action类交给Spring创建-Struts2整合Spring

慕慕8590642

2017-02-27 20:14

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

</action>
</package>

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

写回答 关注

4回答

  • Lance_ls
    2017-02-27 21:39:54
    已采纳

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

    <!-- 配置Action类 -->

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

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

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

    </bean>


    慕慕8590...

    非常感谢!

    2017-02-28 13:15:46

    共 2 条回复 >

  • 慕前端9018328
    2017-06-27 17:16:53

    我也是配好了,不行

  • 慕粉3239509
    2017-04-22 11:05:47

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

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

  • 慕慕8590642
    2017-02-28 13:16:34

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

基于SSH实现员工管理系统之框架整合篇

本视频教程主要介绍环境搭建和SSH框架整合,逐层深入理解学习

49832 学习 · 344 问题

查看课程

相似问题