• @tyler
    link
    31 month ago

    You shouldn’t use Lombok, as it uses non-public internal Java APIs, which is why it breaks every release. At one point we had a bug with Lombok that only resolved if you restarted the application. Switching off of Lombok resolved the issue.

    Just switch to kotlin. You can even just use Kotlin as a library if you really want (just for POJOs), but at this point Kotlin is just better than Java in almost every way.

    • @[email protected]
      link
      fedilink
      31 month ago

      I agree but I have tried like hell to get my team to use Kotlin but it’s hard to convince upper management. The team is reluctant to switch as well.

      Using Lombok is the next best thing.

      Though for POJOs that are immutable you can use record classes now.