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


Java CommentGeneratorConfiguration.setConfigurationType方法代码示例

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


在下文中一共展示了CommentGeneratorConfiguration.setConfigurationType方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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: 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

示例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:fnyexx,项目名称:mybator,代码行数:26,代码来源:IbatorConfigurationParser.java

示例4: 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

示例5: 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.setConfigurationType方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。