Перейти к содержимому

Use Lombok to create a Java DTO quickly in IntelliJ IDEA

Brandan Jones

0:00 / 0:00

Use Lombok to create a Java DTO quickly in IntelliJ IDEA

8 013 просмотров · 6 л. назад
Brandan Jones
30,2 тыс. подписчиков
8 013 просмотров · 6 л. назад
I show how to use Lombok to quickly create a DTO in Java and IntelliJ IDEA Lombok is a plugin for Java programs that uses annotations to generate common boilerplate code, like getters and setters, hashcode, equals, and toString methods. It enables a developer to move quickly, since the mundane and non-value added tasks of creating a data class, or noun class, are handled by annotation. Lombok has great IDE support, and needs to be added to IntelliJ via Settings - Plugins - Lombok. It will also create a maven dependency in your project. Source code is freely available on GitHub: https://github.com/discospiff/SpringB... This video is part of a playlist on Microservices and Spring Boot with IntelliJ IDEA:    • IntelliJ IDEA, Git, Github, and .gitignore...