02 2021 档案

摘要:背景说明:在做批量删除列表数据的时候,前端发送数组格式给后端,后端使用数组格式(Integer[] ids)接受,需要使用postman测试结果。 @ApiOperation("管理系统-删除系统日志") @DeleteMapping("delete_system_log") public Dto 阅读全文
posted @ 2021-02-23 17:16 小小程序猿-DB 阅读(849) 评论(1) 推荐(0)
摘要:概念: @ConfigurationProperties : 是springboot的注解,用于把主配置文件中配置属性设置到对于的Bean属性上 @PropertySource :是spring的注解,用于加载指定的属性配置文件到Spring的Environment中,可以和 @Value、@Con 阅读全文
posted @ 2021-02-22 22:32 小小程序猿-DB 阅读(664) 评论(2) 推荐(1)
摘要:说明: int为基本类型,Integer为包装类型; 装箱: 基本类型 > 包装类型 int > Integer 底层源码: .intValue() 拆箱: 包装类型 > 基本类型 Integer > int 底层源码: Integer.valueOf() int和Integer // int和In 阅读全文
posted @ 2021-02-20 15:42 小小程序猿-DB 阅读(409) 评论(0) 推荐(0)