user4159962
user4159962

Reputation:

Java EE: Does implementation of Java EE 7 use native code?

Obviously java SE is implemented a lot native and a lot in java itself. I'm curious is java EE implemented just over java SE in java, or does it have native calls itself?

Upvotes: 1

Views: 60

Answers (1)

Grzegorz Żur
Grzegorz Żur

Reputation: 49181

Some implementations have native libraries that boosts their performance They are usually optional but it is recommended to use them in production.

  1. JBoss
  2. WebLogic
  3. TomEE (based on Tomcat)

Upvotes: 2

Related Questions