I would like have a health indicator in my configuration o spring boot. But I haven't managed it work. I have the next class, with @component, but when I written the url http://"mydomain"/admin/health, or http://"mydomain"/health my application doesn't retrieve anything.
@Component
public class DBHealthIndicator extends AbstractHealthIndicator {
private final AccountsService accountsService;
@Autowired
public DBHealthIndicator(AccountsService accountsService) {
if (accountsService == null) {
throw new IllegalArgumentException(
"An AccountsService is mandatory.");
}
this.accountsService = accountsService;
}
@Override
protected void doHealthCheck(Builder builder) throws Exception {
if (accountsService.getAccounts(1, 1)!= null){
builder.up();
}else{
builder.down();
}
}
}
Anyboyd can help me?
Thank you
Update:
Here my application.yml
server: servlet-path: /api port: 8080
mongodb: host: conexion port: 27017 databaseName: abc #uri: conexion
management: context-path: /admin
endpoints: health: enabled: yes shutdown: enabled: yes
logging: # Enable this to specify the path and the name of the log file. By default, it creates a # file named spring.log in the temp directory. file: /tmp/abc.log
level: com.abc: INFO
By default spring boot configure application to be accessible on the 8080 port. If you didn't specify the port then your health service URL is http://your.domain.com:8080/health.
If you configure you application to be accessible on 80 port then check management configuration:
By default management.port uses the same port as application.
Required project dependencies:
After you add these dependencies and turn on security in application.properties (or yml) you will see the following endpoints registered:
If you don't see them in startup log -- then you did something wrong and you need to come back and check that you have both project dependencies and that security module is turned on.
Useful links:
http://spring.io/guides/gs/spring-boot/ -- look for the section called: "Add production-grade services"