SpringBoot 添加统一的接口路径前缀,例如 /api/1.0 这样。

写一个 Springboot 配置类即可:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
* @author jinMao
* @version 1.0.0
* @ClassName WebMvcConfig.java
* @Description TODO
* @createTime 2022-08-20 00:14:00
*/
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
@Override
public void configurePathMatch(PathMatchConfigurer configurer) {
configurer.addPathPrefix("/api/1.0", c -> c.isAnnotationPresent(RestController.class));
}
}

会自动带上前缀:

Edited on Views times