Intellij 实时模板

发布于 2024-11-08 19:26:04 字数 286 浏览 0 评论 0原文

有没有办法在 Intellij Live templates 中使用默认令牌值?例如,我有以下实时模板,它声明了一个私有变量,我想为几乎每个类创建该变量:

private static final Logger logger = Logger.getLogger($CLASS$.class)

这似乎没有必要每次使用此实时模板时都键入 $CLASS$,因为它可以从范围或文件名中的类派生。我想知道是否可以在实时模板中使用环境定义的令牌作为默认值?

Is there any way to use a default token value in Intellij Live templates? For example I have the following live template which declares a private variable that I would like to create nearly for every class:

private static final Logger logger = Logger.getLogger($CLASS$.class)

It seems unnecessary to type $CLASS$ every time when this live template is used, because it can be derived from the class in scope or filename. I was wondering if it is possible to use environment defined tokens in live templates as defaults?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

2024-11-15 19:26:04

检查已经使用当前类名的其他一些模板:

在此处输入图像描述

Check some other templates that already use the current class name:

enter image description here

就是爱搞怪 2024-11-15 19:26:04

log4j:

private static final org.apache.log4j.Logger log = org.apache.log4j.Logger.getLogger($CLASS_NAME$.class);

slf4j:

private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger($CLASS_NAME$.class);

确保将适用上下文设置为 Java,并启用缩短 FQ 名称如果定义则跳过

log4j:

private static final org.apache.log4j.Logger log = org.apache.log4j.Logger.getLogger($CLASS_NAME$.class);

slf4j:

private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger($CLASS_NAME$.class);

Make sure that you set the applicable context to Java and that shorten FQ names and skip if defined are enabled.

木落 2024-11-15 19:26:04

日志4j 2:

private static final org.apache.logging.log4j.Logger log = org.apache.logging.log4j.LogManager.getLogger($CLASS_NAME$.class);

log4j 2:

private static final org.apache.logging.log4j.Logger log = org.apache.logging.log4j.LogManager.getLogger($CLASS_NAME$.class);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文