Fix MyBatis startup issue in Spring Boot 4

This commit is contained in:
jade
2026-07-03 23:13:34 +09:00
parent 3494aa0bb8
commit 6b64c3c8cb
3 changed files with 22 additions and 2 deletions

View File

@@ -3,8 +3,8 @@ spring.application.name=axhub-admin
# application.properties (?? ??, Redis ? ??)
server.port=8080
spring.datasource.url=jdbc:p6spy:h2:mem:testdb;DB_CLOSE_DELAY=-1;
spring.datasource.driverClassName=com.p6spy.engine.spy.P6SpyDriver
spring.datasource.url=jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=password
spring.h2.console.enabled=true