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


Java CommentGeneratorConfiguration类代码示例

本文整理汇总了Java中org.mybatis.generator.config.CommentGeneratorConfiguration的典型用法代码示例。如果您正苦于以下问题:Java CommentGeneratorConfiguration类的具体用法?Java CommentGeneratorConfiguration怎么用?Java CommentGeneratorConfiguration使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: parseCommentGenerator

import org.mybatis.generator.config.CommentGeneratorConfiguration; //导入依赖的package包/类
protected void parseCommentGenerator(Context context, Node node) {
    CommentGeneratorConfiguration commentGeneratorConfiguration = new CommentGeneratorConfiguration();

    context.setCommentGeneratorConfiguration(commentGeneratorConfiguration);

    Properties attributes = parseAttributes(node);
    String type = attributes.getProperty("type"); //$NON-NLS-1$

    if (stringHasValue(type)) {
        commentGeneratorConfiguration.setConfigurationType(type);
    }

    NodeList nodeList = node.getChildNodes();
    for (int i = 0; i < nodeList.getLength(); i++) {
        Node childNode = nodeList.item(i);

        if (childNode.getNodeType() != Node.ELEMENT_NODE) {
            continue;
        }

        if ("property".equals(childNode.getNodeName())) { //$NON-NLS-1$
            parseProperty(commentGeneratorConfiguration, childNode);
        }
    }
}
 
开发者ID:xiachengwei5,项目名称:org.mybatis.generator.core-1.3.5,代码行数:26,代码来源:MyBatisGeneratorConfigurationParser.java

示例2: createCommentGenerator

import org.mybatis.generator.config.CommentGeneratorConfiguration; //导入依赖的package包/类
/**
 * Creates a new Object object.
 *
 * @param context
 *            the context
 * @return the comment generator
 */
public static CommentGenerator createCommentGenerator(Context context) {

    CommentGeneratorConfiguration config = context
            .getCommentGeneratorConfiguration();
    CommentGenerator answer;

    String type;
    if (config == null || config.getConfigurationType() == null) {
        type = DefaultCommentGenerator.class.getName();
    } else {
        type = config.getConfigurationType();
    }

    answer = (CommentGenerator) createInternalObject(type);

    if (config != null) {
        answer.addConfigurationProperties(config.getProperties());
    }

    return answer;
}
 
开发者ID:backkoms,项目名称:mybatis-generator-comments,代码行数:29,代码来源:ObjectFactory.java

示例3: parseCommentGenerator

import org.mybatis.generator.config.CommentGeneratorConfiguration; //导入依赖的package包/类
private void parseCommentGenerator(Context context, Node node) {
    CommentGeneratorConfiguration commentGeneratorConfiguration = new CommentGeneratorConfiguration();

    context.setCommentGeneratorConfiguration(commentGeneratorConfiguration);

    Properties attributes = parseAttributes(node);
    String type = attributes.getProperty("type"); //$NON-NLS-1$

    if (stringHasValue(type)) {
        commentGeneratorConfiguration.setConfigurationType(type);
    }

    NodeList nodeList = node.getChildNodes();
    for (int i = 0; i < nodeList.getLength(); i++) {
        Node childNode = nodeList.item(i);

        if (childNode.getNodeType() != Node.ELEMENT_NODE) {
            continue;
        }

        if ("property".equals(childNode.getNodeName())) { //$NON-NLS-1$
            parseProperty(commentGeneratorConfiguration, childNode);
        }
    }
}
 
开发者ID:backkoms,项目名称:mybatis-generator-comments,代码行数:26,代码来源:IbatorConfigurationParser.java

示例4: createCommentGenerator

import org.mybatis.generator.config.CommentGeneratorConfiguration; //导入依赖的package包/类
public static CommentGenerator createCommentGenerator(Context context) {

        CommentGeneratorConfiguration config = context
                .getCommentGeneratorConfiguration();
        CommentGenerator answer;

        String type;
        if (config == null || config.getConfigurationType() == null) {
            type = DefaultCommentGenerator.class.getName();
        } else {
            type = config.getConfigurationType();
        }

        answer = (CommentGenerator) createInternalObject(type);

        if (config != null) {
            answer.addConfigurationProperties(config.getProperties());
        }

        return answer;
    }
 
开发者ID:funny5258,项目名称:autocode,代码行数:22,代码来源:ObjectFactory.java

示例5: createCommentGenerator

import org.mybatis.generator.config.CommentGeneratorConfiguration; //导入依赖的package包/类
public static CommentGenerator createCommentGenerator(Context context) {

		CommentGeneratorConfiguration config = context.getCommentGeneratorConfiguration();
		CommentGenerator answer;

		String type;
		if (config == null || config.getConfigurationType() == null) {
			type = DefaultCommentGenerator.class.getName();
		} else {
			type = config.getConfigurationType();
		}

		answer = (CommentGenerator) createInternalObject(type);

		if (config != null) {
			answer.addConfigurationProperties(config.getProperties());
		}

		return answer;
	}
 
开发者ID:fnyexx,项目名称:mybator,代码行数:21,代码来源:ObjectFactory.java

示例6: parseCommentGenerator

import org.mybatis.generator.config.CommentGeneratorConfiguration; //导入依赖的package包/类
private void parseCommentGenerator(Context context, Node node) {
	CommentGeneratorConfiguration commentGeneratorConfiguration = new CommentGeneratorConfiguration();

	context.setCommentGeneratorConfiguration(commentGeneratorConfiguration);

	Properties attributes = parseAttributes(node);
	String type = attributes.getProperty("type"); //$NON-NLS-1$

	if (stringHasValue(type)) {
		commentGeneratorConfiguration.setConfigurationType(type);
	}

	NodeList nodeList = node.getChildNodes();
	for (int i = 0; i < nodeList.getLength(); i++) {
		Node childNode = nodeList.item(i);

		if (childNode.getNodeType() != Node.ELEMENT_NODE) {
			continue;
		}

		if ("property".equals(childNode.getNodeName())) { //$NON-NLS-1$
			parseProperty(commentGeneratorConfiguration, childNode);
		}
	}
}
 
开发者ID:fnyexx,项目名称:mybator,代码行数:26,代码来源:IbatorConfigurationParser.java

示例7: setContext

import org.mybatis.generator.config.CommentGeneratorConfiguration; //导入依赖的package包/类
@Override
public void setContext(Context context) {
    super.setContext(context);
    //设置默认的注释生成器
    commentCfg = new CommentGeneratorConfiguration();
    commentCfg.setConfigurationType(MapperCommentGenerator.class.getCanonicalName());
    context.setCommentGeneratorConfiguration(commentCfg);
    //支持oracle获取注释#114
    context.getJdbcConnectionConfiguration().addProperty("remarksReporting", "true");
}
 
开发者ID:Yanweichen,项目名称:MybatisGeneatorUtil,代码行数:11,代码来源:MapperPlugin.java

示例8: setContext

import org.mybatis.generator.config.CommentGeneratorConfiguration; //导入依赖的package包/类
@Override
public void setContext(Context context) {
    super.setContext(context);
    // 设置默认的注释生成器
    configuration = new CommentGeneratorConfiguration();
    configuration.setConfigurationType(CommentGenerator.class.getCanonicalName());
    context.setCommentGeneratorConfiguration(configuration);
    // 支持 oracle 获取注释 #114
    context.getJdbcConnectionConfiguration().addProperty("remarksReporting", "true");
}
 
开发者ID:drtrang,项目名称:mybatis-generator-extension,代码行数:11,代码来源:MapperPlugin.java


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