Redirect Controller URL Spring Boot

问题描述 投票:0回答:1

(第一个URL)我有这样的网址,并按ID显示一些数据

http://local/application/?id=123321

(第二个URL)现在,如果我单击详细数据,像这样的URL

http://local/application/detailData/?id=5330&detail=1183

现在我要单击批准按钮或返回按钮到第一个URL(http://local/application/?id=123321

下面您可以看到我的控制器

@PostMapping("/approve")
public String approveDetail() {
    return "pages/application/id=123321"; -> how i can fix this line
}

由于ID是我如何发送ID

${#authentication.getPrincipal().getUsername()})}
java spring url redirect thymeleaf
1个回答
0
投票
 @GetMapping
 public ModelAndView approveDetail() {
   return new ModelAndView("redirect:/pages/application/id=123321");
 }

使用ModelAndView

© www.soinside.com 2019 - 2024. All rights reserved.