MyEclipse, Eclipse installation Lombok

Source: Internet
Author: User

Lombok Introduction

Lombok is a simple form of annotations that can help us simplify the elimination of some of the necessary but very bloated Java code tools, by using the corresponding annotations, you can compile the source code when the corresponding method is generated. Official address:https://projectlombok.org/

You can annotate any field with a @Getter/@Setter (or, of course, a comment on a class), and let Lombok automatically generate the default Getter/setter method.
The default generated method is public, and if you want to modify the method modifier you can set the value of AccessLevel , for example:@Getter (Access = accesslevel.protected)

Installation steps:

1. download the lombok.jar Package

Https://projectlombok.org/download

2. Copy the Lombok.jar package to the file directory where the Myeclipse.ini/eclipse.ini resides

3. Open myeclipse.ini/eclipse.ini, and at the end add the following code and save:

-javaagent:lombok.jar

4. Restart the myeclipse/eclipse.

5.project==>clean Cleanup Project

MyEclipse, Eclipse installation Lombok

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.