I am currently trying to find an application server where I could deploy my Java 8 projects. As far as I am aware, due to a bug in Glassfish 4.0 it is not possible to run any Java 8 projects on it, and Tomcat supports Java up to Java 1.7. Are there any other possibilities I am not aware of?
Asked
Active
Viewed 103 times
3
-
You need to post more details about your "application". An embedded container with Spring Boot might do what you need, but it's impossible to tell. – chrylis -cautiouslyoptimistic- May 20 '14 at 15:56
1 Answers
2
Wildfly 8 supports running on java 8's JRE (don't be confused by downloads page saying "Java EE7", this is about EE spec implemented).

Piotr Findeisen
- 19,480
- 2
- 52
- 82
-
I checked it right now and it seems Wildfly has stable support for Java up to 1.7 ( http://wildfly.org/downloads/ ) – TheMP May 20 '14 at 15:54
-
1@Niemand You are confusing Java EE 1.7 and Java SE 1.8 - they can work together. – assylias May 20 '14 at 15:57