本文整理汇总了Java中org.mybatis.generator.internal.rules.Rules.generateUpdateByExampleWithoutBLOBs方法的典型用法代码示例。如果您正苦于以下问题:Java Rules.generateUpdateByExampleWithoutBLOBs方法的具体用法?Java Rules.generateUpdateByExampleWithoutBLOBs怎么用?Java Rules.generateUpdateByExampleWithoutBLOBs使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.mybatis.generator.internal.rules.Rules
的用法示例。
在下文中一共展示了Rules.generateUpdateByExampleWithoutBLOBs方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getUpdateByExampleWithBLOBsMethodName
import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
public String getUpdateByExampleWithBLOBsMethodName(
IntrospectedTable introspectedTable) {
StringBuilder sb = new StringBuilder();
sb.append("update"); //$NON-NLS-1$
sb.append(introspectedTable.getFullyQualifiedTable()
.getDomainObjectName());
Rules rules = introspectedTable.getRules();
if (!rules.generateUpdateByExampleWithoutBLOBs()) {
sb.append("ByExample"); //$NON-NLS-1$
} else if (rules.generateRecordWithBLOBsClass()) {
sb.append("ByExample"); //$NON-NLS-1$
} else {
sb.append("ByExampleWithBLOBs"); //$NON-NLS-1$
}
return sb.toString();
}
示例2: getUpdateByExampleWithBLOBsMethodName
import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
@Override
public String getUpdateByExampleWithBLOBsMethodName(
IntrospectedTable introspectedTable) {
StringBuilder sb = new StringBuilder();
sb.append("update"); //$NON-NLS-1$
sb.append(introspectedTable.getFullyQualifiedTable()
.getDomainObjectName());
Rules rules = introspectedTable.getRules();
if (!rules.generateUpdateByExampleWithoutBLOBs()) {
sb.append("ByExample"); //$NON-NLS-1$
} else if (rules.generateRecordWithBLOBsClass()) {
sb.append("ByExample"); //$NON-NLS-1$
} else {
sb.append("ByExampleWithBLOBs"); //$NON-NLS-1$
}
return sb.toString();
}
示例3: getUpdateByExampleWithBLOBsMethodName
import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
public String getUpdateByExampleWithBLOBsMethodName(IntrospectedTable introspectedTable) {
StringBuilder sb = new StringBuilder();
sb.append("update"); //$NON-NLS-1$
sb.append(introspectedTable.getFullyQualifiedTable().getDomainObjectName());
Rules rules = introspectedTable.getRules();
if (!rules.generateUpdateByExampleWithoutBLOBs()) {
sb.append("ByExample"); //$NON-NLS-1$
} else if (rules.generateRecordWithBLOBsClass()) {
sb.append("ByExample"); //$NON-NLS-1$
} else {
sb.append("ByExampleWithBLOBs"); //$NON-NLS-1$
}
return sb.toString();
}
示例4: getUpdateByExampleWithBLOBsMethodName
import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
public String getUpdateByExampleWithBLOBsMethodName(
IntrospectedTable introspectedTable) {
Rules rules = introspectedTable.getRules();
if (!rules.generateUpdateByExampleWithoutBLOBs()) {
return "updateByExample"; //$NON-NLS-1$
} else if (rules.generateRecordWithBLOBsClass()) {
return "updateByExample"; //$NON-NLS-1$
} else {
return "updateByExampleWithBLOBs"; //$NON-NLS-1$
}
}
示例5: addUpdateByExampleParmsInnerclass
import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
protected void addUpdateByExampleParmsInnerclass(
TopLevelClass topLevelClass, Interface interfaze) {
Rules rules = introspectedTable.getRules();
if (rules.generateUpdateByExampleSelective()
|| rules.generateUpdateByExampleWithBLOBs()
|| rules.generateUpdateByExampleWithoutBLOBs()) {
AbstractDAOElementGenerator methodGenerator = new UpdateByExampleParmsInnerclassGenerator();
initializeAndExecuteGenerator(methodGenerator, topLevelClass,
interfaze);
}
}
示例6: getUpdateByExampleWithBLOBsMethodName
import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
@Override
public String getUpdateByExampleWithBLOBsMethodName(
IntrospectedTable introspectedTable) {
Rules rules = introspectedTable.getRules();
if (!rules.generateUpdateByExampleWithoutBLOBs()) {
return "updateByExample"; //$NON-NLS-1$
} else if (rules.generateRecordWithBLOBsClass()) {
return "updateByExample"; //$NON-NLS-1$
} else {
return "updateByExampleWithBLOBs"; //$NON-NLS-1$
}
}
示例7: addUpdateMethods
import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
private void addUpdateMethods(TopLevelClass topLevelClass, IntrospectedTable introspectedTable, MyBatisClasses cls, String base, String withBLOBs, boolean selective) {
String record = cls.names.base;
topLevelClass.addImportedType(cls.imports.base);
String mapperMethod = selective ? "updateByExampleSelective" : "updateByExample";
Rules r = introspectedTable.getRules();
if (!base.startsWith(SKIP) && ( selective ? r.generateUpdateByExampleSelective() : r.generateUpdateByExampleWithoutBLOBs() )) {
if (selective && r.generateRecordWithBLOBsClass()) {
record = cls.names.blob;
topLevelClass.addImportedType(cls.imports.blob);
}
topLevelClass.addMethod(method(
PUBLIC, INT, base, param(sqlSession, "sql"), param(new FullyQualifiedJavaType(record), "record"), body(
"return sql.getMapper(" + cls.names.mapper + ".class)."+mapperMethod+"(record, this);"
)));
topLevelClass.addMethod(method(
PUBLIC, INT, base, param(cls.types.mapper, "mapper"), param(new FullyQualifiedJavaType(record), "record"), body(
"return mapper."+mapperMethod+"(record, this);"
)));
}
if (introspectedTable.hasBLOBColumns() && !withBLOBs.startsWith(SKIP) && !selective && r.generateUpdateByExampleWithBLOBs()) {
if (r.generateRecordWithBLOBsClass()) {
record = cls.names.blob;
topLevelClass.addImportedType(cls.imports.blob);
}
mapperMethod = selective ? "updateByExampleSelectiveWithBLOBs" /* not supported */ : "updateByExampleWithBLOBs";
topLevelClass.addMethod(method(
PUBLIC, INT, withBLOBs, param(sqlSession, "sql"), param(new FullyQualifiedJavaType(record), "record"), body(
"return sql.getMapper(" + cls.names.mapper + ".class)."+mapperMethod+"(record, this);"
)));
topLevelClass.addMethod(method(
PUBLIC, INT, withBLOBs, param(cls.types.mapper, "mapper"), param(new FullyQualifiedJavaType(record), "record"), body(
"return mapper."+mapperMethod+"(record, this);"
)));
}
}
示例8: getUpdateByExampleWithBLOBsMethodName
import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
public String getUpdateByExampleWithBLOBsMethodName(IntrospectedTable introspectedTable) {
Rules rules = introspectedTable.getRules();
if (!rules.generateUpdateByExampleWithoutBLOBs()) {
return "updateByExample"; //$NON-NLS-1$
} else if (rules.generateRecordWithBLOBsClass()) {
return "updateByExample"; //$NON-NLS-1$
} else {
return "updateByExampleWithBLOBs"; //$NON-NLS-1$
}
}
示例9: addUpdateByExampleParmsInnerclass
import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
protected void addUpdateByExampleParmsInnerclass(TopLevelClass topLevelClass, Interface interfaze) {
Rules rules = introspectedTable.getRules();
if (rules.generateUpdateByExampleSelective() || rules.generateUpdateByExampleWithBLOBs()
|| rules.generateUpdateByExampleWithoutBLOBs()) {
AbstractDAOElementGenerator methodGenerator = new UpdateByExampleParmsInnerclassGenerator();
initializeAndExecuteGenerator(methodGenerator, topLevelClass, interfaze);
}
}