启动后立即关闭Spring Boot应用程序

Posted

技术标签:

【中文标题】启动后立即关闭Spring Boot应用程序【英文标题】:Spring boot application shutdown immediate after starting 【发布时间】:2017-01-14 18:30:15 【问题描述】:

我正在尝试构建一个简单的 SpringBoot 应用程序。当我运行我的 Spring Boot 应用程序时,它在启动后立即关闭,下面是控制台日志:

.   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::  (v1.4.1.BUILD-SNAPSHOT)

2016-09-06 18:02:35.152  INFO 22216 --- [           main] com.example.SpringBootDemo1Application   : Starting SpringBootDemo1Application on IN-FMCN882 with PID 22216 (E:\workspace\springBoot\SpringBootDemo1\target\classes started by Rahul.Tyagi in E:\workspace\springBoot\SpringBootDemo1)
2016-09-06 18:02:35.158  INFO 22216 --- [           main] com.example.SpringBootDemo1Application   : No active profile set, falling back to default profiles: default
2016-09-06 18:02:35.244  INFO 22216 --- [           main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@14dd9eb7: startup date [Tue Sep 06 18:02:35 IST 2016]; root of context hierarchy
2016-09-06 18:02:36.527  INFO 22216 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Registering beans for JMX exposure on startup
2016-09-06 18:02:36.546  INFO 22216 --- [           main] com.example.SpringBootDemo1Application   : Started SpringBootDemo1Application in 1.781 seconds (JVM running for 2.376)
2016-09-06 18:02:36.548  INFO 22216 --- [       Thread-1] s.c.a.AnnotationConfigApplicationContext : Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@14dd9eb7: startup date [Tue Sep 06 18:02:35 IST 2016]; root of context hierarchy
2016-09-06 18:02:36.550  INFO 22216 --- [       Thread-1] o.s.j.e.a.AnnotationMBeanExporter        : Unregistering JMX-exposed beans on shutdown

下面是我的代码:

SpringBootDemo1Application.java

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Configuration
@EnableAutoConfiguration
@ComponentScan
@Controller
public class SpringBootDemo1Application 


    @ResponseBody
    @RequestMapping("/")
    public String entry()
        return "My spring boot application";
    

    public static void main(String[] args) 
        SpringApplication.run(SpringBootDemo1Application.class, args);
    

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.example</groupId>
    <artifactId>demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.4.1.BUILD-SNAPSHOT</version>
        <relativePath /> <!-- lookup parent from repository -->
    </parent>

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

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

我想保持服务器运行,以便客户端可以点击它进行响应。 请提出建议。

【问题讨论】:

您是否尝试了正确的发布版本? 1.4.0.RELEASE for spring boot starter? 是否也可以尝试执行命令“mvn dependency:tree”,并验证项目中是否存在tomcat依赖。 你是如何运行应用程序的? @kuhajeyan 我正在使用 Eclipse STS,我在其中将我的项目作为“Spring Boot App”运行 安装 maven,然后运行你的应用程序 mvn spring-boot:run。看看是否得到同样的错误。你的设置看起来不错。但最好将控制器类与主启动应用程序分开 【参考方案1】:

我能想到的唯一可能的解释是tomcat嵌入式jar不包含在依赖项/jar中。由于您已经定义了“spring-boot-starter-web”依赖项,它应该也可以传递地提取嵌入式 tomcat 依赖项。但不知何故,它被排除在外。

要尝试的东西。

    执行“mvn dependency:tree”并检查tomcat依赖是否存在并在“compile”范围内 将 spring boot starter 版本更改为 1.4.0.RELEASE。

【讨论】:

tomcat 依赖存在,在执行“mvn dependency:tree”命令之前和之后 将spring boot starter版本改为1.4.0.RELEASE后,开始显示编译错误“can not resolve class ComponentScan, Component, Configuration”。 执行“mvn clean install”,以便 maven 下载新版本所需的 jar。如果错误仍然存​​在,您能否将导入语句也粘贴到您的类中。 没关系,但您可以删除 (Configuration,ComponentScan,Configuration) 并仅添加 SpringBootApplication。相同,如in the doc 所述 mvn clean install 的输出是什么?构建成功还是构建失败?如果成功,您将在 /target/ 目录中创建您的 jar。然后你可以执行“mvn spring-boot:run”来启动你的spring boot应用程序。【参考方案2】:

如果我们不使用 .RELEASE 版本的 spring,我们需要在 pom.xml 文件中添加以下存储库。

我们可以使用命令“mvn spring-boot:run”从命令行运行我们的spring应用程序。

<!-- (you don't need this if you are using a .RELEASE version) -->
<repositories>
        <repository>
            <id>spring-snapshots</id>
            <url>http://repo.spring.io/snapshot</url>
            <snapshots><enabled>true</enabled></snapshots>
        </repository>
        <repository>
            <id>spring-milestones</id>
            <url>http://repo.spring.io/milestone</url>
        </repository>
    </repositories>
    <pluginRepositories>
        <pluginRepository>
            <id>spring-snapshots</id>
            <url>http://repo.spring.io/snapshot</url>
        </pluginRepository>
        <pluginRepository>
            <id>spring-milestones</id>
            <url>http://repo.spring.io/milestone</url>
        </pluginRepository>
    </pluginRepositories>

【讨论】:

【参考方案3】:

为我解决的问题是更新 pom.xml 中的“父”引用。

这是我的工作 pom.xml:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.boot</groupId>
<artifactId>project-boot</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.1.RELEASE</version>
</parent>

<name>project-boot</name>
<url>http://maven.apache.org</url>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

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

【讨论】:

【参考方案4】:

当我按如下方式更改 Spring Boot 版本时它起作用了:

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.4.0.RELEASE</version>
  </parent> 

【讨论】:

但是为什么在2.1.x版本的Spring boot上不行呢?【参考方案5】:

尝试在“resources”文件夹中的application.properties 文件中添加server.port=someAvailablePortNumber

我也面临同样的问题。尝试了 pom.xml 文件中建议的很多更改,但对我没有任何效果。在我的情况下,端口 8080 不可用,因此应用程序无法使用默认端口(即:8080)启动 tomcat,导致它立即关闭。

更改端口号有助于启动 tomcat 和应用程序开始工作。希望对你有帮助:)

【讨论】:

【参考方案6】:

在您的主函数“SpringApplication.run(Main.class, args.close());”中不应该在 close ,它应该像 "SpringApplication.run(Main.class, args);"

例子:

@SpringBootApplication
public class Main
  public static void main(String[] args) 
    SpringApplication.run(Main.class, args);
  

【讨论】:

【参考方案7】:

检查您的日志配置,也许您正在尝试将日志保存到无法创建的文件夹中。

<appender name="allFileAppender" class="ch.qos.logback.core.rolling.RollingFileAppender">
        <file>/var/log/app/all.log</file>
         ...
</appender>

【讨论】:

【参考方案8】:

我也遇到了同样的问题,我的操作系统是win7,我的ide是eclipse,将spring boot版本改成1.5.7.release后,一切正常。

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.7.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>
<dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
</dependency>

我试过spring boot 2.0.2.release、1.5.13.release、1.5.1.release,它们都不能在我的win7操作系统上使用eclipse运行,但他们可以使用命令行和mvn运行我的ubuntu16.04用同样的代码编译。

【讨论】:

【参考方案9】:

清除我的本地 Maven 存储库为我解决了这个问题。最简单的方法是删除~/.m2/repository

【讨论】:

这与此答案相同的解决方案:***.com/a/44587573/9910【参考方案10】:

删除了 spring-boot-starter-tomcat 依赖并且它工作了。

【讨论】:

以上是关于启动后立即关闭Spring Boot应用程序的主要内容,如果未能解决你的问题,请参考以下文章

如何防止 Spring Boot 守护程序/服务器应用程序立即关闭/关闭?

为啥 Spring Boot web app 启动后会立即关闭?

启动后立即关闭Spring cloud config客户端

为啥我的基本 Spring Boot 应用程序在构建后立即崩溃?

Spring Boot的应用启动与关闭

如何在spring boot启动期间关闭应用程序