|
@@ -6,4 +6,9 @@ import org.springframework.web.bind.annotation.RestController;
|
|
@RestController
|
|
@RestController
|
|
@RequestMapping("/health")
|
|
@RequestMapping("/health")
|
|
public class HealthController {
|
|
public class HealthController {
|
|
|
|
+
|
|
|
|
+ @RequestMapping("/check")
|
|
|
|
+ public String check(){
|
|
|
|
+ return "success"+System.currentTimeMillis();
|
|
|
|
+ }
|
|
}
|
|
}
|