intellij-idea Springboot应用程序立即退出

wfauudbj  于 2022-11-01  发布在  Spring
关注(0)|答案(6)|浏览(217)

当我运行我的spring boot应用程序时,它立即退出(使用exit code 0),并显示以下内容:

\\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v2.1.0.RELEASE)

2018-11-27 14:08:31.219  INFO 94920 --- [  restartedMain] c.springbootsecurity.jwt.JwtApplication  : Starting JwtApplication on 1000810002637M.local with PID 94920 (/Users/723305/Documents/spring/springbootSecure/target/classes started by 723305 in /Users/723305/Documents/spring/springbootSecure)
2018-11-27 14:08:31.222  INFO 94920 --- [  restartedMain] c.springbootsecurity.jwt.JwtApplication  : No active profile set, falling back to default profiles: default
2018-11-27 14:08:31.252  INFO 94920 --- [  restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2018-11-27 14:08:31.722  INFO 94920 --- [  restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2018-11-27 14:08:31.743  INFO 94920 --- [  restartedMain] c.springbootsecurity.jwt.JwtApplication  : Started JwtApplication in 0.752 seconds (JVM running for 1.294)

Process finished with exit code 0

我的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.springbootSecurity</groupId>
    <artifactId>jwt</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>jwt</name>
    <description>Demo project for Spring Boot</description>

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

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>

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

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

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

        </plugins>
    </build>        
</project>
hgtggwj0

hgtggwj01#

由于您在pom.xml中进行了 Spring Boot ,因此您没有将其声明为启动器Web项目,它将立即关闭,这是预期行为,现在要作为Web容器运行,您需要在pom.xml中添加以下代码。

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

eivgtgni2#

我刚刚遇到了IntelliJ的问题(即使是spring-boot-starter-web),通过编辑启动器并选中Include dependencies with "Provided" scope选项来解决它。
Web应用程序从命令行运行正常。

vshtjzan

vshtjzan3#

我看不出有什么问题。

Process finished with exit code 0

这表示过程圆满结束。
如果您的应用程序没有spring-boot-starter-web依赖关系,那么它不会启动任何服务器,也不会等待任何请求。
它非常类似于main方法,它没有任何要执行的内容,或者在main代码完成后立即完成。

wd2eg0qa

wd2eg0qa4#

我遇到了同样的问题。没有一个依赖项像spring-boot-starter-web或删除依赖项spring-boot-starter-tomcat不起作用。我使用的是IntelliJ Idea IDE社区版本。我认为这与IntelliJ Idea社区版本有关,因为他们提到社区版本不支持Spring,只有最终(商业)版本才支持Spring,至少对于mac来说是这样。
https://www.jetbrains.com/idea/download/#section=mac
我的想法的原因,因为我切换到visual studio代码,安装了必要的插件,为Spring Boot 和它的工作开箱即用,与我现有的pom.xml文件。
我目前的相依性为:

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-tomcat</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <scope>runtime</scope>
        <optional>true</optional>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>

可能值得一提的是,没有spring-boot-starter-tomcat依赖也能工作。

qnzebej0

qnzebej05#

我最近用spring initializer创建了一个项目,在IntelliJ上选中了“Spring Web”选项,它添加了这个依赖项:

<dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
            <version>6.0.0-M4</version>
        </dependency>

我把它换成了

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

如果您遇到了同样的问题,并且最近在IntelliJ上创建了一个项目,则可能需要替换该依赖项。

igsr9ssn

igsr9ssn6#

请确保运行Maven Build以安装所有依赖项

相关问题