您好,登錄后才能下訂單哦!
?<mvc:annotation-driven? >
? ? ? ? <mvc:message-converters register-defaults="true">
? ? ? ? ?
? ? ? ? ? ? ?<bean class="org.springframework.http.converter.StringHttpMessageConverter">
? ? ? ? ? ? ? ? ?<property name="supportedMediaTypes" value="text/plain;charset=UTF-8" />
? ? ? ? ? ? ?</bean>
? ? ? ? ? ??
? ? ? ? ? ? <bean class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter">
? ? ? ? ? ? ? ? <property name="supportedMediaTypes">
? ? ? ? ? ? ? ? ? ? <list>
? ? ? ? ? ? ? ? ? ? ? ? <value>text/html;charset=UTF-8</value>
? ? ? ? ? ? ? ? ? ? ? ? <value>application/json</value>
? ? ? ? ? ? ? ? ? ? </list>
? ? ? ? ? ? ? ? </property>
? ? ? ? ? ? ? ? <property name="features">
? ? ? ? ? ? ? ? ? ? <list>
? ? ? ? ? ? ? ? ? ? ? ? <value>WriteMapNullValue</value>
? ? ? ? ? ? ? ? ? ? ? ? <value>QuoteFieldNames</value>
? ? ? ? ? ? ? ? ? ? </list>
? ? ? ? ? ? ? ? </property>
? ? ? ? ? ? </bean>
? ? ? ? </mvc:message-converters>
? ? </mvc:annotation-driven>
由于springmvc提供的是jackjson,而習慣使用fastjson,
配置json視圖解析器
control返回json
@ResponseBody
@RequestMapping("getMyOrders.do")
public Object getMyOrders(String uid){
? ? ?List<PoOrder> poOrder=orderService.getMyorders(uid);
JSONObject jsonObject=jsonUtil.getJsonStatic(1, "");
jsonObject.put("msg", poOrder);
return jsonObject;
}
@ResponseBody標記的都會選擇使用json視圖
注意:
<strong> <mvc:annotation-driven? >只能存在一個</strong>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。