Pranali Rasal
Pranali Rasal

Reputation: 177

Does Spring Boot 2 support Java 10?

Since Spring has confirmed Spring Boot 2 will support Java9 and Java 8 being minimum version to run Spring Boot 2 application. Now that Java is planning to release Java 11, does Spring Boot 2 will support Java 10?

Upvotes: 5

Views: 4286

Answers (3)

Rahul Khedkar
Rahul Khedkar

Reputation: 21

Java 10 is supported as of Spring Boot 2.0.1.RELEASE. Java 11 is supported as of Spring Boot 2.1.0.M2. The plan is to officially support Java 12 as of Spring Boot 2.2

Upvotes: 1

nmyk
nmyk

Reputation: 1622

Java 10 is supported as of Spring Boot 2.0.1.RELEASE. We intend to support Java 11 as of Spring Boot 2.1.x

See: https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-with-Java-9-and-above

Upvotes: 6

agilob
agilob

Reputation: 6223

Yes, I use it on production with Java 10 and works fine.

Upvotes: 2

Related Questions