我是春季靴子的新手。
我正在尝试运行一个非常基本的spring-boot应用程序" Hello World"
当我导航到pom.xml
文件并运行mvn clean install
时,它会构建
很好,并创建jar文件。
然而,当我尝试在Eclipse中运行它时,它挂起在这一行:
Apr 22, 2017 11:54:40 PM org.apache.catalina.core.StandardService startInternal INFO: Starting service Tomcat
Apr 22, 2017 11:54:40 PM org.apache.catalina.core.StandardEngine startInternal INFO: Starting Servlet Engine: Apache Tomcat/8.5.14
Apr 22, 2017 11:54:40 PM org.apache.catalina.core.ApplicationContext log INFO: Initializing Spring embedded WebApplicationContext
我在SLF4J上遇到很多问题,因为它没有正确编译, 我将它排除在logback-classic之外。
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>