9596979899100101102103104105
// Map<String, String> u = new HashMap<String, String>(); AtMap at = Mvcs.getAtMap(req.getSession().getServletContext()); if (at != null) { for(Object o : at.keys()){ String key = (String) o; u.put(key, at.get(key)); } context.set("u", u); }
104105106107108109110111112113114
context.set("p", p); Map<String, String> u = new HashMap<String, String>(); AtMap at = Mvcs.getAtMap(); if (at != null) { for(Object o : at.keys()){ String key = (String) o; u.put(key, at.get(key)); } context.set("u", u); }
111112113114115116117118119120121
context.set("p", p); Map<String, String> u = new HashMap<String, String>(); AtMap at = Mvcs.getAtMap(); if (at != null) { for (Object o : at.keys()) { String key = (String) o; u.put(key, at.get(key)); } context.set("u", u); }