Chapter 22. Session Bean Examples
Session beans provide a simple but powerful way to encapsulate business logic within an application. They can be accessed from remote Java clients, web service clients, and from components running in the same server.
In Chapter 21, you built a stateless session bean named ConverterBean
. This chapter examines the source code of three more session beans:
CartBean
: a stateful session bean that is accessed by a remote clientHelloServiceBean
: a stateless session bean that implements a web serviceTimerSessionBean
: a stateless session bean that sets a timer
The cart Example
The cart
session bean represents a shopping cart in an online bookstore. The bean’s client can add a book to the cart, remove a book, or retrieve the ...
Get The Java™ EE 5 Tutorial, Third Edition: For Sun Java System Application Server Platform Edition 9 now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.