- Developing Middleware in Java EE 8
- Abdalla Mahmoud
- 310字
- 2021-07-23 19:24:29
Chapter roadmap
The learning journey we'll be moving on alongside the next chapter is planned to be as follows:
- We'll start by introducing the concept of dependency injection and how to use it to simplify management processes, and the different dependencies and resources your application maintains.
- We'll move on to data management topics by learning how to map your data into relational databases using the Java Persistence API, and how to validate your business objects against your business rules using the Java Validation API.
- Next, we'll learn how to encapsulate business logic and expose it to other layers by learning how to build business components using the Enterprise JavaBeans API, and how to expose your business functionalities into RESTful services using the Java API for RESTful services, JAX-RS. We'll also cover a newly introduced API, JSON-B 1.0, and learn how to use it to perform complex JSON processing operations.
- After that, we'll learn about another system-to-system communication model, which is messaging. We'll understand the concepts and architectural philosophy of messaging techniques, and learn how to apply our knowledge using JMS 2.0.
- Then, we'll learn how to send notifications to our system users and send other information by sending them emails using the JavaMail API.
- Then, we'll learn how to build interactive web applications with real-time communication using the WebSockets API.
- Then, we'll learn how to secure our enterprise applications using the newly introduced Java Security API, and how to provide authentication and authorization features for any enterprise application, with this easy-to-use API.
Here's a full list of the main APIs we'll be covering in this book:
- Contexts and Dependency Injection (CDI) 2.0
- Java Persistence API 2.1
- Bean Validation API 2.0
- Enterprise JavaBeans 3.2
- Java API for RESTful Services JAX-RS 2.1
- JSON-Binding (JSON-B) API 1.0 (new)
- Java Messaging System (JMS) 2.0
- JavaMail 1.6.
- Java Security 1.0 (new)
- WebSockets 1.1

推薦閱讀
- Cocos2D-X權(quán)威指南(第2版)
- 程序員面試筆試寶典
- TypeScript圖形渲染實(shí)戰(zhàn):基于WebGL的3D架構(gòu)與實(shí)現(xiàn)
- R的極客理想:工具篇
- 精通Python設(shè)計(jì)模式(第2版)
- 網(wǎng)站構(gòu)建技術(shù)
- Instant Ext.NET Application Development
- Java網(wǎng)絡(luò)編程核心技術(shù)詳解(視頻微課版)
- 小型編譯器設(shè)計(jì)實(shí)踐
- ExtJS Web應(yīng)用程序開發(fā)指南第2版
- Scrapy網(wǎng)絡(luò)爬蟲實(shí)戰(zhàn)
- MySQL數(shù)據(jù)庫應(yīng)用實(shí)戰(zhàn)教程(慕課版)
- 安卓工程師教你玩轉(zhuǎn)Android
- 用Python動手學(xué)統(tǒng)計(jì)學(xué)
- 游戲設(shè)計(jì)的底層邏輯