Skip to content
This repository has been archived by the owner on Jan 2, 2023. It is now read-only.

Commit

Permalink
clean personal information
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Atlas committed Jun 15, 2022
1 parent 092ab46 commit 41fc7de
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
23 changes: 18 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,29 @@
<java.version>1.8</java.version>
</properties>

<repositories>
<repository>
<id>aliyunmaven</id>
<url>https://maven.aliyun.com/repository/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
<version>2.6.7</version>
<version>2.7.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.6.7</version>
<version>2.7.0</version>
</dependency>

<!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
Expand Down Expand Up @@ -62,7 +75,7 @@
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.28</version>
<version>8.0.29</version>
<scope>runtime</scope>
</dependency>

Expand All @@ -83,7 +96,7 @@
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.7.22</version>
<version>5.8.2</version>
</dependency>


Expand All @@ -96,7 +109,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>2.6.7</version>
<version>2.7.0</version>
<scope>test</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/config/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/myhome?autoReconnect=true&useSSL=false&allowMultiQueries=true&zeroDateTimeBehavior=convertToNull&failOverReadOnly=false&serverTimezone=UTC
spring.datasource.username=root
#spring.datasource.password=123456
spring.datasource.password=lianjunhong1021
spring.datasource.password=*

pagehelper.helper-dialect=mysql
pagehelper.reasonable=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ jdbc.driverClass=com.mysql.jdbc.Driver
jdbc.connectionURL=jdbc:mysql://localhost:3306/myhome?autoReconnect=true&useSSL=false&serverTimezone=UTC
jdbc.username=root
#jdbc.password=123456
jdbc.password=lianjunhong1021
jdbc.password=*

0 comments on commit 41fc7de

Please sign in to comment.