Java規範化程式碼eclipse模板註釋
阿新 • • 發佈:2018-11-07
建議下載阿里規範化外掛
阿里的new java file的註釋模板(Type):
/**
* @author ${user}
* @date ${currentDate:date('YYYY/MM/dd')}
*/
我的方法註釋模板(method):
注意@see的格式是這樣的:
@see com.mzy.mapper.UserMapper#login
@see classname
@see fully-qualified-classname
@see fully-qualified-classname#方法名稱
@see fully-qualified-classname#屬性名稱注意:後面的這個格式需要用{@link}來包裹,才能進行跳轉
如:
@see {@link com.mzy.crm.service.impl.CustomerServiceImpl#deleteCustomerById(Integer)}
如果是同一個類中,想要註釋告訴閱讀者跳轉到本類中的其它方法,只用寫#後就可以了!
/**
* @Description 方法描述: ${todo}
* @see
* @param
* @return 返回值型別:
* @author 作者: ${user}
* @time 時間: ${date} ${time}
* @throws
*/