- Kotlin for Enterprise Applications using Java EE
- Raghavendra Rao K
- 255字
- 2021-06-10 18:49:28
Introduction to the Java EE architecture
Modern enterprise applications are often developed using a layered architecture. The most commonly-followed architecture is a three-tiered architecture. In this model, the responsibilities of an application are divided into three layers—view, business logic, and persistence. The view or presentation layer deals with presenting a user interface and is responsible for interacting with the end user and the application. The business layer consists of the core business and the domain logic of the enterprise application. This includes the code that defines the processes to run and deals with how data is created and operated on for the business problem in question. The persistence layer defines how data is stored using a database. This three-tiered architecture is as follows:
Java EE provides services to enterprise applications that are developed using a layered architecture. Servlets, Java Server Pages (JSP), or Java Server Faces (JSF) can be used for the presentation layer of the application. Typically, these components are deployed on a web container and the end user interacts with the web container using the web browser. Enterprise Java Beans are used for the business logic of the application and run in an EJB container. The JPA, meanwhile, is used for the persistence layer of the application, which maps between entities and relational database tables. This is depicted in the following diagram:
A Java EE container offers many other services. These include the Java Messaging Service ( JMS), Remote Method Invocation ( RMI), resource adapters, and web services.
- Dynamics 365 for Finance and Operations Development Cookbook(Fourth Edition)
- 零基礎(chǔ)學(xué)Scratch少兒編程:小學(xué)課本中的Scratch創(chuàng)意編程
- Arduino開(kāi)發(fā)實(shí)戰(zhàn)指南:LabVIEW卷
- 三維圖形化C++趣味編程
- Troubleshooting PostgreSQL
- 自然語(yǔ)言處理Python進(jìn)階
- 深入RabbitMQ
- Bootstrap 4 Cookbook
- Access 2010數(shù)據(jù)庫(kù)應(yīng)用技術(shù)實(shí)驗(yàn)指導(dǎo)與習(xí)題選解(第2版)
- Mastering Concurrency Programming with Java 9(Second Edition)
- Unity Android Game Development by Example Beginner's Guide
- Python預(yù)測(cè)分析實(shí)戰(zhàn)
- Elastix Unified Communications Server Cookbook
- Enterprise Application Architecture with .NET Core
- SFML Essentials