Category "lombok"

Using Lombok @SuperBuilder annotation with toBuilder on an abstract class?

I have the following classes: @SuperBuilder(toBuilder = true) public abstract class Parent { //... } @SuperBuilder(toBuilder = true) public class Child ex

Spring Boot Slf4j change log timestamp to use UTC timezone

Spring boot app with default logger settings and using lombok's @Slf4j Prints logs like {"timestamp":"2020-02-26T11:25:57.485-05:00" ..........} Time shown 11:

Add a object with custom annotation in springboot

I need to add an object like @Slf4j's "log" in a service class, for example: @Slf4j @Service public class MyService { public void anyMethod() { log

Error while building project using maven [com/sun/tools/javac/tree/JCTree$JCCompilationUnit]

I am trying to use maven to build my java project, but I always get the error message, > Execution default of goal org.projectlombok:lombok-maven-plugin:1.1

Is there something like Lombok for TypeScript?

I'm looking for a way to reduce the boilerplate code of my NodeJS backend. In Lombok there is e.g. the possibility to inject constructors and getter/setter by a

How to use lombok with Kapt3

When I try to run Java/Kotlin android application with Lombok while using Kapt3: apply plugin: 'kotlin-kapt' javac compilation fails with numerous error: ca

Lombok not working on Eclipse Mars on Mac 10.11.3

I tried all the solutions given here on Stackoverflow regarding the same but it still won't work. Eclipse still shows compile errors on getter/setters. Steps i

Why is Lombok @Builder not compatible with this constructor?

I have this simple code: @Data @Builder public class RegistrationInfo { private String mail; private String password; public RegistrationInfo(Reg

Lombok doest not work in quarkus extension

It's the first time that I have to write a Quarkus extension and I'm having problems with Lombok, after that, i have added the dependency to the pom's dependenc

SpringBoot 2.6.3 not binding @ConfigurationProperties on List of Objects

I know this must be simple, and I've seen multiple similar questions, however my entire setup seems to be ok (as solutioned in the other posts), yet this proble