Spring Boot 406(type=Not Acceptable, status=406)异常解决办法

使用Spring Boot,Controller请求返回的参数类型是ResponseBody , 如果请求的时候使用使用配置的默认请求扩展名,例如.html,Spring MVC会抛出一个type=Not Acceptable, status=406错误,如下:

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Mon Jan 23 17:14:35 CST 2017
There was an unexpected error (type=Not Acceptable, status=406).
Could not find acceptable representation

请求处理的Controller代码如下:

/**
     * 延时获取用户端浏览器的跟踪ID
     * @param request
     * @param response
     * @param orgi
     * @param appid
     * @param userid
     * @param sign
     * @return
     */
    @RequestMapping("/online")
    @Menu(type = "im" , subtype = "online" , access = true)
    public @ResponseBody OnlineUser online(HttpServletRequest request , HttpServletResponse response , @Valid String orgi , @Valid String appid, @Valid String userid , @Valid String sign){
    	OnlineUser onlineUser = null ;
    	if(!StringUtils.isBlank(sign)){
    		onlineUser = OnlineUserUtils.online(super.getIMUser(request , sign) , orgi ,sign , UKDataContext.OnlineUserTypeStatus.WEBIM.toString(), request);
    	}
    	return onlineUser;
    }

处理办法:

1、使用JSON请求Controller,增加 org.codehaus.jackson  的依赖

<dependency>
    <groupId>com.fasterxml.jackson.dataformat</groupId>
    <artifactId>jackson-dataformat-xml</artifactId>
</dependency>

请求的URL使用http://xxx.xxx.xxx.xxx:8080/online.json,访问正常。

2、覆盖Application.java里的 configureContentNegotiation  方法,代码如下:

@SpringBootApplication
public class Application extends WebMvcConfigurerAdapter {
   
  
    @Override
   public void configureContentNegotiation(ContentNegotiationConfigurer config) {
        config.favorPathExtension(false);
    }
    public static void main(String[] args) {
       SpringApplication.run(Application.class, args);
    }
}

方法2中关键的代码在于 config.favorPathExtension(false);

favorPathExtension表示支持后缀匹配,
ignoreAcceptHeader默认为fasle,表示accept-header匹配,defaultContentType开启默认匹配。

转载于:https://my.oschina.net/u/3233864/blog/829737

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值