Config config = Tx.getConfigWithTxConfig(ai);
if (config == null)
config = DbKit.getConfig();
if (actionMethodSet.contains(ai.getMethodName())) {
Db.tx(config.getName(), new IAtom(){
public boolean run() throws SQLException {
ai.invoke();
return true;
}});
}