小程序是通过微信服务器触发我们服务器,所以每次请求获取的session都不一样,可以将session_id 返回给前端,前端请求接口的时候放在请求头中,接口通过获取session_id在获取对应的session取对应的数据。
下面是服务器通过session_id获取session相关代码:
由于HttpSession sess = session.getSessionContext().getSession(sid)方法以及被弃用,具体原因自己百度。
自己动手丰衣足食。
自己写一个lintener来获取session
public class MySessionContext { private static HashMap mymap = new HashMap(); public static synchronized void AddSession(HttpSession session) { if (session != null) { mymap.put(session.getId(), session); } } public static synchronized void DelSession(HttpSession session) { if (session != null) { mymap.remove(session.getId()); } } public static synchronized HttpSession getSession(String session_id) { if (session_id == null) return null; return (HttpSession) mymap.get(session_id); } }
public class SessionListener implements HttpSessionListener { public void sessionCreated(HttpSessionEvent httpSessionEvent) { MySessionContext.AddSession(httpSessionEvent.getSession()); } public void sessionDestroyed(HttpSessionEvent httpSessionEvent) { HttpSession session = httpSessionEvent.getSession(); MySessionContext.DelSession(session); } }
web.xml中增加
<listener> <listener-class>com.**.**.**.**.SessionListener</listener-class> </listener>
完事