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

浙公网安备 33010602011771号