idea设置注释模板

idea设置注释模板

本文连接:https://www.cnblogs.com/muphy/p/14738560.html

1.  类注释设置
/**
* TODO
*
* @className: ${NAME}
* @author: ${USER}
* @date: ${YEAR}-${MONTH}-${DAY} ${HOUR}:${MINUTE}
**/

idea设置注释模板

 

2.  方法注释设置,(填写的时候不要第一个符号/)
/**
* TODO
*
$param$
* @return: $return$
* @author: $user$
* @date: $DATE$ $TIME$
**/
打开File | Settings | Editor | Live Templates
点击右边加号为自己添加一个Templates Group
选中自己的Group再次点击加号添加Live Templates,abbreviation填写*(后面会用到)
复制模板内容过去,点击define,全选,然后点击Edit variables

idea设置注释模板

Param参数填写:groovyScript("def result=''; def params=\"${_1}\".replaceAll('[\\\\[|\\\\]|\\\\s]', '').split(',').toList(); for(i = 0; i < params.size(); i++) {if(params[i] == '') return result;result+='* @param ' + params[i] + ((i < params.size() - 1) ? '\\n' : '')}; return result", methodParameters())

idea设置注释模板

 

 

方法上输入/* 按TAB键

idea设置注释模板

 

 

 
上一篇:vue-cli 安装失败Failed to download repo vuejs-templates/webapck-simple: Response code 404 (Not Found)


下一篇:springboot 使用templates + bootstrap-table 实现组合表头展示