Compare commits
No commits in common. "xlc" and "main" have entirely different histories.
|
|
@ -0,0 +1,18 @@
|
||||||
|
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 项目启动成功";
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue