AI分析中心服务
This commit is contained in:
@@ -0,0 +1,16 @@
|
|||||||
|
package com.volvo.ai.analytic.center.controller;
|
||||||
|
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
|
||||||
|
@Slf4j
|
||||||
|
@RestController
|
||||||
|
public class HealthController {
|
||||||
|
|
||||||
|
@GetMapping("/actuator/health")
|
||||||
|
public void healthCheck() {
|
||||||
|
log.info("health check success");
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user