我有以下弹簧控制器
@Controller
@RequestMapping("/accreq")
具有以下映射和文件,类似于org.springframework.samples.mvc.ajax.account.AvailabilityStatus
具有额外的布尔字段someBooleanValue
@RequestMapping(value = "/defRoles", method=RequestMethod.GET)
public @ResponseBody AvailabilityStatus loadDefaultRoles(
@RequestParam(value="idGroup", required=false) String groupID {
我正在尝试使用以下 jquery ajax 调用此方法
$.getJSON("${pageContext. request. contextPath}/accreq/defRoles.htm", { idGroup: $('#infoGroup').val() }, function(availability) {
if (availability.someBooleanValue) {
//Do this
} else {
//Do else
}
});
正在执行 Spring 方法,但我得到了406
回复。dataType
我需要设置什么才能获得成功的响应?这个使用在下工作Spring 3.1.4
,现在它不适用于更高版本的 Spring,比如3.2.4
or 4.0.0
。简而言之,如何处理 Ajax 响应中的对象返回?
响应标头 -406
错误
Request Headersview source
Accept application/json, text/javascript, */*; q=0.01
Accept-Encoding gzip, deflate
Accept-Language en-US,en;q=0.5
Connection keep-alive
配置
<context:component-scan base-package="com.X" />
<mvc:annotation-driven />
<cache:annotation-driven />
<bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor"/>
<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basename" value="messages" />
</bean>
...mapping for controller.....database etc
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
<property name="cache" value="true" />
<property name="order" value="1" />
</bean>