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


Java DefaultCommentGenerator类代码示例

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


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

示例1: setContext

import org.mybatis.generator.internal.DefaultCommentGenerator; //导入依赖的package包/类
/**
 * Set the context under which this plugin is running.
 *
 * @param context
 *            the new context
 */
@Override
public void setContext(Context context) {
    super.setContext(context);

    // 配置插件使用的模板引擎
    PluginConfiguration cfg = PluginTools.getPluginConfiguration(context, CommentPlugin.class);

    if (cfg == null || cfg.getProperty(CommentPlugin.PRO_TEMPLATE) == null){
        if (context.getCommentGenerator() instanceof DefaultCommentGenerator){
            // 使用默认模板引擎
            commentGenerator = new TemplateCommentGenerator("default-comment.ftl", true);
        } else {
            // 用户自定义
            commentGenerator = context.getCommentGenerator();
        }
    } else {
        TemplateCommentGenerator templateCommentGenerator = new TemplateCommentGenerator(cfg.getProperty(CommentPlugin.PRO_TEMPLATE), false);

        // ITFSW 插件使用的注释生成器
        commentGenerator = templateCommentGenerator;

        // 修正系统插件
        try {
            // 先执行一次生成CommentGenerator操作,然后再替换
            context.getCommentGenerator();

            Field field = Context.class.getDeclaredField("commentGenerator");
            field.setAccessible(true);
            field.set(context, templateCommentGenerator);
        } catch (Exception e) {
            logger.error("反射异常",e);
        }
    }
}
 
开发者ID:itfsw,项目名称:mybatis-generator-plugin,代码行数:41,代码来源:BasePlugin.java


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