| 123456789101112131415161718192021 |
- package com.tzld.ffmpeg.controller;
- import com.tzld.ffmpeg.annotation.NoRequestLog;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- @RestController
- @RequestMapping("/")
- public class HealthController {
- /**
- * 探活
- * @return
- */
- @GetMapping("/healthcheck")
- @NoRequestLog
- public String healthcheck() {
- return "ok";
- }
- }
|