Skip to content

Commit

Permalink
save1
Browse files Browse the repository at this point in the history
  • Loading branch information
markliu2013 committed May 1, 2024
1 parent ca45952 commit 05081a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/cn/biq/mn/TestController.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class TestController {

@RequestMapping(method = RequestMethod.GET, value = "/version")
public BaseResponse handleVersion() {
return new DataResponse<>("93.60");
return new DataResponse<>("93.61");
}

@GetMapping("/test3")
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#spring.sql.init.platform=org.hibernate.dialect.MySQL5InnoDBDialect
#spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
#spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQLDialect
spring.datasource.url=jdbc:mysql://${DB_HOST:127.0.0.1}:${DB_PORT:3306}/${DB_NAME:moneynote}?allowPublicKeyRetrieval=true&createDatabaseIfNotExist=true
spring.datasource.url=jdbc:mysql://${DB_HOST:127.0.0.1}:${DB_PORT:3306}/${DB_NAME:moneynote}?allowPublicKeyRetrieval=true&createDatabaseIfNotExist=true&&default-storage-engine=MyISAM
spring.datasource.username=${DB_USER:root}
spring.datasource.password=${DB_PASSWORD:78p7gkc1}
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
Expand Down

0 comments on commit 05081a0

Please sign in to comment.