1. アプリケーションのクローンを作成します
git clone https://github.com/callicoder/spring-boot-actuator-demo.git
2. Maven を使用してアプリをビルドして実行する
mvn package
java -jar target/actuator-demo-0.0.1-SNAPSHOT.jar
あるいは、次のようにパッケージ化せずにアプリを直接実行することもできます。
mvn spring-boot:run
アプリは http://localhost:8080 で実行を開始します。
すべてのアクチュエータ エンドポイントは http://localhost:8080/actuator で利用可能になります。
一部のアクチュエーター エンドポイントは、Spring Security の HTTP Basic 認証で保護されています。 http 基本認証にはユーザー名actuator
とパスワードactuator
使用できます。