mirror of
https://gitee.com/yudaocode/SpringBoot-Labs.git
synced 2026-09-03 13:57:29 +08:00
19 lines
382 B
Java
19 lines
382 B
Java
package lab01.resource.api;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
/**
|
|
* 示例模块 Controller
|
|
*/
|
|
@RestController
|
|
@RequestMapping("/api/example")
|
|
public class ExampleController {
|
|
|
|
// @CrossOrigin
|
|
@RequestMapping("/hello")
|
|
public String hello() {
|
|
return "world";
|
|
}
|
|
|
|
} |