1. 程式人生 > >阿里java程式碼規範IDEA新增外掛

阿里java程式碼規範IDEA新增外掛

為了儘量自己寫好程式碼,為了儘量團隊程式碼風格統一,有一套可執行的規範是再好不過了,《阿里巴巴Java開發手冊》對JAVA編碼規範做了一個總結,並且把這個規範做成了一個很好用的IDEA外掛,可以讓我們的程式碼看上去更加舒適。

1.開啟IDEA,點選File->Settings->Plugins

2.查詢alibaba外掛並安裝,然後重啟IDEA

安裝alibaba

3.使用 : 右鍵專案->編碼規約掃描

編碼規約掃描

檢查結果就有啦

在這裡插入圖片描述

另外還可以參考檔案程式碼模板預設的變數自定義註釋模板

${PACKAGE_NAME} - the name of the target package
where the new class or interface will be created. (將建立新類或介面的目標包的名稱) ${PROJECT_NAME} - the name of the current project. (當前專案的名稱) ${FILE_NAME} - the name of the PHP file that will be created. (將建立PHP檔案的名稱。) ${NAME} - the name of the new file which you specify in the New File dialog box during the file creation.
(在檔案建立過程中在新檔案對話方塊中指定的新檔案的名稱。) ${USER} - the login name of the current user. (當前使用者的登入名。) ${DATE} - the current system date. (當前系統日期。) ${TIME} - the current system time. (當前系統時間。) ${YEAR} - the current year. (當前的年。) ${MONTH} - the current month. (當前的月。) ${DAY} - the current day of the month. (本月的今天。)
${HOUR} - the current hour. (當前的小時。) ${MINUTE} - the current minute. (當前的分鐘) ${PRODUCT_NAME} - the name of the IDE in which the file will be created. (將在其中建立檔案的IDEA的名稱。) ${MONTH_NAME_SHORT} - the first 3 letters of the month name. Example: Jan, Feb, etc. (月份名稱的前3個字母。例如:簡、二月等。) ${MONTH_NAME_FULL} - full name of a month. Example: January, February, etc. (一個月的全名。例如:一月、二月等。)