mirror of https://gitee.com/maxjhandsome/pig
🔥 兼容spring boot 2.5 删除过期属性
This commit is contained in:
parent
414c1673e6
commit
9c00409a8e
|
@ -22,7 +22,7 @@
|
||||||
| Spring Cloud Alibaba | 2021.1|
|
| Spring Cloud Alibaba | 2021.1|
|
||||||
| Spring Security OAuth2 | 2.3.6 |
|
| Spring Security OAuth2 | 2.3.6 |
|
||||||
| Mybatis Plus | 3.4.3 |
|
| Mybatis Plus | 3.4.3 |
|
||||||
| hutool | 5.6.6 |
|
| hutool | 5.6.7 |
|
||||||
| Avue | 2.6.18 |
|
| Avue | 2.6.18 |
|
||||||
|
|
||||||
### 模块说明
|
### 模块说明
|
||||||
|
|
|
@ -21,6 +21,8 @@ nacos:
|
||||||
urls: /,/error,/**/*.css,/**/*.js,/**/*.html,/**/*.map,/**/*.svg,/**/*.png,/**/*.ico,/console-fe/public/**,/v1/auth/**,/v1/console/health/**,/actuator/**,/v1/console/server/**
|
urls: /,/error,/**/*.css,/**/*.js,/**/*.html,/**/*.map,/**/*.svg,/**/*.png,/**/*.ico,/console-fe/public/**,/v1/auth/**,/v1/console/health/**,/actuator/**,/v1/console/server/**
|
||||||
|
|
||||||
spring:
|
spring:
|
||||||
|
datasource:
|
||||||
|
platform: mysql #这个过期属性不能修改,nacos 代码对此有硬编码
|
||||||
security:
|
security:
|
||||||
enabled: true
|
enabled: true
|
||||||
boot: # 接入 spring boot admin
|
boot: # 接入 spring boot admin
|
||||||
|
@ -33,9 +35,6 @@ spring:
|
||||||
prefer-ip: true
|
prefer-ip: true
|
||||||
application:
|
application:
|
||||||
name: @project.artifactId@
|
name: @project.artifactId@
|
||||||
sql:
|
|
||||||
init:
|
|
||||||
platform: mysql
|
|
||||||
|
|
||||||
useAddressServer: true
|
useAddressServer: true
|
||||||
|
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -41,7 +41,7 @@
|
||||||
<maven.compiler.source>1.8</maven.compiler.source>
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||||||
<maven.compiler.target>1.8</maven.compiler.target>
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||||||
<spring-boot-admin.version>2.4.1</spring-boot-admin.version>
|
<spring-boot-admin.version>2.4.1</spring-boot-admin.version>
|
||||||
<hutool.version>5.6.6</hutool.version>
|
<hutool.version>5.6.7</hutool.version>
|
||||||
<mybatis-plus.version>3.4.3</mybatis-plus.version>
|
<mybatis-plus.version>3.4.3</mybatis-plus.version>
|
||||||
<dynamic-ds.version>3.3.2</dynamic-ds.version>
|
<dynamic-ds.version>3.3.2</dynamic-ds.version>
|
||||||
<captcha.version>2.2.0</captcha.version>
|
<captcha.version>2.2.0</captcha.version>
|
||||||
|
|
Loading…
Reference in New Issue