如何确定访问路径

@RestController
@RequestMapping("/district")
public class DistrictController extends BaseController{
	@Autowired
	private IDistrictService districtService;
	@RequestMapping("/list{parent}")
	public ResponseResult<List<District>> getListByParent(@PathVariable("parent") String parent){
		List<District> list=districtService.getListByParent(parent);
		return new ResponseResult<>(SUCCESS, list);
	}
}

![当路径及注解为如图所示时](https://www.icode9.com/i/ll/?i=20190711151855506.png
访问的路径为http://localhost:8080/district/list?parent=86

如何确定访问路径
访问的路径为http://localhost:8080/district/list/86

上一篇:mysql 常用聚合函数


下一篇:文字居中的两种方案--静态文字--动态文字