struts2整合json出現no result type defined for type 'json'的解決方法 html
struts2的json plugin能夠實現struts2和json的完美結合,因爲本篇主要是介紹整合過程當中遇到的問題,因此編程實現的方法這裏就不重複了,具體能夠參看struts2的官方文檔:http://struts.apache.org/2.2.1.1/docs/json-plugin.html。 前端
我在struts.xml中有以下action定義: apache
<action name="product_group" class="customers.products" method="getGroups"> <result type="json"> <param name="root">groupList</param> </result> </action>
在上面的定義中,action的result的type爲json,json plugin就可將action中定義爲groupList的field自動轉換爲json格式數據,並返回給前端UI。 編程
但在deploy後,啓動tomcat時卻報了There is no result type defined for type 'json' mapped with name 'success'. Did you mean 'json'?的錯誤,由於struts2找不到json這個result type的定義。解決方法有下面兩種: json
1.將當前package的extends屬性改成"json-default",即讓當前package從josn-default繼承而不是struts-default繼承; tomcat
2.但若是當前package確實沒法繼承"json-default"的話,還能夠在當前package中定義result-type,將json給加進去,以下: app
<result-types> <result-type name="json" class="org.apache.struts2.json.JSONResult"/> </result-types>
json這個result type是在json-default (struts2-json-plugin-2.1.8.1.jar\struts-plugin.xml)裏面定義的,內容以下(省去了xml和doctype標籤): spa
<struts> <package name="json-default" extends="struts-default"> <result-types> <result-type name="json" class="org.apache.struts2.json.JSONResult"/> </result-types> <interceptors> <interceptor name="json" class="org.apache.struts2.json.JSONInterceptor"/> </interceptors> </package> </struts>
可見,name爲"json"的result type是在json-default中定義的,因此,從json-default繼承就能夠使用json這個result。另外json-default還定義了一個name爲"json"的interceptor。 code
另外,依json-default的定義來看,方法2中還應該再加一個json的interceptor定義才比較合適。 xml