Compare commits

...

1 Commits
main ... xlc

Author SHA1 Message Date
xuliangchao dc6a4bb671 fix: 去掉demo 2026-04-29 15:28:28 +08:00
1 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
package com.example.demo.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @Description
* @Date 2026/4/28
* @author xuliangchao
*/
@RestController
public class TestController {
@GetMapping("/getTest")
public String getTest() {
return "Spring Boot 项目启动成功";
}
}