package com.softegg.freetogo; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; /** * @description:测试 * @author:zhanglinhao * @date:2024/5/7 23:40 */ @RestController public class helloController { @GetMapping("/hello") public String hello() { return "hello world!"; } }