2欄位新增注釋 IDEA統一注釋格式 乾貨)

2021-10-16 03:22:51 字數 1619 閱讀 9548

*@author 你的名字的簡寫

service層:

serviceimpl層:

controller層:

//首先service層的書寫,例如:

serverresponseselectuserall(int curentpageindex,int countperpage);

//impl實現層的書寫,例如:

public serverresponseselectuserall(int curentpageindex,int countperpage) else

and name like '%' # '%'

//servcie層

//我這個寫的時候是按照分頁格式寫的,實際上查詢出來的一般是單條資料

serverresponseselectallbyidandtel(user user);

// serviceimpl實現層

@override

public serverresponseselectallbyidandtel(user user) else {

return serverresponse.createbyerrormessage("查詢失敗");

//controller控制器

@responsebody

public serverresponseselectallbyidandtel(user user){

return testservice.selectallbyidandtel(user,curentpageindex,countperpage);

//進行測試的介面

http://localhost:8080/user//test/selectallbyidandtel.do?name=張三

或者測試

特別注意介面中的name和userid也是屬於user實體類中的變數。

IDEA新增注釋模板

file setting editor file and code templates 修改file header 內容為如下內容 end author alan date version 1.0 editor live templates 新建乙個 live template 注意修改觸發的範圍 ...

Idea 新增注釋 類注釋 方法注釋(可獲取引數)

idea 新增注釋 類注釋 方法注釋 類注釋方法注釋 類注釋file setting editor file and code templates class 注釋模板 description author andy time 操作截圖 效果 方法注釋 為了獲取引數資訊,我們需要使用 live te...

sqlserver欄位新增注釋方法

大部分網路給出的是如下方法,也是sqlserver生成 標準寫法 新增表注釋 exec sys.sp addextendedproperty name n ms description value n 人員資訊 level0type n schema level0name n dbo level1t...