S-Wing
S-Wing

Reputation: 579

How to choose spring boot parent version

I'm quite new to Spring Boot and I'm not sure on which version is preferable to use. In particular, I don't know if it's better to choose a RELEASE version ( that should be more stable, but has a nearer End Of Life ) or one of the last version.
For example, which version of Spring Boot Starter Parent is better to use between:

  • 2.3.12.RELEASE ( End of life : February 2022 )
  • 2.5.2 ( End of life: February 2023)

    Thank's a lot for any response/advice.

    Upvotes: 1

    Views: 1061

  • Answers (2)

    xTheDoctah
    xTheDoctah

    Reputation: 316

    I usually use the latest stable version of spring(in this moment is the 2.5.3). The RELEASE part in the name is not used anymore, just be careful to don't use the "SNAPSHOT" version, sometimes those are unstable.

    Upvotes: 0

    Nir Levy
    Nir Levy

    Reputation: 12953

    My rule of thumb - if you don't have any limitation (dependencies or such), always take the latest. more features/bugfixes/etc.

    and the release in the name is meaningless, they are both valid stable versions

    Upvotes: 3

    Related Questions