# 《慕慕到家》家政小#程序组件化进阶实战
# 《慕慕到家》家政小#程序组件化进阶实战> v: ititit111222333
package com.project.rbac.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @author mark
* @date 2021/6/10 0010 23:23
*/
@RestController
@RequestMapping("/api")
public class TestController {
@GetMapping("/test")
public String test() {
return "test is ok";
}
}
页:
[1]