2024年2月6日15:57:24
parent
358aa05823
commit
4470a015fa
14
pom.xml
14
pom.xml
|
|
@ -227,6 +227,20 @@
|
||||||
<artifactId>javax.xml.bind</artifactId>
|
<artifactId>javax.xml.bind</artifactId>
|
||||||
<version>10.0-b28</version>
|
<version>10.0-b28</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.persistence</groupId>
|
||||||
|
<artifactId>persistence-api</artifactId>
|
||||||
|
<version>1.0.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>redis.clients</groupId>
|
||||||
|
<artifactId>jedis</artifactId>
|
||||||
|
<version>3.0.1</version>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
|
||||||
|
|
@ -33,6 +33,9 @@ spring:
|
||||||
multipart:
|
multipart:
|
||||||
max-file-size: 1000MB
|
max-file-size: 1000MB
|
||||||
max-request-size: 1000MB
|
max-request-size: 1000MB
|
||||||
|
redis:
|
||||||
|
host: 127.0.0.1
|
||||||
|
port: 6379
|
||||||
pagehelper:
|
pagehelper:
|
||||||
row-bounds-with-count: true
|
row-bounds-with-count: true
|
||||||
offset-as-page-num: true
|
offset-as-page-num: true
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue