集成 SpringBoot web,提供常用 controller 层组件
<dependency>
<groupId>haidnor</groupId>
<artifactId>haidnor-spring-boot-web-starter</artifactId>
<version>3.2.0</version>
</dependency>
server:
port: 8080 # web访问端口
haidnor.web.filter.CORSFilter
错误日志信息将会返回给给前端
超过处理时长的接口,将会在 warn 日志中记录 cn.haidnor.web.interceptor.RequestDurationInterceptor
@PostMapping("/test")
public Result<?> test() {
return Result.success();
}