Table of Contents
What is a session
Why use session beans
Home Java javaTutorial What is a session? Why use session beans?

What is a session? Why use session beans?

Jun 21, 2017 am 10:14 AM
bean session basic knowledge series

My blog article URL

What is a session

The connection between the client and the server within a limited time period

Why use session beans

Because most of EJB services are specifically provided to session beans

1. Concurrency and thread safety: Containers use many technologies to automatically ensure that developers do not have to worry about concurrency or thread safety. Thread safety issues
2. Service provision of remote processing and Web services
3. Affairs and security management
4. Interceptor

Session bean specification

1. Have at least one business interface (not required after EJB3.1)
2. The session bean must be concrete, and the session bean cannot be defined as final or abstract
3. The session bean must have a constructor without parameters
4. You can define business methods and life cycle callback methods in the session bean class or parent class
5. A session bean can be a subclass of another session bean or any other POJO. When it is a subclass of another session bean, the life cycle callback methods and dependency injection annotations defined in the parent class will be inherited by the current bean class
6. Session bean methods cannot start with "ejb". All business methods must be public and cannot be final or static methods. In addition, if the session bean is remote, all input and output parameters must implement the serialization interface

Business interface

1. Local interface: @Local Collaborative operations in the same container (JVM) instance
2. Remote interface: @Remote Collaborative operations in different container (JVM) instances are accessed through RMI
3. Web service endpoint interface: @WebService is unique to stateless beans and can expose stateless beans as SOAP-based Web services

Handling multiple business interfaces: You cannot mark the same interface with more than one access type annotation. You can choose to use the parent interface and then inherit the sub-interface to avoid code duplication

Stateless session bean

Used to model tasks that do not maintain session state

There are two creation modes, one is pooling, in which the container creates a session bean pool, creates a corresponding number of session bean examples, and manages them; the other is singleton mode (requires EJB3.1 and later versions Only supported)

Annotation: @Stateless notifies the container that this class is a stateless bean, and the container will automatically provide the bean with: concurrency control, thread safety, pooling, transaction management and other services

Stateful session bean

Used to model tasks that require maintaining session state. The EJB container will maintain the session state for us

There must be a method annotated with @Remove

Note: Select the session data appropriately and try to use data that takes up less resources; remember to use passivation and deletion

Alternative: If it is a web application, use HttpSession to maintain state

Best implementation of session bean

1. Select the session bean type, that is, whether it is a stateful bean or a stateless bean

2. Analyze session bean interface type (@Local, @Remote)

3. Do not inject stateful session beans into stateless session beans or Servlets

4. Split cross-cutting transaction items (use interceptor AOP to process)

5. Data types stored in stateful session beans (choose carefully)

6. Stateful session beans must define @Remove annotated methods

The above is the detailed content of What is a session? Why use session beans?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Xiaomi 15 series full codenames revealed: Dada, Haotian, Xuanyuan Xiaomi 15 series full codenames revealed: Dada, Haotian, Xuanyuan Aug 22, 2024 pm 06:47 PM

The Xiaomi Mi 15 series is expected to be officially released in October, and its full series codenames have been exposed in the foreign media MiCode code base. Among them, the flagship Xiaomi Mi 15 Ultra is codenamed "Xuanyuan" (meaning "Xuanyuan"). This name comes from the Yellow Emperor in Chinese mythology, which symbolizes nobility. Xiaomi 15 is codenamed "Dada", while Xiaomi 15Pro is named "Haotian" (meaning "Haotian"). The internal code name of Xiaomi Mi 15S Pro is "dijun", which alludes to Emperor Jun, the creator god of "The Classic of Mountains and Seas". Xiaomi 15Ultra series covers

How does SpringBoot delete useless beans in referenced jar packages? How does SpringBoot delete useless beans in referenced jar packages? May 14, 2023 pm 08:07 PM

Preface: The company has a project that is in a hurry, and some of the project's requirements are the same as some of the functions of previous projects. In order to speed up and directly introduce some modules in the previous multi-module maven project in the form of jar packages. The new project was launched. Although it saved a lot of development time, it also caused the project to need to import the related dependencies of the project jar, causing the project to be bloated and slow to start. Is there a way to make the project load only the beans it needs? Of course, we can directly modify the source code and repackage it to solve the problem, but this method is too troublesome. Through Baidu's method, the query can use the @ComponentScan annotation on the springboot startup class to implement the code example @Componen

The best time to buy Huawei Mate 60 series, new AI elimination + image upgrade, and enjoy autumn promotions The best time to buy Huawei Mate 60 series, new AI elimination + image upgrade, and enjoy autumn promotions Aug 29, 2024 pm 03:33 PM

Since the Huawei Mate60 series went on sale last year, I personally have been using the Mate60Pro as my main phone. In nearly a year, Huawei Mate60Pro has undergone multiple OTA upgrades, and the overall experience has been significantly improved, giving people a feeling of being constantly new. For example, recently, the Huawei Mate60 series has once again received a major upgrade in imaging capabilities. The first is the new AI elimination function, which can intelligently eliminate passers-by and debris and automatically fill in the blank areas; secondly, the color accuracy and telephoto clarity of the main camera have been significantly upgraded. Considering that it is the back-to-school season, Huawei Mate60 series has also launched an autumn promotion: you can enjoy a discount of up to 800 yuan when purchasing the phone, and the starting price is as low as 4,999 yuan. Commonly used and often new products with great value

How to use sessions to implement user login and logout in the Slim framework How to use sessions to implement user login and logout in the Slim framework Jul 28, 2023 pm 11:21 PM

Introduction to the method of using sessions to implement user login and logout in the Slim framework: Sessions are a technology commonly used in web applications. It can be used to store and manage user-related data, such as the user's login status. wait. As a lightweight PHP framework, the Slim framework provides a simple API to handle sessions. This article will introduce how to use sessions in the Slim framework to implement user login and logout functions. To install the Slim framework first, we need to

Java Spring framework creation project and Bean storage and reading example analysis Java Spring framework creation project and Bean storage and reading example analysis May 12, 2023 am 08:40 AM

1. Creation of Spring project 1.1 Creating a Maven project The first step is to create a Maven project. Spring is also based on Maven. 1.2 Add spring dependencies The second step is to add Spring support (spring-context, spring-beans) to the Maven project and add dependencies in the pom.xml file. org.springframeworkspring-context5.2.3.RELEASEorg.springframeworkspring-beans5.2.3.RELEASE refreshes and waits for loading to complete. 1.3 Create startup class The third step is to create

How to use sessions for user authentication in the Slim framework How to use sessions for user authentication in the Slim framework Jul 28, 2023 pm 05:57 PM

Method of using sessions (Sessions) for user authentication in the Slim framework In web applications, user authentication is an important function, which ensures that only authorized users can access restricted resources. Sessions are a commonly used authentication method that ensures that users remain authenticated throughout the session by storing user identity and status information. The Slim framework provides convenient tools and middleware to handle sessions and user authentication. Below we will introduce how to use sessions in the Slim framework

How to choose between iPhone 15 and iPhone 15 Pro? Nine major differences at once How to choose between iPhone 15 and iPhone 15 Pro? Nine major differences at once Sep 14, 2023 am 08:01 AM

iPhone15 and iPhone15Pro were officially released today. However, as high-end models, the Pro series not only has a higher price, but also has many exclusive features. Consumers must recognize the differences before buying, so as not to discover some problems after buying iPhone15. The function is only available in the Pro series. Although the monitors are equipped with the same display panel, the ProMotion automatic adaptive update frequency technology and the always-on display function are still exclusive to the Pro series. The rest of the iPhone 15 and iPhone 15 Pro series are the same in terms of resolution, contrast, peak brightness, etc. Action button The action button is currently an exclusive design for the iPhone 15 Pro series, allowing users to personalize it.

What are the ways to obtain beans in Spring Boot? What are the ways to obtain beans in Spring Boot? May 12, 2023 pm 03:22 PM

When using the spring framework, we all know that if a class uses dependency injection methods such as @Service and @Autowire to reference other objects, in another class, the instance of this class can only be obtained through spring's IOC weight. , those dependent objects can be initialized correctly, otherwise those dependent objects are null. So there is a question, how to get the beans in the springioc container (spring managed beans) in ordinary classes. We all know that the ApplicationContext context object in spring is the basis for obtaining beans. In springboot, we can pass

See all articles