本文整理汇总了Java中org.mybatis.generator.config.TableConfiguration.setGeneratedKey方法的典型用法代码示例。如果您正苦于以下问题:Java TableConfiguration.setGeneratedKey方法的具体用法?Java TableConfiguration.setGeneratedKey怎么用?Java TableConfiguration.setGeneratedKey使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.mybatis.generator.config.TableConfiguration
的用法示例。
在下文中一共展示了TableConfiguration.setGeneratedKey方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: parseGeneratedKey
import org.mybatis.generator.config.TableConfiguration; //导入方法依赖的package包/类
private void parseGeneratedKey(TableConfiguration tc, Node node) {
Properties attributes = parseAttributes(node);
String column = attributes.getProperty("column"); //$NON-NLS-1$
boolean identity = isTrue(attributes
.getProperty("identity")); //$NON-NLS-1$
String sqlStatement = attributes.getProperty("sqlStatement"); //$NON-NLS-1$
String type = attributes.getProperty("type"); //$NON-NLS-1$
GeneratedKey gk = new GeneratedKey(column, sqlStatement, identity, type);
tc.setGeneratedKey(gk);
}
示例2: parseGeneratedKey
import org.mybatis.generator.config.TableConfiguration; //导入方法依赖的package包/类
private void parseGeneratedKey(TableConfiguration tc, Node node) {
Properties attributes = parseAttributes(node);
String column = attributes.getProperty("column"); //$NON-NLS-1$
boolean identity = isTrue(attributes.getProperty("identity")); //$NON-NLS-1$
String sqlStatement = attributes.getProperty("sqlStatement"); //$NON-NLS-1$
String type = attributes.getProperty("type"); //$NON-NLS-1$
GeneratedKey gk = new GeneratedKey(column, sqlStatement, identity, type);
tc.setGeneratedKey(gk);
}