我是新來的Tomcat,小服務程序和Spring Web裏面的會話cookie。我來自PHP背景,所以我有點迷失方向,至少可以說。我想要一個控制器爲我創建一個會話cookie。創建控制器
我已經告訴我可以在一個標準的servlet像這樣的會議:
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
// Somewhere inside the method...
HttpSession session = request.getSession(true);
// Set a cookie
session.setAttribute("hello", "world");
// More stuff...
}
這是如何轉化爲做事的Spring Web MVC框架的方式?我可以在控制器內創建會話cookie嗎?
您鏈接到2.5.X文檔。你的意思是http://static.springsource.org/spring/docs/3.0.x/reference/beans.html#beans-factory-scopes-other? – Pieter 2011-05-01 10:33:26
應該不重要(我在Google上找到的第一個),但我將鏈接固定爲3.0,謝謝。 – 2011-05-01 11:21:38