[Book] Java Code Audit (Fundamental)
First Post:
Last Update:
Word Count:
Read Time:
Last Update:
Word Count:
133
Read Time:
1 min
El Libro
Introduction
This article is used to keep notes and summaries of the book “C++ Concurrency In Action (Second Edition)”.
The content will be continuously updated as I read through the book.
Reflection
Chapter 4 - Java EE
There are three main versions of Java platform:
- Java SE (Java Platform Standard Edition)
- Java EE (Java Platform Enterprise Edition)
- Java ME (Java Platform Micro Edition)
4.1 - Hierarchy of Java EE
Terminology
- JDBC: Java Database Connectivity
- JNDI: Java Naming and Directory
- EJB: JavaBean
- RMI: Remote Method Invocation
- Servlet: Server Applet
- JSP: JavaServer Pages
- XML: eXtensible Markup Language
- JMS: Java Message Service
Java MVC
It was introduced in 1978.
- Model: It represents an object or Java POJO with data.
- Controller: It controls logics of Model or View. It inputs data from user to Model.
- View: Visualization of data in Model