在簽名中沒有RedirectAttributes的方法中可以訪問RedirectAttributes嗎?例如,如下面的覆蓋方法:在簽名中沒有RedirectAttributes的方法中訪問RedirectAttributes
@Override
public void onAuthenticationSuccess(final HttpServletRequest req, final HttpServletResponse res,
final Authentication auth) throws IOException, ServletException {
// add something to RedirectAttributes here
// redirectAttributes.addFlashAttribute("attr", "value");
super.onAuthenticationSuccess(req, res, auth);
}
我正在使用spring 3.2.2.RELEASE。
你打算如何處理屬性? – Ivan 2015-02-06 13:40:50
@Ivan我需要他們補充說明客戶第一次登陸主頁。 – lolotron 2015-02-06 13:43:07
對不起,顯然我不清楚這個問題:你打算使用什麼RedirectAttributes方法?添加/ getFlashAttributes?我問,因爲有直接訪問flash屬性的方法,其他參數可以作爲請求參數。 – Ivan 2015-02-06 13:45:50