我已經使用eclipse IDE創建了spring rest服務。當我運行但是使用調試配置,它可以在Eclipse中正常,當我出口它作爲一個可執行的JAR文件並運行使用下面的命令Spring引導jar無法啓動嵌入式tomcat
java -jar cs.jar
它給了我下面的錯誤:
org.springframework.context.ApplicationContextException: Unable to start embedde
d container; nested exception is org.springframework.boot.context.embedded.Embed
dedServletContainerException: Unable to start embedded Tomcat
at org.springframework.boot.context.embedded.EmbeddedWebApplicationConte
xt.onRefresh(EmbeddedWebApplicationContext.java:124)
at org.springframework.context.support.AbstractApplicationContext.refres
h(AbstractApplicationContext.java:474)
at org.springframework.boot.context.embedded.EmbeddedWebApplicationConte
xt.refresh(EmbeddedWebApplicationContext.java:109)
爲什麼它不工作作爲一個罐子?
請所有的日誌輸出 –