- Java EE 8 Development with Eclipse
- Ram Kulkarni
- 332字
- 2021-06-18 18:59:51
JEE
JEE is a collection of many of the Java Community Process (https://www.jcp.org) programs. Currently, JEE is in Version 8. However, different specifications of JEE are at their own different versions.
JEE specifications can be broadly classified into the following groups:
- Presentation layer
- Business layer
- Enterprise integration layer
Note that JEE specification does not necessarily classify APIs in the preceding broad groups, but such classification could help in better understanding the purpose of the different specifications and APIs in JEE.
Before we see APIs in each of these categories, let's understand a typical JEE web application flow, as shown in the following diagram, and where each of the preceding layers fits in:

Figure 1.1: A typical JEE web application flow
Requests start from the clients. A client can be any application requesting services from a remote application—for example, it could be the browser or a desktop application. The request is first received by the web server at the destination. Examples of web servers include Apache web server, IIS, and nginx. If it is a request for static content, then it is served by the web server(s). However, a dynamic request typically requires an application server to process. JEE servers are such application servers that handle dynamic requests. Most JEE specification APIs execute in the application server. Examples of JEE application servers are WebSphere, GlassFish, and WildFly.
Most non-trivial JEE applications access external systems, such as a database or Enterprise Integration Server (EIS), for accessing data and process it. A response is returned from the application server to the web server and then to the clients.
The following sections provide a brief description of each of the JEE specifications in different layers. We will see how to use these specifications and their APIs in more detail in subsequent chapters. However, note that the following is not the exhaustive list of all the specifications in JEE. We will see the most commonly used specifications here. For the exhaustive list, please visit http://www.oracle.com/technetwork/java/javaee/tech/index.html.
- INSTANT Mock Testing with PowerMock
- Boost程序庫完全開發(fā)指南:深入C++”準(zhǔn)”標(biāo)準(zhǔn)庫(第5版)
- Mastering Visual Studio 2017
- Python 3.7網(wǎng)絡(luò)爬蟲快速入門
- 名師講壇:Java微服務(wù)架構(gòu)實(shí)戰(zhàn)(SpringBoot+SpringCloud+Docker+RabbitMQ)
- Asynchronous Android Programming(Second Edition)
- C#應(yīng)用程序設(shè)計(jì)教程
- IBM Cognos Business Intelligence 10.1 Dashboarding cookbook
- C++反匯編與逆向分析技術(shù)揭秘(第2版)
- C編程技巧:117個問題解決方案示例
- Hadoop大數(shù)據(jù)分析技術(shù)
- Node.js實(shí)戰(zhàn):分布式系統(tǒng)中的后端服務(wù)開發(fā)
- Python應(yīng)用開發(fā)技術(shù)
- Head First Kotlin程序設(shè)計(jì)
- Web前端測試與集成:Jasmine/Selenium/Protractor/Jenkins的最佳實(shí)踐