最新回答 / qq_一碎破城池_0
這前面的代碼,照著抄就行了啊
最新回答 / WOshows
老師的素材應(yīng)該比較老的,自己看著視頻搭一個(gè)
已采納回答 / qq_憶思等待的淚_0
同上只需在文件頭中引入:xmlns:context="http://www.springframework.org/schema/context" 即可
spring-web-sources 文件
鏈接: https://pan.baidu.com/s/1o85jSwi 密碼: 42xf
鏈接: https://pan.baidu.com/s/1o85jSwi 密碼: 42xf
2018-01-04
出現(xiàn)404錯(cuò)誤"There is no Action mapped for namespace [/] and action name [product_save] associated with context path [/ssh]."修改為:
<action name="product_*" class="com.ssh.action.ProductAction" method="{1}">
<!-- struts2.3版本之后,使用通配符調(diào)用方法時(shí),內(nèi)部會(huì)驗(yàn)證是否允許訪問該方法-->
<allowed-methods>save</allowed-methods>
</action>
<action name="product_*" class="com.ssh.action.ProductAction" method="{1}">
<!-- struts2.3版本之后,使用通配符調(diào)用方法時(shí),內(nèi)部會(huì)驗(yàn)證是否允許訪問該方法-->
<allowed-methods>save</allowed-methods>
</action>
2018-01-03
小伙伴們,如果出現(xiàn)
Message There is no Action mapped for namespace [/] and action name [product_save] associated with context path [/ssh].
在struts.xml中的<action>標(biāo)簽中加入<allowed-methods>save</allowed-methods>
因?yàn)樵趕truts2.3版本之后,使用通配符調(diào)用方法時(shí),內(nèi)部會(huì)驗(yàn)證是否允許訪問該方法,所以要加上下面的allowed-methods, 如何其中包含多個(gè)方法,可以用逗號(hào)分開
Message There is no Action mapped for namespace [/] and action name [product_save] associated with context path [/ssh].
在struts.xml中的<action>標(biāo)簽中加入<allowed-methods>save</allowed-methods>
因?yàn)樵趕truts2.3版本之后,使用通配符調(diào)用方法時(shí),內(nèi)部會(huì)驗(yàn)證是否允許訪問該方法,所以要加上下面的allowed-methods, 如何其中包含多個(gè)方法,可以用逗號(hào)分開
2018-01-03
已采納回答 / yuorchid
數(shù)據(jù)庫編碼改utf-8可以修改mysql的配置文件 .ini,加#服務(wù)端的編碼方式 ?character-set-server=utf8 ?[client] ?#客戶端編碼方式,最好和服務(wù)端保存一致 ?loose-default-character-set = utf8?
2017-12-18
如果能看懂了視頻并且完成一定的作業(yè),可以分享代碼,就好,因?yàn)橛行┘馨陌姹净蚴情_發(fā)環(huán)境的問題,感覺,寫的時(shí)候總是有點(diǎn)下問題
2017-12-17
最新回答 / 慕村6019880
struts , hibernate , spring 都可以直接在網(wǎng)上搜索的如:http://struts.apache.org/download.cgi?這個(gè)就是struts2 下載網(wǎng)址, 你可以選擇版本
2017-12-16
最新回答 / 慕粉2213397909
返回“SUCCESS":表示進(jìn)行業(yè)務(wù)處理成功時(shí)返回該字符串,同時(shí)也是execute()方法默認(rèn)返回的字符串,如果不成功,則返回"ERROR"字符串,或者其他自定義字符串,這些字符串是用來在struts配置action時(shí)用到
2017-12-16
最新回答 / 慕村6019880
我使用第一種方法:action的類由struts2自身創(chuàng)建也會(huì)出這個(gè)錯(cuò)誤,也沒解決。但是使用第二種方法交由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" sco...
cvc-complex-type.3.2.2: Attribute 'scope' is not allowed to appear in element 'property'.
2017-12-10