当前位置: 首页>>代码示例>>Java>>正文


Java Rules.generateSelectByExampleWithoutBLOBs方法代码示例

本文整理汇总了Java中org.mybatis.generator.internal.rules.Rules.generateSelectByExampleWithoutBLOBs方法的典型用法代码示例。如果您正苦于以下问题:Java Rules.generateSelectByExampleWithoutBLOBs方法的具体用法?Java Rules.generateSelectByExampleWithoutBLOBs怎么用?Java Rules.generateSelectByExampleWithoutBLOBs使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.mybatis.generator.internal.rules.Rules的用法示例。


在下文中一共展示了Rules.generateSelectByExampleWithoutBLOBs方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getSelectByExampleWithBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
 * 1. if this will be the only selectByExample, then the result should be
 * selectByExample. 2. Else the method name should be
 * selectByExampleWithBLOBs
 */
public String getSelectByExampleWithBLOBsMethodName(
        IntrospectedTable introspectedTable) {
    StringBuilder sb = new StringBuilder();
    sb.append("select"); //$NON-NLS-1$
    sb.append(introspectedTable.getFullyQualifiedTable()
            .getDomainObjectName());
    sb.append("ByExample"); //$NON-NLS-1$

    Rules rules = introspectedTable.getRules();

    if (rules.generateSelectByExampleWithoutBLOBs()) {
        sb.append("WithBLOBs"); //$NON-NLS-1$
    }

    return sb.toString();
}
 
开发者ID:bandaotixi,项目名称:generator_mybatis,代码行数:22,代码来源:ExtendedDAOMethodNameCalculator.java

示例2: getSelectByExampleWithBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
 * 1. if this will be the only selectByExample, then the result should be
 * selectByExample. 2. Else the method name should be
 * selectByExampleWithBLOBs
 */
@Override
public String getSelectByExampleWithBLOBsMethodName(
        IntrospectedTable introspectedTable) {
    StringBuilder sb = new StringBuilder();
    sb.append("select"); //$NON-NLS-1$
    sb.append(introspectedTable.getFullyQualifiedTable()
            .getDomainObjectName());
    sb.append("ByExample"); //$NON-NLS-1$

    Rules rules = introspectedTable.getRules();

    if (rules.generateSelectByExampleWithoutBLOBs()) {
        sb.append("WithBLOBs"); //$NON-NLS-1$
    }

    return sb.toString();
}
 
开发者ID:nextyu,项目名称:summer-mybatis-generator,代码行数:23,代码来源:ExtendedDAOMethodNameCalculator.java

示例3: getSelectByExampleWithBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
 * 1. if this will be the only selectByExample, then the result should be
 * selectByExample. 2. Else the method name should be
 * selectByExampleWithBLOBs
 */
public String getSelectByExampleWithBLOBsMethodName(
        IntrospectedTable introspectedTable) {
    Rules rules = introspectedTable.getRules();

    if (!rules.generateSelectByExampleWithoutBLOBs()) {
        return "selectByExample"; //$NON-NLS-1$
    } else {
        return "selectByExampleWithBLOBs"; //$NON-NLS-1$
    }
}
 
开发者ID:bandaotixi,项目名称:generator_mybatis,代码行数:16,代码来源:DefaultDAOMethodNameCalculator.java

示例4: getSelectByExampleWithBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
 * 1. if this will be the only selectByExample, then the result should be
 * selectByExample. 2. Else the method name should be
 * selectByExampleWithBLOBs
 */
@Override
public String getSelectByExampleWithBLOBsMethodName(
        IntrospectedTable introspectedTable) {
    Rules rules = introspectedTable.getRules();

    if (!rules.generateSelectByExampleWithoutBLOBs()) {
        return "selectByExample"; //$NON-NLS-1$
    } else {
        return "selectByExampleWithBLOBs"; //$NON-NLS-1$
    }
}
 
开发者ID:nextyu,项目名称:summer-mybatis-generator,代码行数:17,代码来源:DefaultDAOMethodNameCalculator.java

示例5: getSelectByExampleWithBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
 * 1. if this will be the only selectByExample, then the result should be
 * selectByExample. 2. Else the method name should be
 * selectByExampleWithBLOBs
 */
public String getSelectByExampleWithBLOBsMethodName(IntrospectedTable introspectedTable) {
	Rules rules = introspectedTable.getRules();

	if (!rules.generateSelectByExampleWithoutBLOBs()) {
		return "selectByExample"; //$NON-NLS-1$
	} else {
		return "selectByExampleWithBLOBs"; //$NON-NLS-1$
	}
}
 
开发者ID:fnyexx,项目名称:mybator,代码行数:15,代码来源:DefaultDAOMethodNameCalculator.java

示例6: getSelectByExampleWithBLOBsMethodName

import org.mybatis.generator.internal.rules.Rules; //导入方法依赖的package包/类
/**
 * 1. if this will be the only selectByExample, then the result should be
 * selectByExample. 2. Else the method name should be
 * selectByExampleWithBLOBs
 */
public String getSelectByExampleWithBLOBsMethodName(IntrospectedTable introspectedTable) {
	StringBuilder sb = new StringBuilder();
	sb.append("select"); //$NON-NLS-1$
	sb.append(introspectedTable.getFullyQualifiedTable().getDomainObjectName());
	sb.append("ByExample"); //$NON-NLS-1$

	Rules rules = introspectedTable.getRules();

	if (rules.generateSelectByExampleWithoutBLOBs()) {
		sb.append("WithBLOBs"); //$NON-NLS-1$
	}

	return sb.toString();
}
 
开发者ID:fnyexx,项目名称:mybator,代码行数:20,代码来源:ExtendedDAOMethodNameCalculator.java


注:本文中的org.mybatis.generator.internal.rules.Rules.generateSelectByExampleWithoutBLOBs方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。