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