私は春MVC Webアプリケーションを持っています。私はそれに以下のように依存関係を追加することでスプリングブートアクチュエータを使用しました。Spring MVCアプリケーションをSpringBoot管理者に登録するには
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-actuator</artifactId>
<version>1.4.0.RELEASE</version>
</dependency>
私の設定ファイルでは、以下のようにクラスをインポートしました。
今@Configuration
@ComponentScan({"com.test.*"})
@Import({EndpointWebMvcAutoConfiguration.class,
ManagementServerPropertiesAutoConfiguration.class, EndpointAutoConfiguration.class,
HealthIndicatorAutoConfiguration.class,PublicMetricsAutoConfiguration.class})
@EnableWebMvc
@PropertySource("classpath:appconfig.properties")
public class SpringWebConfig extends WebMvcConfigurerAdapter {
}
私はURLを打つ "http://localhost:8080/health"、私は応答
ので{"status":"UP","diskSpace":{"status":"UP","total":493767094272,"free":417100754944,"threshold":10485760}}
を取得しています、これは完璧に動作します。今私の質問は、spring-boot-adminサーバーにこの春のMVC Webアプリケーションを登録する方法です。
誰でも手伝ってもらえますか?
[documentation](http://codecentric.github.io/spring-boot-admin/1.4.1/#getting-started)とは何ですか? –
私はその部分を行い、文書に従ってアプリケーションに適用しましたが、エラーは表示されず、管理サーバーにも登録されていません。 – Harshil