Spring Boot - Actuator
Given this custom endpoint class, what will be the HTTP response body when accessing the endpoint?
@Endpoint(id = "status")
public class StatusEndpoint {
@ReadOperation
public String getStatus() {
return "UP";
}
}