首先介绍最常用的
1.配置文件
在application.properties里添加
server.servlet.context-path=/api
弊端就是 全局的所有请求都会加上这个前缀 不够灵活
2. 使用继承
选择一个基类 只添加这么一个注解
@RequestMapping("/api")
public class BaseController {
}
继承该基类 避免了其他controller要写很多统一的前缀 并且不需要全局请求都是这样
@RestController
public class HelloController extends BaseController {
@GetMapping("/hello")
public String hello() {
return "hello bb";
}
}