修改IntelliJ javadoc模板

发布于 2024-11-30 20:16:54 字数 292 浏览 1 评论 0原文

有没有办法修改 IntelliJ 用于方法 Javadoc 的模板?

特别是,我希望我的 javadoc 注释看起来像这样:

/********************
 * 
 *  Comment here
 *
 *********************/

但是,当我重新格式化代码时,javadoc 最终看起来像这样:

/**
 * ******************
 * 
 *  Comment here
 *
    ********************
 */

Is there a way to modify the template IntelliJ uses for a method's Javadoc?

In particular, I want my javadoc comments to look like this:

/********************
 * 
 *  Comment here
 *
 *********************/

However, when I reformat the code, the javadoc ends up looking like this:

/**
 * ******************
 * 
 *  Comment here
 *
    ********************
 */

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

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

发布评论

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

评论(1

铁憨憨 2024-12-07 20:16:54

那么您似乎并不需要 JavaDoc 注释,因为它们的定义看起来像 IntelliJ 的制作方式。

您可以禁用 JavaDoc 格式:

  1. 设置 >项目设置>代码风格> JavaDoc
  2. 取消选中启用 JavaDoc 格式

这样,您就可以将多行注释重新格式化为 JavaDoc 注释。
IntelliJ 将它们(正确地)识别为 JavaDoc 注释,因为它们有两个星号。

您还可以通过在第二个星号之前添加空格将它们更改为常规多行注释(不是 JavaDoc 注释)(例如 /* ****************),这也应该让 IntelliJ 不重新格式化它们。

It doesn't seem like you want JavaDoc comments then, as they are defined to look like how IntelliJ is making them.

You can disable JavaDoc formatting:

  1. Settings > Project Settings > Code Style > JavaDoc
  2. Uncheck Enable JavaDoc formatting

This way, you can have your multi-line comments not get reformatted as JavaDoc comments.
IntelliJ is identifying them (correctly) as JavaDoc comments since they have two asterisks.

You can also change them to regular multi-line comments (not JavaDoc comments) by adding a space before the second asterisk (e.g. /* ****************), which should also have IntelliJ not reformat them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文