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



浙公网安备 33010602011771号