web-dev-qa-db-ja.com

一晩で接続が失われました(Spring Boot + mysql)

私のSpringBootアプリケーションは、午前中に常にこのホワイトラベルエラーを表示します。トランザクション用にJPAEntityManagerを開くことができませんでした。ネストされた例外はjavax.persistence.PersistenceExceptionです:org.hibernate.TransactionException:JDBC開始トランザクションが失敗しました:

Webを検索したところ、mysqlが8時間非アクティブで接続を閉じている可能性があると思います。ただし、ドキュメントによると、SpringBootはプーリングApacheデータソースを自動的に構成します。 http://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-sql.html

アプリケーションコードまたはデータベースの構成方法がわかりません。

これが私が使用しているbuild.gradleです:

buildscript {
    ext {
        springBootVersion = '1.2.3.RELEASE'
    }
    repositories {
        maven { url "http://repo.spring.io/libs-snapshot" }
        mavenLocal()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.3.RELEASE")
    }
}

apply plugin: 'Java'
apply plugin: 'Eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
apply plugin: 'war'
apply plugin: 'application'

repositories {
    mavenCentral()
    maven { url "http://repo.spring.io/libs-snapshot" }
    maven { url "http://maven.springframework.org/milestone" }
}

// Seems Tomcat 8 doesn't work with Paypal
configurations.all {
    resolutionStrategy {
        eachDependency {
            if (it.requested.group == 'org.Apache.Tomcat.embed') {
                it.useVersion '7.0.59'
            }
        }
    }
}

dependencies {
    compile("org.springframework.boot:spring-boot-starter-web:${springBootVersion}")
    compile("org.springframework.boot:spring-boot-starter-Tomcat:${springBootVersion}")
    compile("org.springframework.boot:spring-boot-starter-actuator")
    compile("org.springframework.boot:spring-boot-starter-mail:${springBootVersion}")
    compile("org.springframework.boot:spring-boot-starter-aop:${springBootVersion}")
    compile("org.springframework.boot:spring-boot-starter-test:${springBootVersion}")
    compile("org.springframework.boot:spring-boot-starter-security:${springBootVersion}")
    compile("org.springframework.boot:spring-boot-starter-data-jpa:${springBootVersion}")
    compile("org.springframework.data:spring-data-rest-webmvc")
    compile("javax.servlet:jstl:1.2")
    compile("org.Apache.logging.log4j:log4j-api:2.3")
    compile("org.Apache.logging.log4j:log4j-core:2.3")
    compile("com.Paypal.sdk:rest-api-sdk:1.2.1")
    compile("com.opencsv:opencsv:3.4")
    compile("mysql:mysql-connector-Java:5.1.35")
    compile("com.google.guava:guava:17.0")
    compile("org.Apache.httpcomponents:httpclient:4.3.4")
    compile("com.squareup.retrofit:retrofit:1.6.0")
    compile("commons-io:commons-io:2.4")
    compile("org.Apache.commons:commons-lang3:3.4")
    compile("com.amazonaws:aws-Java-sdk:1.9.34")

    providedCompile("org.Apache.Tomcat.embed:Tomcat-embed-jasper:8.0.22")

    testCompile("junit:junit")
}

sourceCompatibility = 1.7
targetCompatibility = 1.7

war {
    baseName = 'gs-convert-jar-to-war'
    version =  '0.1.0'
}

task wrapper(type: Wrapper) {
    gradleVersion = '2.3'
}

Application.propertiesのデータベース構成は次のとおりです。

spring.datasource.url=jdbc:mysql://fakeurl:3306/qa
spring.datasource.username=username
spring.datasource.password=password
spring.datasource.driverClassName=com.mysql.jdbc.Driver
spring.jpa.database-platform=org.hibernate.dialect.MySQLDialect
#
# hibernate
#
spring.jpa.hibernate.ddl-auto=update

データソースには、SpringDataのリポジトリを使用します。

@Repository
public interface EventRepository extends CrudRepository<EventDetail, Long> {

}

「showvariableslike '%timeout%'」を実行しているmysqlデータベースに対する結果は次のとおりです。

'connect_timeout','10'
'delayed_insert_timeout','300'
'innodb_flush_log_at_timeout','1'
'innodb_lock_wait_timeout','50'
'innodb_rollback_on_timeout','OFF'
'interactive_timeout','28800'
'lock_wait_timeout','31536000'
'net_read_timeout','30'
'net_write_timeout','60'
'rpl_stop_slave_timeout','31536000'
'slave_net_timeout','3600'
'wait_timeout','28800'
10
darklord

この回答を確認してください: Spring Boot JPA-自動再接続の構成

つまり、次のものが必要です。

spring.datasource.testOnBorrow=true
spring.datasource.validationQuery=SELECT 1
16
Lukas Hinsch

これも確認できます link application.propertiesファイルに次の行を含めるように指示します。

spring.datasource.testWhileIdle = true
spring.datasource.timeBetweenEvictionRunsMillis = 3600000
spring.datasource.validationQuery = SELECT 1
5
Soumya

これを修正するには、DBサーバーでプロパティwait_timeout = 31536000を設定します。これは1年に相当します。 DBがAWS環境で実行されている場合は、[Parameters group]-> [create a new group]-> [set wait_timeout = 31536000]に移動し、新しく作成されたパラメーターグループをRDSインスタンスに割り当てます。スプリングブートインスタンスでこれを修正したい場合は、C3P0設定でのみ修正できますが、私は試していません。

0
Azeez Althaf