08 2022 档案
摘要:当给实体类添加注解@RequestBody时validation抛出的异常正常为MethodArgumentNotValidException和ConstraintViolationException, 但当遇到特殊情况无法添加@RequestBody时会抛出BindException, 处理方法:
阅读全文
摘要:关于Restful API,其实就是一种规则,在这个规则下 ,仅通过接口名称就能知晓这个API是干什么用的。例如 GET /user 就是获取用户列表。 其他的没啥好些的,看链接就完事了。 RESTful API 设计指南:http://ruanyifeng.com/blog/2014/05/res
阅读全文
摘要:问题: Spring Boot 2.6.x版本引入依赖 springfox-boot-starter (Swagger 3.0) 后,启动容器会报错: Failed to start bean ‘ documentationPluginsBootstrapper ‘ ; nested excepti
阅读全文
摘要:SqlServer 导出数据字典 SELECT 表名=case when a.colorder=1 then d.name else '' end, 表说明=case when a.colorder=1 then isnull(f.value,'') else '' end, 字段序号=a.colo
阅读全文