其他分享
首页 > 其他分享> > 测试开发进阶——spring boot——MVC——get访问

测试开发进阶——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访问如下:

 

 

标签:web,RestController,RequestMapping,get,spring,String,import,public,进阶
来源: https://www.cnblogs.com/xiaobaibailongma/p/15084409.html