当前位置:首页 » 《资源分享》 » 正文

详细分析Java中的@AllArgsConstructor注解

1 人参与  2024年09月19日 14:41  分类 : 《资源分享》  评论

点击全文阅读


目录

前言1. 基本知识2. 实战

前言

事情起因是Spring的循环依赖

详情可见:出现The dependencies of some of the beans in the application context form a cycle 解决方法(全)

1. 基本知识

@AllArgsConstructor 是 Lombok 提供的一个注解,用于自动生成一个包含所有参数的构造函数

简化构造函数的编写:通常情况下,Java 类中需要手动编写构造函数来初始化类的实例变量

使用 @AllArgsConstructor 注解可以自动生成一个包含所有实例变量的构造函数,减少编码量

使用方法

引入依赖:在项目的依赖中加入 Lombok 库在类上添加注解:在需要使用该注解的类上添加 @AllArgsConstructor 注解

示例:

import lombok.AllArgsConstructor;@AllArgsConstructorpublic class MyClass {    private String field1;    private int field2;    private double field3;}

生成的构造函数如下:

public MyClass(String field1, int field2, double field3) {    this.field1 = field1;    this.field2 = field2;    this.field3 = field3;}

2. 实战

对于@Service注解中也可使用

@Service@AllArgsConstructorpublic class WireRopeReplaceOrderServiceImpl extends BaseServiceImpl<WireRopeReplaceOrderMapper, WireRopeReplaceOrder> implements IWireRopeReplaceOrderService {private IInfoService infoService;private IInfoRunningDataService iInfoRunningDataService;private IInfoWireropeDataService infoWireropeDataService;private IInfoRunningDataRopeService infoRunningDataRopeService;private RedisIdGeneratorService redisIdGeneratorService;

类似如下:

@Servicepublic class WireRopeReplaceOrderServiceImpl extends BaseServiceImpl<WireRopeReplaceOrderMapper, WireRopeReplaceOrder> implements IWireRopeReplaceOrderService {@Autowiredprivate IInfoService infoService;@Autowiredprivate IInfoRunningDataService iInfoRunningDataService;@Autowiredprivate IInfoWireropeDataService infoWireropeDataService;@Autowiredprivate IInfoRunningDataRopeService infoRunningDataRopeService;@Autowiredprivate RedisIdGeneratorService redisIdGeneratorService;

点击全文阅读


本文链接:http://zhangshiyu.com/post/161735.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1