gpt4 book ai didi

java - Spring MVC 中的 session 同步

转载 作者:行者123 更新时间:2023-12-01 04:16:04 25 4
gpt4 key购买 nike

大家好。

请帮助我。我有应用程序和简单的 Controller ,它们从数据库中搜索数据,当在数据库中找到数据时,它会在浏览器中呈现它们,当数据出现在页面上时,如果用户想要在 Excel 中呈现它,也会出现 Render in EXCEL 按钮文件。这是 Controller :

@Scope("session")
@Controller
public class SearchController {

//Apache log4j logger for this controller to bring info to console of executing inside of this controller
@SuppressWarnings("unused")
private static final Logger logger = LoggerFactory.getLogger(SearchController.class);


@Autowired
private EducationWebServiceInterface educationWebService;

List<FormDate> listForm = null;


@ModelAttribute("listOfDates")
public List<Date> prepareModelDate() {
List<Date> listOfDates = educationWebService.fetchAllDatesService();
return listOfDates;
}


@ModelAttribute("listOfNames")
public List<String> prepareModelNames() {
List<String> listOfNames = educationWebService.fetchAllInstitutionNamesService();
return listOfNames;
}


@ModelAttribute("listOfTypes")
public List<String> prepareModelTypes() {
List<String> listOfTypes = educationWebService.fetchAllInstitutionTypesService();
return listOfTypes;
}


@RequestMapping(value="/search", method=RequestMethod.GET)
public String search(FormBackingObjectSearch fbos, Model model) {
model.addAttribute("fbosAttributes", fbos);
return "search";
}


@RequestMapping(value="/result", method=RequestMethod.GET)
public String resultHTML(@RequestParam String particularDate,
@RequestParam String nameOfInstitution,
@RequestParam String typeOfInstitution,
@ModelAttribute("fbosAttributes") @Validated FormBackingObjectSearch fbos,
BindingResult bindingResult,
Model model) throws Exception {

ValidatorSearch validatorSearch = new ValidatorSearch();
validatorSearch.validate(fbos, bindingResult);

if(bindingResult.hasErrors()) {
return "search";
}


listForm = new ArrayList<FormDate>();


//Case 1:
if(!fbos.getParticularDate().equals("") && !fbos.getNameOfInstitution().equals("") && fbos.getTypeOfInstitution().equals("")) {
listForm = educationWebService.fetchByDateAndNameService(DateChangerUtils.dateConvertation(fbos.getParticularDate()), fbos.getNameOfInstitution());
model.addAttribute("findAttributes", listForm);
//Case 2:
} else if(!fbos.getParticularDate().equals("") && fbos.getNameOfInstitution().equals("") && !fbos.getTypeOfInstitution().equals("")) {
listForm = educationWebService.fetchByDateAndTypeService(DateChangerUtils.dateConvertation(fbos.getParticularDate()), fbos.getTypeOfInstitution());
model.addAttribute("findAttributes", listForm);
//Case 3:
} else if(!fbos.getParticularDate().equals("") && fbos.getNameOfInstitution().equals("") && fbos.getTypeOfInstitution().equals("")) {
listForm = educationWebService.fetchByDateService(DateChangerUtils.dateConvertation(fbos.getParticularDate()));
model.addAttribute("findAttributes", listForm);
//Case 4:
} else {
throw new Exception("Exception occurs because it's not correspond to any case in controller");
}
return "search";
}


@RequestMapping(value="/result.xls", method=RequestMethod.GET)
public String resultXLS(Model model) throws NullPointerException {

if(listForm == null || listForm.isEmpty() == true) {
throw new NullPointerException("Can not create Excel file because no data to create from");
} else {
model.addAttribute("findAttributesXls", listForm);
}
return "xlspage";
} //End of the resultXLS(..) method
} //End of the class

现在让我们在浏览器中使用选项卡: 我的问题是,当我将浏览器选项卡一中呈现的数据保存为 Excel 文件一次并在浏览器选项卡二中打开新选项卡时,再次在选项卡二中查找并呈现一些不同的数据,然后返回浏览器中的选项卡一,然后再次尝试将表一中的相同数据保存为 Excel 文件,我从表二中获取数据(最新渲染的),但我想从选项卡一中获取旧数据我之前学过 Servlet,并且对 session 同步非常感兴趣。在我的例子中,它是有效的在 servlet 中,可以通过以下方式访问它: HttpSession session = request.getSession();我怎样才能在 Spring MVC 中做到这一点???它能解决我的问题吗?请给我建议。

谢谢大家。祝一切顺利。

最佳答案

您可以通过添加参数 HttpSession session 在 Controller 方法中访问 session

 @RequestMapping(value="/result.xls", method=RequestMethod.GET)
public String resultXLS(HttpSession session, Model model) throws NullPointerException {
Object myObj = session.getAttribute("myAttr");
....
}

另一种选择是在 Controller 方法中使用 HttpServletRequest 类型的参数

@RequestMapping(value="/result.xls", method=RequestMethod.GET)
public String resultXLS(HttpServletRequest request, Model model) throws NullPointerException {
Object myObj = request.getSession(false).getAttribute("myAttr");
....
}

但是,同步 session 并不能解决您的问题。 session 同步最适合大量并行请求不断出现并修改 session 中存储的共享数据的情况。这不是你所说的情况。

您想要的是类似于基于选项卡的状态,这是您不会得到任何现成的解决方案的东西,这也不是一个好的实践。它会使您的 session 变得非常繁重,并且您的 Web 应用程序将无法扩展。

关于java - Spring MVC 中的 session 同步,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19431603/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com