課程
/后端開發(fā)
/Java
/基于SSH實(shí)現(xiàn)員工管理系統(tǒng)之框架整合篇
Unable to instantiate Action, action.ProductAction, ?defined for 'product_save' in namespace '/'null
2017-12-16
源自:基于SSH實(shí)現(xiàn)員工管理系統(tǒng)之框架整合篇 4-3
正在回答
我使用第一種方法:action的類由struts2自身創(chuàng)建也會(huì)出這個(gè)錯(cuò)誤,也沒(méi)解決。但是使用第二種方法交由spring創(chuàng)建就行的。需要修改兩個(gè)地方,struts.xml 的class 修改為?productAction,并在applicationContext.xml 中添加
<!-- 配置Action類? 因?yàn)槭悄J(rèn)是單例,所以要加上scope-->
? ? <bean id="productAction" class="com.ssh.action.ProductAction" scope="prototype">
? ? ? ? <!-- 手動(dòng)注入Service -->
? ? ? ? <property name="productService" ref="productService"></property>
? ? </bean>
你看視頻就清楚了。
舉報(bào)
本視頻教程主要介紹環(huán)境搭建和SSH框架整合,逐層深入理解學(xué)習(xí)
3 回答提交表單進(jìn)不去后臺(tái)
2 回答提交后出錯(cuò)
3 回答提交表單時(shí)前臺(tái)報(bào)錯(cuò) HTTP Status 404 - No result defined for action com.ssh.action.ProductAction and result input
3 回答struts的action是如何獲取表單提交的參數(shù)并封裝到product中的,表示沒(méi)看到啊
2 回答不報(bào)錯(cuò),不能建表
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2017-12-17
我使用第一種方法:action的類由struts2自身創(chuàng)建也會(huì)出這個(gè)錯(cuò)誤,也沒(méi)解決。但是使用第二種方法交由spring創(chuàng)建就行的。需要修改兩個(gè)地方,struts.xml 的class 修改為?productAction,并在applicationContext.xml 中添加
<!-- 配置Action類? 因?yàn)槭悄J(rèn)是單例,所以要加上scope-->
? ? <bean id="productAction" class="com.ssh.action.ProductAction" scope="prototype">
? ? ? ? <!-- 手動(dòng)注入Service -->
? ? ? ? <property name="productService" ref="productService"></property>
? ? </bean>
你看視頻就清楚了。