简体   繁体   中英

Java EE APIs in the Web Container

I am learning JAVA EE through oracle documentation(which i feels is great BTW), but i am not able to understand diagram on below link can someone throw some light on this?(what does it mean?)

https://docs.oracle.com/javaee/7/tutorial/img/jeett_dt_007.png

It just shows you the APIs available in the web container. So primary components that run in the web container are Servlets and JSF, however you may have also JAX-WS or JAX-RS services running there. These components may utilize various APIs, like for example JPA to access data layer, or EJB lite to use EJBs included in the application etc. And it all relies on Java SE, so you can use any class available there.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM