基本的Spring Boot应用程序无法正常工作,显示:无法刷新来自进程xxxx的实时数据


9

我是春季靴的初学者。我初始化了一个新项目并尝试运行它,但是它无法成功运行。当我将其作为spring boot应用程序运行时,它开始执行。在底部的编译器/状态栏中,它显示处理和重试。它最多上升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!";
    }   
}

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 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>

如果更改了pom,请尝试maven>更新项目。否则执行> maven clean运行,然后> maven install运行,然后尝试再次运行。更不用说,还要检查您的互联网连接。
阿杰·库玛

@AjayKumar当我以> maven clean身份运行并以> maven install身份运行时,它显示警告:[WARNING] The requested profile "pom.xml" could not be activated because it does not exist.但是pom.xml存在,如您在上面的问题中看到的那样。
Vinay Vaishnav

右键单击项目。属性>单击Maven节点。从活动Maven配置文件中删除pom.xml。应用并关闭。你应该很好。
阿杰·库玛

1
大家好!我在这里遇到了相同的问题,做了与上述相同的操作,但是仍然在运行我的应用程序时仍然收到相同的消息。看起来该应用程序目前没有任何故障,但是恐怕将来它会变得越来越大,因此它会显示故障,因此我正在寻找解决方案。还有其他解决方法吗?
Luiz Henrique Carneiro Gonalve

Answers:


4

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

就您而言,您的TanmayTestApplication课程在package中com.example.tanmay_test。因此,您的DemoControler班级必须在package中com.example.tanmay_test.xxx

**请注意,xxx可以是package以外的任何东西com.example.tanmay_test。例如,package com.example.tanmay_test.web

希望这可以帮助!


我尝试了您的解决方案,但是没有运气。它仍然抛出相同的错误。
罗杰


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>


0

在文件application.properties(src / main / resources)中添加以下行:

spring.devtools.livereload.enabled = true

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.