使用Spring Boot的时候,在没有任何错误的情况下,访问请求时出现如下信息:
2019-04-12 14:54:31.197 WARN 26744 --- [-nio-80-exec-13] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved exception caused by Handler execution: org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
描述:
Controller:
@RestController
public class SolrController {
@RequestMapping(value = "gzhSpread",method = {RequestMethod.POST,RequestMethod.GET})
}
html: gzhSpread.html
localhost:gzhSpread.html ------> init gzhSpread
原因:你请求的映射路径和文件名冲突了
解决方案:更改文件名或者更改路径