0
我有問題讓Jackson在我的Spring應用程序中工作。傑克遜在Spring MVC 3.1.2
我使用
- Spring MVC的3.1.2
- 傑克遜1.9.1映射翔升
我已經添加了傑克遜庫/ WEB-INF/lib目錄/文件夾並添加到我的spring配置文件中。
春天-config.xml中
<!-- language: xml-->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd">
<mvc:annotation-driven />
<context:component-scan base-package="com.mason.server.controller" />
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-CONTENT/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basename" value="WEB-INF/messages/messages" />
</bean>
功能控制器
<!-- language: java -->
@RequestMapping(value = "/get_json", method = RequestMethod.GET, headers = "Accept=*/*")
public @ResponseBody List<String> getTechList() {
List<String> countryList = new ArrayList<String>();
countryList.add("test");
return countryList;
}
,當我去到localhost:8888/get_json我得到一個錯誤406
我已經嘗試了互聯網上的解決方案,但他們似乎都沒有工作。任何幫助,將不勝感激! PS:我將Spring MVC與Google App Engine和Spring Security結合使用。
我有我的工作,我很快會上傳我的解決辦法 – areont