I recently had to run a feasibility check to upgrade an application from Jboss 7 to Jboss 8 . Documenting the min required compatible versions & the rationale here in case it helps anyone using similar tech stack.
Current Tech | Version | Tech Required for Jboss 8 | Version |
---|---|---|---|
Java | 1.8 | Java | 17 |
Java EE | 8 | Jakarta EE | 9 |
Spring | 2.5.6 | Spring | 6.0.x |
Struts | 1.x | Spring MVC | 6.0.x |
Jboss | 7.1 | Jboss | 8 |
Jakarta EE version | Package names | Description |
---|---|---|
Jakarta EE 8 | javax.* | Same as Java EE 8 only the brand name has been updated. No change in namespace. |
Jakarta EE 9 | jakarta.* | Brand names & package names are updated. Namespace changed to jakarta. |
Jakarta EE 10 | jakarta.* | Brand names & package names are updated along with changes to the API itself. |
Spring version | Supported Jakarta EE version | JDK version |
---|---|---|
Spring Framework 5.3.x | Java EE 7 - 8 | JDK 1.8 - 21 |
Spring Framework 6.0.x | Jakarta EE 9 - 10 | JDK 17 - 21 |
Struts 7.0.0 release version supporting Jakarta EE 9 has not been released yet according to WW-5141
The above is the detailed content of Jakarta EE, Java & Jboss compatibility.. For more information, please follow other related articles on the PHP Chinese website!