我从4天开始就一直在苦苦挣扎,但是没有找到如何将Spring Boot中的url与gradle绑定的解决方案。
我有一个网址为http://loalhost:8080/blog/post.html?pid=2&ptitle=abc
我希望这个网址用html和(?)显示如下, http://localhost:8080/blog/post/2/abc
有没有办法做到这一点。我不想使用tucky urlrewriter。我的所有html文件都放在webapp文件夹中。
先谢谢。
答案 0 :(得分:0)
如果您的@RestController
中有POST方法来创建帖子博客:
@PostMapping("/blog/post/{pid}/{ptitle}")
public void create(@PathVariable("pid") String pid, @PathVariable("ptitle") String ptitle) {
// a repo save call
}
(我认为你使用的是最后一个春季启动版本)