Java教程

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

本文主要是介绍# 《慕慕到家》家政小#程序组件化进阶实战,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

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

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

}
这篇关于# 《慕慕到家》家政小#程序组件化进阶实战的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!