基本春季启动应用程序不起作用,显示:无法从进程xxxx刷新实时数据

2022-09-03 07:18:00

我是弹簧靴的初学者。我初始化了一个新项目并尝试运行它,但它无法成功工作。我把它作为弹簧启动应用程序运行,它开始执行。在底部的编译器/状态栏中,它显示处理和重试。它最多10次并抛出以下错误:

无法从进程 xxxx 刷新实时数据

更多细节请点击这里

TanmayTestApplication.java

package com.example.tanmay_test;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class TanmayTestApplication {

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

DemoControler.java

package com.example.cntr;

import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.RequestMapping;

@RestController
public class DemoControler {

    @RequestMapping(path = "/index")
    public String index() {
        return "By Tanmay!";
    }   
}

啪.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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.2.4.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>tanmay_test</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>tanmay_test</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
    </properties>

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

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>

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

</project>


答案 1

我在STS中遇到了同样的问题,并尝试了不同的方法来解决它。弹簧致动器的以下依赖性使该问题消失,但是弹簧致动器的要点提供了比这更多的功能。要了解更多信息,请点击 https://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-features.html

依赖项应添加到 pom.xml 文件中

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

答案 2

我遇到了同样的问题,但设法解决了它。控制器类必须位于相对于该类的“子包”中。TestApplication

在你的情况下,你的类在包中。因此,您的类必须位于包 中。TanmayTestApplicationcom.example.tanmay_testDemoControlercom.example.tanmay_test.xxx

**请注意,xxx 可以是任何东西,但从包扩展而来。例如,包 。com.example.tanmay_testcom.example.tanmay_test.web

希望这有帮助!


推荐