如何使Spring服务器在数据库关闭的情况下启动?



我正在使用Spring Boot(1.4.7(和MyBatis。

spring.main1.datasource.url=jdbc:mariadb://192.168.0.11:3306/testdb?useUnicode=true&characterEncoding=utf8&autoReconnect=true&socketTimeout=5000&connectTimeout=3000
spring.main1.datasource.username=username
spring.main1.datasource.password=password
spring.main1.datasource.driverClassName=org.mariadb.jdbc.Driver
spring.main1.datasource.tomcat.test-on-borrow=true
spring.main1.datasource.tomcat.test-while-idle=true
spring.main1.datasource.tomcat.validation-query=SELECT 1
spring.main1.datasource.tomcat.validation-query-timeout=5000
spring.main1.datasource.tomcat.validation-interval=5000
spring.main1.datasource.tomcat.max-wait=5000
spring.main1.datasource.continue-on-error=true

当数据库在 Eclipse 或 Linux 服务器上断开连接时,我无法启动程序并出现错误。 (数据库不在本地主机上。

当我尝试使用断开连接的数据库启动程序时, 打印此内容。

java.sql.SQLNonTransientConnectionException: Could not connect to address=(host=192.168.0.11)(port=3306)(type=master) : connect timed out
Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is java.sql.SQLNonTransientConnectionException: Could not connect to address=(host=192.168.0.11)(port=3306)(type=master) : connect timed out
Stopping service [Tomcat]
Application startup failed

有什么办法吗?

谢谢

您可以设置:

spring.sql.init.continue-on-error=true

在您的应用程序属性中。

根据 Spring Boot 2.5.5 用户指南:

默认情况下,Spring 引导启用其基于脚本的数据库初始值设定项的快速故障功能。这意味着,如果脚本导致异常,应用程序将无法启动。您可以通过设置spring.sql.init.continue-on-error来调整该行为。

PS:在 Spring Boot 2.5 之前,该属性被命名为spring.datasource.continue-on-error

我能够解决这个问题。但是,我的工作与问题中的代码之间的一个主要区别是,我使用Hikari而不是Tomcat作为连接池。

这些是我必须进行的关键设置:

spring.datasource.hikari.minimum-idle: 0
spring.datasource.hikari.initialization-fail-timeout: -1
spring.datasource.continue-on-error: true
spring.datasource.driver-class-name: org.postgresql.Driver
spring.jpa.database-platform: org.hibernate.dialect.PostgreSQLDialect

minimum-idle设置为 0 可以让光在没有任何连接的情况下感到快乐。

-1 的initialization-fail-timeout设置告诉 Hikari,我不希望在池启动时它获得连接。

来自 HikariCP 文档:

小于零的值将绕过任何初始连接尝试,并且池将在尝试在后台获取连接时立即启动。因此,以后获取连接的努力可能会失败。

continue-on-error设置true允许服务即使在遇到错误时也能继续。

driver-class-namedatabase-platform都是必需的。否则,Hikari会尝试通过连接到数据库(在启动期间(来找出这些值。


不过,以防万一我错过了什么,这是我的完整 Spring 配置:

spring:
application:
name: <redacted>
datasource:
url: <redacted>
username: <redacted>
password: <redacted>
driver-class-name: org.postgresql.Driver
hikari:
minimum-idle: 0
maximum-pool-size: 15
connection-timeout: 10000 #10s
idle-timeout: 300000 #5m
max-lifetime: 600000 #10m
initialization-fail-timeout: -1
validation-timeout: 1000 #1s
continue-on-error: true
jpa:
open-in-view: false
database-platform: org.hibernate.dialect.PostgreSQLDialect

我的项目具有以下 Spring 启动依赖项:

org.springframework.boot:spring-boot
org.springframework.boot:spring-boot-actuator
org.springframework.boot:spring-boot-actuator-autoconfigure
org.springframework.boot:spring-boot-autoconfigure
org.springframework.boot:spring-boot-configuration-processor
org.springframework.boot:spring-boot-devtools
org.springframework.boot:spring-boot-starter
org.springframework.boot:spring-boot-starter-actuator
org.springframework.boot:spring-boot-starter-jdbc
org.springframework.boot:spring-boot-starter-jooq
org.springframework.boot:spring-boot-starter-json
org.springframework.boot:spring-boot-starter-logging
org.springframework.boot:spring-boot-starter-security
org.springframework.boot:spring-boot-starter-test
org.springframework.boot:spring-boot-starter-tomcat
org.springframework.boot:spring-boot-starter-validation
org.springframework.boot:spring-boot-starter-web

你需要添加

spring.jpa.database-platform=org.hibernate.dialect.MySQL5Dialect

为了使它工作

如果上述提示没有帮助并且您使用 jpa,则设置

spring.jpa.hibernate.ddl-auto=none

它对我有用。

构建应用程序时,可以添加

mvn clean install -DskipTests

它将跳过数据库连接的测试

(-D 用于定义系统属性(

相关内容

  • 没有找到相关文章

最新更新