playframework获取当前会话的所有session,获取请求的所有参数

//获取当前会话的所有session
Map<String, String> sessions = session . current ().all();
for (Map.Entry<String, String> ses : sessions.entrySet()) {
           System.out.println(“key:”+ses.getKey()+“,value:”+ses.getValue());
       }
//获取请求的所有参数
       Map<String, String[]> pms=params.all();
for (Map.Entry<String, String[]> pm : pms.entrySet()) {
           System.out.println(“key:”+pm.getKey()+“,value:”+pm.getValue()[0]);

       }

你可能感兴趣的:(session,cookie,play)