
综合
DAO
二气逼人
展开
-
常用基本配置
struts2: web.xml struts2 org.apache.struts2.dispatcher.FilterDispatcher actionPackages原创 2012-10-31 09:41:59 · 373 阅读 · 0 评论 -
EL表达式,ognl表达式 集合过滤
${list[name='xxxx']} ${param.name} == request.getParameter('name')原创 2012-12-31 17:19:40 · 631 阅读 · 0 评论 -
Pattern - Matcher
public class PatternTest { public static void main(String[] args) { String source = "名字${name},性别${sex},年龄${age}。"; String regex = "\\$\\{\\w+}"; Pattern pa = Pattern.compile(regex); Mat原创 2013-01-24 10:02:05 · 441 阅读 · 0 评论