Package com.jfinal.plugin.activerecord

Examples of com.jfinal.plugin.activerecord.IAtom


    pattern = caseSensitive ? Pattern.compile(regex) : Pattern.compile(regex, Pattern.CASE_INSENSITIVE);
  }
 
  public void intercept(final ActionInvocation ai) {
    if (pattern.matcher(ai.getActionKey()).matches()) {
      Db.tx(new IAtom(){
        public boolean run() throws SQLException {
          ai.invoke();
          return true;
        }});
    }
View Full Code Here

TOP

Related Classes of com.jfinal.plugin.activerecord.IAtom

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.