1、多级路径
✅类路径和方法路径都可以写成多级
✅其中,类路径写在方法路径前面
✅与Servlet不同,SpringMVC中写不写"/"都可以
java
@RequestMapping("/hello/t1")
@RestController
public class HelloSpring {
@RequestMapping( value = "world/t2")
public String Spring(){
return "谢慈悲,剃度在莲台下。\n没缘法,转眼分离乍。\n赤条条,来去无牵挂。";
}
}
2、方法的限制
@RequestMapping这个前缀对post和get方法都有效
注解里,双引号的值会赋给"value"这个属性
多个对多个属性赋值,需要写上属性名只有一个属性时,且属性名为value,可以省略
我们在参数中规定一下,来限制方法
java
@RequestMapping("/hello/t1")
@RestController
public class HelloSpring {
@RequestMapping( value = "world/t2",method = RequestMethod.GET)
public String Spring(){
return "谢慈悲,剃度在莲台下。\n没缘法,转眼分离乍。\n赤条条,来去无牵挂。";
}
}
再次使用post报错,指定方法成功