春季MVC中的 Httpsession Management

2022-09-04 07:35:40

我是春季MVC的新手,并开始通过做我学到的东西来制作一个示例应用程序。我计划在春季MVC中实施会话管理。我发现这个很有帮助。

但我无法清楚地理解它。我们为会话添加值,例如

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

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

session.getAttrubute("key");

但是在春天的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")thoughtModelAndViewbackbone.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;
    }


}

并根据需要转换对象并继续


答案 1

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


答案 2

你可以像这样在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将自动注入会话属性。我们将从数据库验证此用户名和密码。为此,我们将使用一些服务方法,该方法将反过来调用存储库的某个方法来获取Particle类的对象并将其返回到控制器中。在应用程序方法中的任何时候,只要您需要保存在会话中的信息,就会将其在参数中传递给处理程序。您可以在 http://faisalbhagat.blogspot.com/2014/09/session-management-with-spring-mvc.html 找到有关如何在每次方法调用时验证此信息的更多详细信息 http://faisalbhagat.blogspot.com/2014/09/session-management-with-spring-mvc.html


推荐