web-dev-qa-db-fra.com

Erreur précoce de démarrage de printemps "Hikari Pool Shutdown"

ERREUR:

2018-11-12 18:25:31.221  INFO 3028 --- [       Thread-3] 
com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...

2018-11-12 18:25:31.223  INFO 3028 --- [       Thread-3] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.

Pourquoi cette erreur se produit-elle?

Et comment puis-je résoudre?

6
Shale

Mon problème était dans pom.xml non inclus spring-boot-starter-web artifactId

1 - Ajoutez le nouveau dependency ci-dessous à pom.xml.

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>

2 - Allez sur pom.xml avec le bouton droit et continuez avec l'image: enter image description here

1
Abd Abughazaleh

Vérifiez si vous avez une dépendance jpa que vous n'utilisez pas et supprimez-la. ajouter également la dépendance Tomcat et Spring-boot-starter-web

Retirer

<dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>

ajouter sinon ne quitte pas `

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-Tomcat</artifactId>
            <scope>provided</scope>
</dependency>`

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>

        </dependency>
0
mumbasa