springboot其他整合随笔
作者:互联网
异步操作:
在启动器前加注解 @EnableAsync开启异步
service层方法里加入@Async 注解 就开启了异步
swagger 3.0 配置到 springboot 2.7(高版本)方式:
pom依赖
<dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> <version>3.0.0</version> </dependency>
yaml简单配置:
# 开启或关闭swagger springfox: documentation: swagger-ui: enabled: true
启动器开启
@EnableOpenApi注解
swagger网址
http://localhost:8080/swagger-ui/index.html
演示
标签:异步,springfox,启动器,springboot,随笔,开启,整合,注解,swagger 来源: https://www.cnblogs.com/dangdangCat/p/16462364.html