日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

SpringMVC异常报406 (Not Acceptable)的解决办法

發(fā)布時間:2025/7/14 41 豆豆
生活随笔 收集整理的這篇文章主要介紹了 SpringMVC异常报406 (Not Acceptable)的解决办法 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
使用SpsringMVC,使用restEasy調(diào)試,controller請求設(shè)置如下:?
Java代碼??
  • @RequestMapping(value="/list",method=RequestMethod.GET,produces=MediaType.APPLICATION_JSON_VALUE)??
  • @ResponseBody??
  • public?List<EditTimeout>?list(){??
  • ?????List<EditTimeout>?list?=?editImpl.selectAll();??
  • ????return?list;??
  • }??


  • 請求,debug跟蹤list是返回值沒有問題,但是前臺頁面報如下錯誤:?
    Java代碼??
  • Response?Status:?406?(Not?Acceptable)??


  • Response RAW返回值如下,(前半部分)?
    Xml代碼??
  • HTTP?GET?http://127.0.0.1:8080/onlineLibrary/rest/system/editTimeout/list??
  • Host:?127.0.0.1:8080??
  • ??
  • ??
  • 406?Not?Acceptable??
  • Date:?Sat,?17?Aug?2013?11:01:07?GMT??
  • Server:?Apache-Coyote/1.1??
  • Content-Length:?1067??
  • Content-Type:?text/html;charset=utf-8??
  • <html><head><title>Apache?Tomcat/7.0.34?-?Error?report</title><style>??


  • 后臺提示錯誤:?
    Java代碼??
  • 2013-08-17?19:01:03,116?DEBUG?org.springframework.web.servlet.DispatcherServlet?-Last-Modified?value?for?[/onlineLibrary/rest/system/editTimeout/list]?is:?-1??
  • 2013-08-17?19:01:07,606?DEBUG?org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver?-Resolving?exception?from?handler?[public?java.util.List<com.online.ol.filter.EditTimeout>?com.online.ol.filter.EditTimeoutContoller.list()]:?org.springframework.web.HttpMediaTypeNotAcceptableException:?Could?not?find?acceptable?representation??
  • 2013-08-17?19:01:07,680?DEBUG?org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver?-Resolving?exception?from?handler?[public?java.util.List<com.online.ol.filter.EditTimeout>?com.online.ol.filter.EditTimeoutContoller.list()]:?org.springframework.web.HttpMediaTypeNotAcceptableException:?Could?not?find?acceptable?representation??
  • 2013-08-17?19:01:07,681?DEBUG?org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver?-Resolving?exception?from?handler?[public?java.util.List<com.online.ol.filter.EditTimeout>?com.online.ol.filter.EditTimeoutContoller.list()]:?org.springframework.web.HttpMediaTypeNotAcceptableException:?Could?not?find?acceptable?representation??




  • 引起的原因:?
    ?? 由于設(shè)置了@ResponseBody,要把對象轉(zhuǎn)換成json格式,缺少轉(zhuǎn)換依賴的jar包,故此錯。?
    解決辦法:?
    ?? 加入依賴的jar,jackson-core-asl-1.9.12.jar,jackson-mapper-asl-1.9.12.jar問題解決。
    • jackson-mapper-asl-1.9.12.jar?(762.1 KB)
    • 下載次數(shù): 2536
    • jackson-core-asl-1.9.12.jar?(226.8 KB)
    • 下載次數(shù): 2052

    轉(zhuǎn)載于:https://www.cnblogs.com/ThinkVenus/p/6786746.html

    總結(jié)

    以上是生活随笔為你收集整理的SpringMVC异常报406 (Not Acceptable)的解决办法的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。