• 在Eclipse中为新建java文件自动添加文件头


    1. 打开菜单:"Window->Preferences->Java->Code Style->Code Templates",在右侧可以配置代码和注释的格式;

    2. 选择其中的"Code->New Java files", 在"Pattern:"文本框中可以看到如下内容:

    ${filecomment}
    ${package_declaration}

    ${typecomment}
    ${type_declaration}

    这4个都是变量,我最关心的是$(filecomment),如何知道这个变量代表什么内容呢?这一点Eclipse做的不好,没有在明显的地方的说明,不过你可以按照如下操作找到各个变量代表的实际内容:在"Configure generated code and comments"文本框中随便选中一项,比如选择"New Java files",点击“Edit...”,在出现的对话框中选择"Insert Variable..."会出现一个下拉菜单,其中每个变量都在右侧有个浮动的窗口显示其内容说明。

    3. 我想在${filecomment}中配置文件头的内容,因此根据该变量的内容提示,找到真正的编辑位置为"Comments->Files",编辑其中的内容,使其符合我的需要,比如我编辑的文件头如下:

    /**
    * Filename : ${file_name}
    * Author : xxxxxxx
    * Creation time : ${time} - ${date}
    * Description :
    */

    其中${file_name},${time} ,${date}都是eclipse的内置变量

    4. 最后使定制的文件头生效,勾选页面下方的"Automatically add comments for new methods and types"(老版Eclipse的这个选项在上一层菜单中:"Code Style")

  • 相关阅读:
    Maven Resources Plugin
    Git Delete Last Commit
    查看剩余空间
    使用 Jython 连接 Apache Derby 数据库
    JVM动态语言比武
    jython embedded into java
    maven testNG
    why clojure?
    jython一小时学会
    gnote
  • 原文地址:https://www.cnblogs.com/lewe/p/3028815.html
Copyright © 2020-2023  润新知