下圖中,由於紅色部分(value="/")的存在,導致 host:port/項目/dimlist 無法被映射到dimList方法,解決辦法是將其去掉。
package cn.bgodata.x.zero.web.ctrl; import org.springframework.stereotype.Component; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.*; @Component @RequestMapping("/dimlist") public class ZeroBiController { @RequestMapping(value="/", method=RequestMethod.GET) public String dimList(Model model) { return "dimlist"; } @RequestMapping(value="/{randomcode}/nani", method=RequestMethod.POST) public String dimList(Model model, String randomcode) { System.out.println("randomcode = " + randomcode); return "nani"; } }