13

我是 Spring MVC 的新手,并开始按照我所学的内容制作示例应用程序。我计划在 Spring MVC 中实现 Session 管理。我发现这个很有帮助。

但我无法清楚地得到它。我们向会话添加值,例如

HttpSession session = request.getSession(false);
session.setAttribute("key", value);
session.setAttribute("key1",  value1);

稍后我们根据键获取值,例如

session.getAttrubute("key");

但是在 Spring MVC 中,我看不到任何类似的东西,这完全让我感到困惑。

@Controller
@SessionAttributes("thought")
public class SingleFieldController {

    @RequestMapping(value="/single-field")
    public ModelAndView singleFieldPage() {
        return new ModelAndView("single-field-page");
    }

    @RequestMapping(value="/remember")  
    public ModelAndView rememberThought(@RequestParam String thoughtParam) {
        ModelAndView modelAndView = new ModelAndView();
        modelAndView.addObject("thought", thoughtParam);
        modelAndView.setViewName("single-field-page");
        return modelAndView;
    }

}

在上面的代码 @SessionAttributes("thought")中完全让我感到困惑,就像这个thought定义的一样,我也不需要返回 a ModelAndView,因为我正在使用backbone.marionette.js

那么如何在会话中设置值并在需要时使用它们呢?我还必须将会话对象转换为我的用户定义对象,因为在将值返回到屏幕时,我只返回会话中可用的用户定义对象列表。

所以请帮助我更好地理解它。也许我对我使用 jsp/servlet 的方式感到困惑。

更新

以下是我拥有的控制器并提供了评论

package com.hexgen.puppet;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.SessionAttributes;

import com.hexgen.puppet.CreatePuppet;

import java.util.ArrayList;
import java.util.List;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;

@Controller
public class PuppetService {

    @RequestMapping(method = RequestMethod.POST, value = "/create")
    public @ResponseBody
    void createOrder(@RequestBody CreatePuppet request) {
        //logic to add/update values in session
    }

    @RequestMapping(method = RequestMethod.GET, value = "/list")
    public @ResponseBody
    List<Puppet> getGroups() {
        //logic to retrive objects from session and convert it as List and send it back

        return puppets;
    }


}

并在需要时转换对象并继续

4

2 回答 2

14

@SessionAttributes并没有完全取代传统的HttpServlet会话管理。如果两个或多个 Controller 方法需要通信某些数据,请使用它。但是,使用它我们只能在单个控制器类中实现通信。如果您使用@SessionAttributes ,则不用于显式地从会话读取和写入会话。建议仅将@SessionAttributes用于短期通信。如果您需要在会话中存储长期数据,建议显式使用session.setAttributesession.getAttribute ,而不是@SessionAttributes。有关更多信息,请查看此

于 2013-06-17T11:33:16.053 回答
12

您可以像这样在 springmvc 中处理会话管理。这是一个控制器方法

@RequestMapping(value = { "/login" }, method = RequestMethod.POST)
@ResponseBody
public String login(HttpSession session,String username,String password) throws Exception {
    Member member=userService.authenticateUser(username, password);
    if(member!=null) {
        session.setAttribute("MEMBER", member);
    } else {
        throw new Exception("Invalid username or password");
    }
    return Utils.toJson("SUCCESS");
}

用户将传递用户名和密码,而 Spring 将自动注入会话属性。我们将从 db 验证此用户名和密码。为此,我们将使用一些服务方法,该方法将依次调用存储库的一些方法来获取成员类的对象并在控制器中返回它。无论在您的应用程序方法中,您需要保存在会话中的信息,都将其在参数中传递给处理程序。您可以在http://faisalbhagat.blogspot.com/2014/09/session-management-with-spring-mvc.html找到更多详细信息如何在每次方法调用中验证此信息

于 2014-09-17T14:22:33.117 回答