我是否需要单独为Spring-boot项目安装Tomcat?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我是否需要单独为Spring-boot项目安装Tomcat?相关的知识,希望对你有一定的参考价值。
我有一个spring-boot项目,我有以下设置:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<!--<scope>provided</scope>-->
</dependency>
我问这个的原因是,有一次我可以在IntelliJ IDE和终端(mvn spring-boot:run)中运行我的web(war包)应用程序来启动应用程序,然后我可以使用localhost发送http请求宁静的服务。我没有单独安装Tomcat。
经过一段时间,我仍然可以在IntelliJ中成功运行我的Web应用程序,但无法通过“mvn spring-boot:run”运行它。我想这是由于我的pom文件中的一些变化。错误消息似乎与Tomcat相关:
[WARNING]
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke (Method.java:498)
at org.springframework.boot.maven.AbstractRunMojo$LaunchRunner.run (AbstractRunMojo.java:506)
at java.lang.Thread.run (Thread.java:748)
Caused by: org.springframework.context.ApplicationContextException: Unable to start embedded container; nested exception is org.springframework.boot.context.embedded.EmbeddedServletContainerException: Unable to start embedded Tomcat
at org.springframework.boot.context.embedded.EmbeddedWebApplicationContext.onRefresh (EmbeddedWebApplicationContext.java:137)
at org.springframework.context.support.AbstractApplicationContext.refresh (AbstractApplicationContext.java:536)
at org.springframework.boot.context.embedded.EmbeddedWebApplicationContext.refresh (EmbeddedWebApplicationContext.java:122)
at org.springframework.boot.SpringApplication.refresh (SpringApplication.java:761)
at org.springframework.boot.SpringApplication.refreshContext (SpringApplication.java:371)
at org.springframework.boot.SpringApplication.run (SpringApplication.java:315)
at org.springframework.boot.SpringApplication.run (SpringApplication.java:1186)
at org.springframework.boot.SpringApplication.run (SpringApplication.java:1175)
at com.jd.jnlu.qe.boot.JnluQEWebStart.main (JnluQEWebStart.java:22)
at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke (Method.java:498)
at org.springframework.boot.maven.AbstractRunMojo$LaunchRunner.run (AbstractRunMojo.java:506)
at java.lang.Thread.run (Thread.java:748)
Caused by: org.springframework.boot.context.embedded.EmbeddedServletContainerException: Unable to start embedded Tomcat
如果我在我的机器上安装Tomcat以便能够通过'mvn spring-boot:run'运行它会有帮助吗?另外,目前我没有安装Tomcat或Apache服务器,我是否可以在IntelliJ中成功运行Web应用程序?
您已注释掉为tomcat提供的范围。在该状态下,它默认为编译范围,这意味着当您启动应用程序时,它将在类路径中可用(无论您使用哪种方法)。
当您取消注释它并将其放到提供的作用域时,这意味着它只能在编译时可用,并且您希望JDK或容器提供对类路径的依赖性。如果将它部署到tomcat的独立实例,这是有意义的。
就像JB Nizet已经说过的那样,Spring-boot使用并启动了一个嵌入式tomcat容器。但为了做到这一点,它需要依赖!
正如其他人所建议的那样,您应该阅读spring-boot的文档以了解它是如何工作的。为了帮助您入门:这是一个很好的操作方法,解释了使用maven https://docs.spring.io/spring-boot/docs/current/reference/html/getting-started-first-application.html#getting-started-first-application-run运行spring-boot应用程序的基础知识希望您能够从那里重新生成它。
请注意,spring-boot-starter-web依赖于spring-boot-starter-tomcat!
以上是关于我是否需要单独为Spring-boot项目安装Tomcat?的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Spring-Boot 项目中为电话号码身份验证创建 REST API?
解决spring-boot启动异常Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContain
Spring-boot2.0.1.BUILD-SNAPSHOT整合Elasticsearch报failed to load elasticsearch nodes错误解决办法