What are EJBs?
Server side components/java objects that implement business logic.
Clients interact with EJBs through container interface.
What is resource pooling?
Expensive JDBC connection is shared between EJB instances.
What does the EJB container do?
When do POJOs become EJBs?
When you add the annotation.
ex:
import jakarta.ejb.Stateless;
@Stateless
…
What are the 3 kinds of EJBs?
Session beans
Message-Driven beans
Entity beans