springboot的controller使用及url参数的获取-LMLPHP

springboot的controller使用及url参数的获取-LMLPHP

类上加上@RequestMapping其访问的地址就是类上的加上方法上的菜能访问到该方法,例如上图的地址就是/hello/say

@RequestMapping(value = "/hello",method = RequestMethod.GET)
和@GetMapping(value = "/hello")是等同的

springboot的controller使用及url参数的获取-LMLPHP

springboot的controller使用及url参数的获取-LMLPHP

这样就能获取url参数的值了,其结果如下

springboot的controller使用及url参数的获取-LMLPHP

springboot的controller使用及url参数的获取-LMLPHP

springboot的controller使用及url参数的获取-LMLPHP

05-11 20:45