แอพ spring boot พื้นฐานไม่ทำงานแสดง: ไม่สามารถรีเฟรชข้อมูลสดจากกระบวนการ xxxx


9

ฉันเป็นผู้เริ่มต้นสำหรับการบูตฤดูใบไม้ผลิ ฉันเริ่มต้นโครงการใหม่และพยายามเรียกใช้ แต่ไม่ทำงานสำเร็จ เมื่อฉันเรียกใช้สิ่งนี้เป็นแอพพลิเคชั่นสปริงบูตมันจะเริ่มทำงาน ในแถบคอมไพเลอร์ / สถานะด้านล่างจะแสดงการประมวลผลและลองใหม่ มันเกิน 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> Update Project ทำการรันเป็น> maven ให้ล้างและเรียกใช้เป็น> maven ติดตั้งแล้วลองเรียกใช้อีกครั้ง ไม่ต้องพูดถึงตรวจสอบการเชื่อมต่ออินเทอร์เน็ตของคุณด้วย
Ajay Kumar

@AjayKumar เมื่อฉันเรียกใช้เป็น> maven ให้ล้างและเรียกใช้เป็น> การติดตั้ง maven มันจะแสดงคำเตือน: [WARNING] The requested profile "pom.xml" could not be activated because it does not exist.แต่ pom.xml มีอยู่ตามที่คุณเห็นในคำถามข้างต้น
Vinay Vaishnav

คลิกขวาที่โครงการ คุณสมบัติ> คลิกโหนด Maven ลบ pom.xml จาก Active Maven Profiles ใช้และปิด คุณควรจะไปดี
Ajay Kumar

1
ไงพวก! ฉันมาที่นี่ด้วยปัญหาเดียวกันทำเช่นเดียวกับที่กล่าวข้างต้น แต่ยังเมื่อใช้ใบสมัครของฉันฉันยังได้รับข้อความเดียวกัน ดูเหมือนว่าแอปพลิเคชั่นอย่างที่เป็นอยู่ตอนนี้ไม่มีความล้มเหลว แต่ฉันกลัวว่ามันจะแสดงความล้มเหลวในอนาคตเมื่อมันใหญ่ขึ้นดังนั้นฉันจึงมองหาวิธีแก้ปัญหา แนวคิดอื่น ๆ เกี่ยวกับวิธีการแก้ไขหรือไม่
Luiz Henrique Carneiro Gonalve

คำตอบ:


4

ฉันประสบปัญหาเดียวกัน แต่จัดการเพื่อแก้ไขมัน คลาสตัวควบคุมต้องอยู่ใน "child package" ที่สัมพันธ์กับTestApplicationคลาส

ในกรณีของคุณคุณเรียนในแพคเกจTanmayTestApplication com.example.tanmay_testดังนั้นคุณชั้นจะต้องเป็นภายในแพคเกจDemoControlercom.example.tanmay_test.xxx

** หมายเหตุว่า xxx สามารถเป็นอะไรก็ได้ com.example.tanmay_testแต่ยื่นออกมาจากแพคเกจ com.example.tanmay_test.webยกตัวอย่างเช่นแพคเกจ

หวังว่านี่จะช่วยได้!


ฉันลองวิธีแก้ปัญหาของคุณ แต่ไม่มีโชค มันยังคงโยนข้อผิดพลาดเดียวกัน
Roger

1

มีการรวบรวมข้อมูลสดด้วยความช่วยเหลือของ Spring Actuator

คุณต้องรวมการพึ่งพาต่อไปนี้ใน pom.xml ของคุณ

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

ดูhttps://github.com/spring-projects/sts4/wiki/Live-Application-Information#application-requirements-for-spring-boot-projectsสำหรับการอ้างอิง


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

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.