springboot3
This commit is contained in:
6
pom.xml
6
pom.xml
@@ -4,7 +4,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-parent</artifactId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||||||
<version>2.7.6</version>
|
<version>3.0.1</version>
|
||||||
<relativePath /> <!-- lookup parent from repository -->
|
<relativePath /> <!-- lookup parent from repository -->
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>com.flagnote</groupId>
|
<groupId>com.flagnote</groupId>
|
||||||
@@ -13,8 +13,8 @@
|
|||||||
<name>flagnote-gateway</name>
|
<name>flagnote-gateway</name>
|
||||||
<description>Demo project for Spring Boot</description>
|
<description>Demo project for Spring Boot</description>
|
||||||
<properties>
|
<properties>
|
||||||
<java.version>11</java.version>
|
<java.version>17</java.version>
|
||||||
<spring-cloud.version>2021.0.5</spring-cloud.version>
|
<spring-cloud.version>2022.0.0</spring-cloud.version>
|
||||||
</properties>
|
</properties>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|||||||
@@ -2,6 +2,15 @@ server:
|
|||||||
address: 127.0.0.1
|
address: 127.0.0.1
|
||||||
port: 10000
|
port: 10000
|
||||||
spring:
|
spring:
|
||||||
|
data:
|
||||||
|
redis:
|
||||||
|
host: service.flagnote.com
|
||||||
|
port: 36379
|
||||||
|
timeout: 10000
|
||||||
|
poolMaxTotal: 10
|
||||||
|
poolMaxIdle: 10
|
||||||
|
poolMaxWait: 3
|
||||||
|
password: 1qazx1qazx
|
||||||
codec:
|
codec:
|
||||||
max-in-memory-size: 100MB
|
max-in-memory-size: 100MB
|
||||||
servlet:
|
servlet:
|
||||||
@@ -10,14 +19,6 @@ spring:
|
|||||||
max-file-size: 100MB
|
max-file-size: 100MB
|
||||||
# 最大支持请求大小
|
# 最大支持请求大小
|
||||||
max-request-size: 100MB
|
max-request-size: 100MB
|
||||||
redis:
|
|
||||||
host: service.flagnote.com
|
|
||||||
port: 36379
|
|
||||||
timeout: 1000
|
|
||||||
poolMaxTotal: 10
|
|
||||||
poolMaxIdle: 10
|
|
||||||
poolMaxWait: 3
|
|
||||||
password: 1qazx1qazx
|
|
||||||
application:
|
application:
|
||||||
name: gateway
|
name: gateway
|
||||||
cloud:
|
cloud:
|
||||||
@@ -146,5 +147,5 @@ management:
|
|||||||
logging:
|
logging:
|
||||||
level:
|
level:
|
||||||
org.springframework.cloud.gateway: trace
|
org.springframework.cloud.gateway: trace
|
||||||
# org.springframework.cloud.loadbalancer: trace
|
org.springframework.cloud.loadbalancer: trace
|
||||||
# org.springframework.web.reactive: trace
|
org.springframework.web.reactive: trace
|
||||||
Reference in New Issue
Block a user