這個異常是我在啟動Spring項目時遇到的,然后報這個異常導致項目啟動不起來,解決方法:
在@PathVariable這個注解后面加上value值。
這個是我報異常的代碼
@GetMapping("/user/{id}")
User queryById(@PathVariable Integer id);
這個是修改后的代碼
@GetMapping("/user/{id}")
User queryById(@PathVariable("id") Integer id);