一切福田,不離方寸,從心而覓,感無不通。

Java开发中排除依赖项

Maven

  Gradle

 

龙生   26 Aug 2023
View Details

SpringBoot项目集成Swagger和swagger-bootstrap-ui以及常用注解使用方法

一、前言
二、SpringBoot项目集成swagger
1. 引入依赖
2. 编写配置文件
3. 启动访问页面
三、SpringBoot项目集成swagger-bootstrap-ui
1.引入依赖
2.配置资源处理规则
3.启动访问页面
四、Swagger常用注解介绍
1.Swagger2Config中相关swagger注解
2.controller中相关swagger注解
3.Model中相关swagger注解

龙生   26 Aug 2023
View Details

Swagger文档在SpringBoot框架下的配置,Swagger配置登录验证

## 开启 Swagger的 Basic认证功能,默认是false
swagger:
# 是否关闭 swagger接口文档访问
# production: true
basic:
# 开启简单用户验证
enable: true
# 用户名(自由发挥)
username: xx
# 用户密码(自由发挥)
password: xx

龙生   26 Aug 2023
View Details

Gradle报错Could not resolve all dependencies for configuration ‘:detachedConfiguration7‘.

修改方式有两种:

第一种:在仓库前添加关键字:allowInsecureProtocol = true
第二种:将阿里云的连接http换成https

龙生   26 Aug 2023
View Details

SpringBoot升级2.4.0所出现的问题:When allowCredentials is true, allowedOrigins cannot contain the specia

跨域配置报错,将.allowedOrigins替换成.allowedOriginPatterns即可。

龙生   26 Aug 2023
View Details

访问swagger-ui.html 404报错一秒解决

在application.properties 加上这个

spring.mvc.pathmatch.matching-strategy=ant_path_matcher

龙生   26 Aug 2023
View Details