我尝试让 Spring 中的控制器使用3.0 推荐的 Jackson 类返回 JSON 响应,但无济于事。当然,我的课程路径中有杰克逊 jar 文件(jackson-core-asl-1.5.5.jar & jackson-mapper-asl-1.5.5.jar)。
至于 appconfig.xml 条目,我不确定我是否需要这些。我已经把它们放在那里作为最后的绝望行为,然后再回到 ol' 时尚非 json ajax。
在调试中,我观察控制器获取请求,返回 foo,然后在 firebug 中,得到 406。
错误消息如下:从记录器设置为调试时:org.springframework.web.HttpMediaTypeNotAcceptableException:找不到可接受的表示
从响应中: (406) 此请求标识的资源仅能够生成具有根据请求“接受”标头 () 不可接受的特征的响应。
我的 appconfig.xml 在这里:
<!-- Configures support for @Controllers -->
<mvc:annotation-driven />
<!-- Resolves view names to protected .jsp resources within the /WEB-INF/views directory -->
<bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
<property name="mediaTypes">
<map>
<entry key="html" value="text/html"/>
<entry key="json" value="application/json"/>
</map>
</property>
<property name="viewResolvers">
<list>
<bean class="org.springframework.web.servlet.view.BeanNameViewResolver"/>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/"/>
<property name="suffix" value=".jsp"/>
</bean>
</list>
</property>
<property name="defaultViews">
<list>
<bean class="org.springframework.web.servlet.view.json.MappingJacksonJsonView" />
</list>
</property>
</bean>
<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basename" value="messages"></property>
</bean>
我的控制器
@RequestMapping(value="foo/bar", method=RequestMethod.GET)
public @ResponseBody foo getFoo(@RequestParam String fooId) {
return new foo(fooId);
}
在进行 ajax 调用的 jsp 上:
function addRow() {
$.getJSON("foo/bar", {
fooId: 1
}, function(data) {
alert("it worked.");
});
}
让我知道是否需要更多信息。