What is a session? Why use session beans?
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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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

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

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

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

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.

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
