Skip to content

Instantly share code, notes, and snippets.

@renatoapcosta
Last active April 13, 2019 23:41
Show Gist options
  • Save renatoapcosta/486e721926b05014d2342ebbb9e37d29 to your computer and use it in GitHub Desktop.
Save renatoapcosta/486e721926b05014d2342ebbb9e37d29 to your computer and use it in GitHub Desktop.
Lombok

Lombok

Instalando no IDE

java -jar lombok.jar

lombok-installer

Evidência na IDE

eclipse-about

Pockets

Para injetar somente no @Autowired.

@Component
@RequiredArgsConstructor(onConstructor = @__(@Autowired))
public class ApologizeService {
 
    private final Translator translator;
    private final String message;

Para desabilitar um @Setter ou um @Getter em especifico:

@Setter(AccessLevel.NONE)
private String raw = "";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment