基本的なスプリングブートアプリが機能せず、表示:プロセス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を試してください。または、run as> maven clean and run as> maven installを実行してから、もう一度実行してみてください。言うまでもなく、インターネット接続も確認してください。
Ajay Kumar

@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を削除します。適用して閉じます。あなたは行ってもいいはずです。
Ajay Kumar

1
やあみんな!私は同じ問題でここに着き、上記と同じことをしましたが、それでも私のアプリケーションを実行しているとき、私はまだ同じメッセージを受け取ります。現在のところ、アプリケーションに障害は発生していないようですが、アプリケーションが大きくなると、将来的に障害が発生する可能性があるため、解決策を探しています。それを修正する方法に関する他のアイデアはありますか?
Luiz Henrique Carneiro Gonalve

回答:


4

同じ問題に直面しましたが、なんとか解決しました。コントローラクラスは、TestApplicationクラスに関連する「子パッケージ」内にある必要があります。

あなたの場合、あなたのTanmayTestApplicationクラスはパッケージにありますcom.example.tanmay_test。したがって、DemoControlerクラスはパッケージ内になければなりませんcom.example.tanmay_test.xxx

** xxxはパッケージからの拡張以外であれば何でもかまいません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

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.