问答详情
源自:4-3 配置Action,Service,Dao的类-Struts2整合Spring

提交表单之后报错

Unable to instantiate Action, action.ProductAction,  defined for 'product_save' in namespace '/'null

提问者:qq_JUMPSHOOT_03956016 2017-12-16 13:53

个回答

  • 慕村6019880
    2017-12-17 22:44:25

    我使用第一种方法:action的类由struts2自身创建也会出这个错误,也没解决。但是使用第二种方法交由spring创建就行的。需要修改两个地方,struts.xml 的class 修改为 productAction,并在applicationContext.xml 中添加

    <!-- 配置Action类  因为是默认是单例,所以要加上scope-->

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

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

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

        </bean>

    你看视频就清楚了。