编程语言
首页 > 编程语言> > # 《慕慕到家》家政小#程序组件化进阶实战

# 《慕慕到家》家政小#程序组件化进阶实战

作者:互联网

# 《慕慕到家》家政小#程序组件化进阶实战

> 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";
    }

}

标签:web,进阶,慕慕,springframework,org,test,import,annotation,家政
来源: https://blog.51cto.com/u_15063244/2895199