lombok 使用及技巧

@AllArgsConstructor替代@Autowired构造注入,多个bean 注入时更加清晰L
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@Slf4j
@Configuration
@AllArgsConstructor
public class RouterFunctionConfiguration {
   private final HystrixFallbackHandler hystrixFallbackHandler;
   private final ImageCodeHandler imageCodeHandler;
    
}
 
 
@Slf4j
@Configuration
public class RouterFunctionConfiguration {
   @Autowired
   private  HystrixFallbackHandler hystrixFallbackHandler;
   @Autowired
   private  ImageCodeHandler imageCodeHandler;
}
@RequiredArgsConstructor相较于 @AllArgsConstructor  只会构造注入 final 注释的属性,推荐使用
1
2
3
4
5
6
7
8
@RestController
@RequiredArgsConstructor
@RequestMapping("/user")
@Api(value = "user", tags = "用户管理模块")
public class SysUserController {
 
    private final SysUserService userService;
}
 @SneakyThrows 抛出异常
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@SneakyThrows
private void checkCode(ServerHttpRequest request) {
   String code = request.getQueryParams().getFirst("code");
 
   if (StrUtil.isBlank(code)) {
    throw new ValidateCodeException("验证码不能为空");
   }
 
   redisTemplate.delete(key);
}
 
 
// 不使用就要加这个抛出
private void checkCode(ServerHttpRequest request) throws ValidateCodeException {
   String code = request.getQueryParams().getFirst("code");
 
   if (StrUtil.isBlank(code)) {
    throw new ValidateCodeException("验证码不能为空");
   }
}
@UtilityClass工具类再也不用定义static的方法了,直接就可以Class.Method 使用 
1
2
3
4
5
6
7
8
9
10
11
@UtilityClass
public class Utility {
 
    public String getName() {
        return "name";
    }
}
 
public static void main(String[] args) {
    System.out.println(Utility.getName());
}
@Cleanup: 清理流对象,不用手动去关闭流,多么优雅
1
2
3
4
5
6
7
8
9
10
@Cleanup
OutputStream outStream = new FileOutputStream(new File("text.txt"));
@Cleanup
InputStream inStream = new FileInputStream(new File("text2.txt"));
byte[] b = new byte[65536];
while (true) {
   int r = inStream.read(b);
   if (r == -1) break;
   outStream.write(b, 0, r);
}

  

 

 

 

 
posted @   紫枫夜羽  阅读(53)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?
点击右上角即可分享
微信分享提示