com.yanyun.cloud.PingPong Maven / Gradle / Ivy
package com.yanyun.cloud;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 心跳监测
*/
@RestController
public class PingPong {
@GetMapping("/ping")
public String ping(){
return "pong";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy