springmvc報Ambiguous handler methods mapped for HTTP path

一、問題:映射重複導致的錯誤

java代碼如下:

      @RequestMapping(value = "/info/{remove}/{id}", method = RequestMethod.GET)
        public String removeNewsById(@PathVariable("id") long id) {

@RequestMapping(value = "/info/{fav}/{id}", method = RequestMethod.GET)
    public String increaseFavoriteById(@PathVariable("id") long id) {

報以下錯誤:

message Request processing failed; nested exception is java.lang.IllegalStateException:
Ambiguous handler methods mapped for HTTP path 'http://localhost:8080/zc-beauty2/news/info/fav/6':
 {public java.lang.String com.zc.beauty.controller.NewsController.removeNewsById(long),
public java.lang.String com.zc.beauty.controller.NewsController.increaseFavoriteById(long)}


我的意圖是分別訪問 /info/remove/id 和/info/fav/id

上述寫法有問題:用{} 包裹起來的變量好像會被模糊化:

/info/{remove}/{id}  和

/info/{fav}/{id}

的映射是重複的

二、解決辦法:

寫成如下格式:

/info/remove/{id}

對於確定的路徑參數不要加{}

問題解決。
這個問題還導致eclipse和idea的debug不能使用

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章