码迷,mamicode.com
首页 > 其他好文 > 详细

dorado中session

时间:2015-05-14 00:50:20      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

1.在后台存入session:

DoradoContext context = DoradoContext.getCurrent();
context.setAttribute(DoradoContext.SESSION,"key", value);

 

2.在后台取出session
String code =(String)context.getAttribute(DoradoContext.SESSION,"key");

 

3.在js中的存入
DoradoContext.getCurrent().setAttribute(DoradoContext.SESSION, "key", value);

 

4.在js中的取出
${session.getAttribute(‘SessionUserInfo‘).pressLoginDate}//此处存入的是一个实体对象

或${session.getAttribute(‘key‘)}

 

 

dorado中session

标签:

原文地址:http://www.cnblogs.com/hui1107464497/p/4502082.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!