refactor: 升级springboot版本

This commit is contained in:
夏悸 2024-01-20 16:49:49 +08:00
parent 1e3bd2d65b
commit d9de1c9eb2
3 changed files with 5 additions and 4 deletions

View File

@ -12,7 +12,7 @@ repositories {
dependencies {
compile project(':kernel')
runtimeOnly('mysql:mysql-connector-java')
runtimeOnly('com.mysql:mysql-connector-j:8.3.0')
implementation('com.itextpdf:itextpdf:5.5.13.1')
implementation('org.apache.poi:poi:4.1.0')
implementation('org.apache.poi:poi-ooxml:4.1.0')

View File

@ -1,8 +1,9 @@
spring:
datasource:
url: jdbc:mysql://localhost:3306/fxy?characterEncoding=UTF-8&useUnicode=true&useSSL=false&serverTimezone=GMT%2B8&allowMultiQueries=true
url: jdbc:mysql://localhost:3306/fxy?characterEncoding=UTF-8&useUnicode=true&useSSL=false&serverTimezone=GMT%2B8&allowMultiQueries=true&allowPublicKeyRetrieval=true
password: 12qwaszx
username: root
driver-class-name: com.mysql.cj.jdbc.Driver
hikari:
maximum-pool-size: 2
minimum-idle: 2

View File

@ -3,7 +3,7 @@ version '0.1'
buildscript {
ext {
springBootVersion = '2.1.8.RELEASE'
springBootVersion = '2.3.12.RELEASE'
}
repositories {
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }