春季MVC中的 Httpsession Management
我是春季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")
thought
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;
}
}
并根据需要转换对象并继续