創建一個全新的項目,或者把舊的龐大的項目,進行拆分紅多個項目。在創建新的項目中,常常須要作一些重複的工做,好比說拷貝一下經常使用的工具類,通用代碼等等。因此就能夠作一個基礎的項目方便使用,在經歷新項目的時候,直接在基礎項目上進行簡單配置就能夠開發業務代碼了。前端
能夠在評論區進行補充
寫接口文檔一般是一件比較頭疼的事情,然而swagger就用是用來幫咱們解決這個問題的。能夠在線生成接口文檔,而且能夠在頁面上進行測試。java
能夠很是清楚的顯示,請求數據已經響應數據。固然這一切都須要在代碼中進行配置。mysql
注意的點:接口文檔只能在測試/開發環境開啓,其餘環境請關閉。git
@Api用於Controller
@ApiOperation用於Controller內的方法。
@ApiResponses用於標識接口返回數據的類型。
@ApiModel用於標識類的名稱
@ApiModelProperty用於標識屬性的名稱
@RestController @Api(tags = "用戶") @AllArgsConstructor @RequestMapping("/user") public class UserController { private IUserService userService; /** * 獲取用戶列表 * @param listUserForm 表單數據 * @return 用戶列表 */ @ApiOperation("獲取用戶列表") @GetMapping("/listUser") @ApiResponses( @ApiResponse(code = 200, message = "操做成功", response = UserVo.class) ) public ResultVo listUser(@Validated ListUserForm listUserForm){ return ResultVoUtil.success(userService.listUser(listUserForm)); } }
@Data @ApiModel("獲取用戶列表須要的表單數據") @EqualsAndHashCode(callSuper = false) public class ListUserForm extends PageForm<ListUserForm> { /** * 用戶狀態 */ @ApiModelProperty("用戶狀態") @NotEmpty(message = "用戶狀態不能爲空") @Range(min = -1 , max = 1 , message = "用戶狀態有誤") private String status; }
對應的swagger的配置能夠查看基礎項目內的SwaggerConfiguration.java
.spring
mybatis_plus代碼生成器能夠幫咱們生成entity
,service
,serviceImpl
,mapper
,mapper.xml
。省去了創建一大堆實體類的麻煩。sql
因爲配置太長這裏就不貼出來了,對應的CodeGenerator的配置能夠查看基礎項目內的CodeGenerator.java
.shell
將全部的接口的響應數據的格式進行統一。mybatis
@Data @ApiModel("固定返回格式") public class ResultVo { /** * 錯誤碼 */ @ApiModelProperty("錯誤碼") private Integer code; /** * 提示信息 */ @ApiModelProperty("提示信息") private String message; /** * 具體的內容 */ @ApiModelProperty("響應數據") private Object data; }
public abstract class BaseForm<T> { /** * 獲取實例 * @return 返回實體類 */ public abstract T buildEntity(); }
有小夥伴可能有疑問了,這個類有啥用呢。先看一下,下面的代碼。併發
/** * 添加用戶 * @param userForm 表單數據 * @return true 或者 false */ @Override public boolean addUser(AddUserForm userForm) { User user = new User(); user.setNickname(userForm.getNickname()); user.setBirthday(userForm.getBirthday()); user.setUsername(userForm.getUsername()); user.setPassword(userForm.getPassword()); return save(user); }
重構一下,感受清爽了一些。app
/** * 添加用戶 * @param userForm 表單數據 * @return true 或者 false */ @Override public boolean addUser(AddUserForm userForm) { User user = new User(); BeanUtils.copyProperties(this,user); return save(user); }
使用BaseForm進行重構 AddUserForm 繼承 BaseForm並重寫buildEntity
@Data @EqualsAndHashCode(callSuper = false) public class AddUserForm extends BaseForm<User> { /** * 暱稱 */ private String nickname; /** * 生日 */ private Date birthday; /** * 用戶名 */ private String username; /** * 密碼 */ private String password; /** * 構造實體 * @return 實體對象 */ @Override public User buildEntity() { User user = new User(); BeanUtils.copyProperties(this,user); return user; } }
/** * 添加用戶 * @param userForm 表單數據 * @return true 或者 false */ @Override public boolean addUser(AddUserForm userForm) { return save(userForm.buildEntity()); }
上面的代碼有沒有種似曾相識的感受,不少狀況都是將接受到的參數,轉變成對應的實體類而後保存或者更新。因此對於這類的form
能夠繼承baseform
並實現buildEntity()
這樣能夠更加符合面向對象,service
不須要關心form
如何轉變成entity
,只須要在使用的時候調用buildEntity()
便可,尤爲是在form
-> entity
相對複雜的時候,這樣作能夠減小service
內的代碼。讓代碼邏輯看起來更加清晰。
涉及到查詢的時候,絕大多數都須要用到分頁,因此說封裝分頁對象就頗有必要。能夠注意下 PageForm.calcCurrent()
、PageVo.setCurrentAndSize()
、PageVo.setTotal()
這個幾個方法。
@Data @ApiModel(value = "分頁數據", description = "分頁須要的表單數據") public class PageForm<T extends PageForm<?>>{ /** * 頁碼 */ @ApiModelProperty(value = "頁碼 從第一頁開始 1") @Min(value = 1, message = "頁碼輸入有誤") private Integer current; /** * 每頁顯示的數量 */ @ApiModelProperty(value = "每頁顯示的數量 範圍在1~100") @Range(min = 1, max = 100, message = "每頁顯示的數量輸入有誤") private Integer size; /** * 計算當前頁 ,方便mysql 進行分頁查詢 * @return 返回 pageForm */ @ApiModelProperty(hidden = true) public T calcCurrent(){ current = (current - 1 ) * size; return (T) this; } }
@Data public class PageVo<T> { /** * 分頁數據 */ @ApiModelProperty(value = "分頁數據") private List<T> records; /** * 總條數 */ @ApiModelProperty(value = "總條數") private Integer total; /** * 總頁數 */ @ApiModelProperty(value = "總頁數") private Integer pages; /** * 當前頁 */ @ApiModelProperty(value = "當前頁") private Integer current; /** * 查詢數量 */ @ApiModelProperty(value = "查詢數量") private Integer size; /** * 設置當前頁和每頁顯示的數量 * @param pageForm 分頁表單 * @return 返回分頁信息 */ @ApiModelProperty(hidden = true) public PageVo<T> setCurrentAndSize(PageForm<?> pageForm){ BeanUtils.copyProperties(pageForm,this); return this; } /** * 設置總記錄數 * @param total 總記錄數 */ @ApiModelProperty(hidden = true) public void setTotal(Integer total) { this.total = total; this.setPages(this.total % this.size > 0 ? this.total / this.size + 1 : this.total / this.size); } }
@Data @ApiModel("獲取用戶列表須要的表單數據") @EqualsAndHashCode(callSuper = false) public class ListUserForm extends PageForm<ListUserForm> { /** * 用戶狀態 */ @ApiModelProperty("用戶狀態") @NotEmpty(message = "用戶狀態不能爲空") @Range(min = -1 , max = 1 , message = "用戶狀態有誤") private String status; }
/** * 獲取用戶列表 * @param listUserForm 表單數據 * @return 用戶列表 */ @Override public PageVo<UserVo> listUser(ListUserForm listUserForm) { PageVo<UserVo> pageVo = new PageVo<UserVo>().setCurrentAndSize(listUserForm); pageVo.setTotal(countUser(listUserForm.getStatus())); pageVo.setRecords(userMapper.listUser(listUserForm.calcCurrent())); return pageVo; } /** * 獲取用戶數量 * @param status 狀態 * @return 用戶數量 */ private Integer countUser(String status){ return count(new QueryWrapper<User>().eq("status",status)); }
/** * 獲取用戶列表 * @param listUserForm 表單數據 * @return 用戶列表 */ @ApiOperation("獲取用戶列表") @GetMapping("/listUser") @ApiResponses( @ApiResponse(code = 200, message = "操做成功", response = UserVo.class) ) public ResultVo listUser(@Validated ListUserForm listUserForm){ return ResultVoUtil.success(userService.listUser(listUserForm)); }
setCurrentAndSize()
完成。listUserForm.calcCurrent()
爲何要計算偏移量呢?
current=1&&size=10
,這個時候limit 1,10
沒有問題。current=2&&size=10
,這個時候limit 2,10
就有問題,實際應該是limit 10,10
。calcCurrent()的做用就是如此
。爲何不用MybatisPlus自帶的分頁插件呢?
自帶的分頁查詢在大量數據下,會出現性能問題。
經常使用工具類能夠根據本身的開發習慣引入。
異常處理的大體流程主要以下。
ControllerAdvice
進行捕獲格式化輸出內容CustomException
並傳入ReulstEnum
——> 進行捕獲錯誤信息輸出錯誤信息。@Data @EqualsAndHashCode(callSuper = false) public class CustomException extends RuntimeException { /** * 狀態碼 */ private final Integer code; /** * 方法名稱 */ private final String method; /** * 自定義異常 * * @param resultEnum 返回枚舉對象 * @param method 方法 */ public CustomException(ResultEnum resultEnum, String method) { super(resultEnum.getMsg()); this.code = resultEnum.getCode(); this.method = method; } /** * @param code 狀態碼 * @param message 錯誤信息 * @param method 方法 */ public CustomException(Integer code, String message, String method) { super(message); this.code = code; this.method = method; } }
根據業務進行添加。
@Getter public enum ResultEnum { /** * 未知異常 */ UNKNOWN_EXCEPTION(100, "未知異常"), /** * 添加失敗 */ ADD_ERROR(103, "添加失敗"), /** * 更新失敗 */ UPDATE_ERROR(104, "更新失敗"), /** * 刪除失敗 */ DELETE_ERROR(105, "刪除失敗"), /** * 查找失敗 */ GET_ERROR(106, "查找失敗"), ; private Integer code; private String msg; ResultEnum(Integer code, String msg) { this.code = code; this.msg = msg; } /** * 經過狀態碼獲取枚舉對象 * @param code 狀態碼 * @return 枚舉對象 */ public static ResultEnum getByCode(int code){ for (ResultEnum resultEnum : ResultEnum.values()) { if(code == resultEnum.getCode()){ return resultEnum; } } return null; } }
全局異常攔截是使用@ControllerAdvice
進行實現,經常使用的異常攔截配置能夠查看 GlobalExceptionHandling。
@Slf4j @RestControllerAdvice public class GlobalExceptionHandling { /** * 自定義異常 */ @ExceptionHandler(value = CustomException.class) public ResultVo processException(CustomException e) { log.error("位置:{} -> 錯誤信息:{}", e.getMethod() ,e.getLocalizedMessage()); return ResultVoUtil.error(Objects.requireNonNull(ResultEnum.getByCode(e.getCode()))); } /** * 通用異常 */ @ResponseStatus(HttpStatus.OK) @ExceptionHandler(Exception.class) public ResultVo exception(Exception e) { e.printStackTrace(); return ResultVoUtil.error(ResultEnum.UNKNOWN_EXCEPTION); } }
/** * 刪除用戶 * @param id 用戶編號 * @return 成功或者失敗 */ @ApiOperation("刪除用戶") @DeleteMapping("/deleteUser/{id}") public ResultVo deleteUser(@PathVariable("id") String id){ userService.deleteUser(id); return ResultVoUtil.success(); }
/** * 刪除用戶 * @param id id */ @Override public void deleteUser(String id) { // 若是刪除失敗拋出異常。 -- 演示而已不推薦這樣幹 if(!removeById(id)){ throw new CustomException(ResultEnum.DELETE_ERROR, MethodUtil.getLineInfo()); } }
將報錯代碼所在的文件第多少行都打印出來。方便排查。
全部手動拋出的錯誤信息,都應在錯誤信息枚舉ResultEnum
進行統一維護。不一樣的業務使用不一樣的錯誤碼。方便在報錯時進行分辨。快速定位問題。
對於一個項目來說基本都4有個環境dev
,test
,pre
,prod
,對於SpringBoot項目多創建幾個配置文件就能夠了。而後啓動的時候能夠經過配置spring.profiles.active
來選擇啓動的環境。
java -jar BasicProject.jar --spring.profiles.active=prod
假如想在打包的時候動態指定環境,這個時候就須要藉助Maven的xml來實現。
<!-- 配置環境 --> <profiles> <profile> <!-- 開發 --> <id>dev</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <activatedProperties>dev</activatedProperties> </properties> </profile> <profile> <!-- 測試 --> <id>test</id> <properties> <activatedProperties>test</activatedProperties> </properties> </profile> <profile> <!-- 準生產 --> <id>pre</id> <properties> <activatedProperties>pre</activatedProperties> </properties> </profile> <profile> <!-- 生產 --> <id>prod</id> <properties> <activatedProperties>prod</activatedProperties> </properties> </profile> </profiles>
spring: profiles: # 選擇環境 active: @activatedProperties@
mvn clean package -P prod mvn clean package -P pre mvn clean package -P test
打包完能夠解壓開查看application.yml
會發現spring.profiles.active=@activatedProperties@
發生了改變。
採用logback日誌配置
JenkinsFile確定顧名思義是給jenkins用的。主要是配置項目根據如何進行構建併發布到不一樣的環境。須要去了解pipeline語法,以及如何配置jenkins。JenkinsFileDemo
https://gitee.com/huangxunhui...
若是以爲對你有幫助,能夠多多評論,多多點贊哦,也能夠到個人主頁看看,說不定有你喜歡的文章,也能夠隨手點個關注哦,謝謝。