测试开发进阶——spring boot——MVC——get访问

控制器——控制页面访问

package com.awaimai.web;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class kzq
{
    @RequestMapping("/123")
    public String testweb01()
    {
        return "abc";
    }

    @RequestMapping("/1234")
    public String testweb02()
    {
        return "123abc";
    }

}

web访问如下:

原文地址:https://www.cnblogs.com/xiaobaibailongma/p/15084409.html