web-dev-qa-db-ja.com

IntelliJプロセスは、スプリングブートの実行時に終了コード0で終了しました

IntelliJ-Ideaからスプリングブートアプリケーションを起動すると問題が発生します。ターミナルを介してアプリケーションを実行する場合、この問題は発生しません。

:: Spring Boot ::        (v1.2.1.RELEASE)

2015-09-24 12:22:44.274  WARN 22380 --- [           main] n.sf.ehcache.config.CacheConfiguration   : Cache 'publicationsCount' is set to eternal but also has TTI/TTL set.  To avoid this warning, clean up the config removing conflicting values of eternal, TTI and TTL. Effective configuration for Cache 'publicationsCount' will be eternal='true', timeToIdleSeconds='0', timeToLiveSeconds='0'.

Process finished with exit code 0

この警告は原因ではないと思います。理由は何ですか?

28
Greg Zuber

提供spring-boot-starter-Tomcat依存関係のスコープを削除すると役立ちます。

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