我的主要問題是從一個控制器返回一個字符串的路徑變量值。返回帶有pathvariable到另一個控制器的字符串
在這裏看到:
@RequestMapping(value = "/profile/{location}")
public ModelAndView profile(@PathVariable("location") String location) throws Exception {
return new ModelAndView("profile", "*", *);
}
@RequestMapping(value = "/records", method = "RequestMethod.POST")
public String inRecords(@Valid User user, BindingResult result) {
if(result.hasErrors()) {
return "profile/system";
}
else {
.....
return "somewhere";
}
}
我在這裏的問題是回報 「的個人資料/系統」要WEB-INF /視圖/型材/ system.jsp。我是否做錯了@PathVariable或者與return語句本身?
有什麼建議嗎?
查找到重定向屬性。 –
剛剛嘗試過,但錯誤仍不會顯示。 – user3326270
這些錯誤不僅僅出現在他們自己身上。這取決於你如何使用它們。 –