我的应用程序控制器中定义的代码片段
@RequestMapping(value = "/get-data", method = RequestMethod.GET)
public List<Chat> getAllChats(HttpServletRequest request,
HttpServletResponse response) {
String email = (String) request.getSession().getAttribute("email");
....
我能够检索email属性并将其传递给字符串变量。我的挑战是将变量从会话传递给jsp文件。 jsp的代码片段
for (var i = 0; i < json.length; i++) {
theUser = email; //retrieve the email of the session here
theClass = json[i].user.email == theUser ? "bubbledRight" : "bubbledLeft";
如何将检索到的会话属性用于jsp文件。