提交表单之后报错
Unable to instantiate Action, action.ProductAction, defined for 'product_save' in namespace '/'null
Unable to instantiate Action, action.ProductAction, defined for 'product_save' in namespace '/'null
2017-12-16
我使用第一种方法: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>
你看视频就清楚了。
举报