本文整理汇总了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);
}
}
}
示例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);
}
}
}
示例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");
}
示例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");
}