Reputation: 579
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:
Upvotes: 1
Views: 1061
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
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