本人以前的这种需求都是用SpringSecurity实现,纯配置,也没怎么考虑怎么实现。今天朋友问我不用SpringSecurity怎么实现,想了一下,觉得这样可行,先记下,晚上试试。。。1.在applicationContext里面方一个Map,key为账户id,value为session。2.用户在登录的时候,利用contains()方法来判断Map里面是否已经包含了此id的key,如果包含了,从Map删除此session,在将新的session放入。如果没有直接放 入。3.在Filter里,从application的map取出session和自己的session比较SessionID,相 Read More
posted @ 2011-10-26 22:47 七郎 Views(3111) Comments(0) Diggs(0) Edit
原: perid oper_type 1 2 2 1 334 35 2需要的效果: perid 合计1 合计2 合计3 1 0 1 0 2 10 0。。。。。select sum(a) 合计1,sum(b) 合计2,sum(c) 合计3 from(select oper_type,decode(oper_type,'1',1,0) a,decode(oper_type,'2',1,0) b,decode(oper_type,'3',1,0) cfrom man_operlog where to_char(oper_time,'yyyy-M Read More
posted @ 2011-10-26 16:19 七郎 Views(467) Comments(0) Diggs(0) Edit