赞
踩
原先一直使用springboot,请求路径直接写在@RequestMapping、@GetMapping等注解中,最近,有个比较有趣的发现,原来请求的url其实也可以写在项目的配置文件application.properties或者application.yml,下面记录一下,分享一下。
在配置文件中设置请求路径,我使用yml格式配置文件application.yml
my:
demo:
path: /my/demo/path/hello
然后,创建一个controller的demo,UrlTestController.java
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class UrlTestController {
@GetMapping("${my.demo.path}")
public String hello() {
return "SUCCESS";
}
}
启动springboot项目,访问我们配置的路径 /my/demo/path/hello ,查看运行结果:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。