Home Java javaTutorial Introduction to the annotation method of AOP in spring

Introduction to the annotation method of AOP in spring

Jun 30, 2017 am 10:42 AM
spring annotation

 AOP (Aspect Oriented Programming): The professional term for AOP is "Aspect Oriented Programming". What is aspect oriented programming? My understanding is: enhancing functions without modifying the source code. Okay, let's talk about the aop annotation method. This will be mentioned by the way.

1. Build an environment for the aop annotation method (import the following packages)

2. Implement

After the environment is set up, create the project.

 1. Create an interface class (CustomerDao) and add two methods

 2. After the interface class is created, it is natural to create a new implementation class (CustomerDaoImpl) and implement the methods in the interface

 

3. After completing the above basic work, we need to use the idea of ​​springIOC and hand over the customerDaoImpl class to spring management

   Create an xml file named applicationContext.xml in the src directory

   Bean is a tag pair in spring , you can understand it as a small item, the id is the name you choose, but it is usually the class name and the first letter is lowercase. What is added to class is the full path of the class

  Turn on automatic annotation/agent: only if automatic is turned on Agent, the annotations we write next will have real applications

   

   4. The environment and basic classes have been written, and then a Demo class can be created for implementation

  

First we need to take out the CustomerDaoImpl class that exists in the spring container

  Codes '1' and '2' do this.

  As the name suggests, you have to tell it where to get it from, so you have to give it a path

  "2" is the way of annotation, called dependency injection: inject the class written long ago in the xml file into the field customerDao , the name in @Resource refers to the id value in the previous bean

The next step is to test (need to add code '3''4'), write a run1() and add @Test to the method, double-click the method when testing After selecting the name, right-click and select Run on junit. This is the unit test, which is very convenient.

With the previous preparation, after executing the run1 method, you can display the two lines of output in the implementation class

3. aop aspect class

1. Create the aspect class MyAspectAnno.java (in the configuration file Add a bean and continue to hand it over to spring management)

 2. Add functional methods that need to be enhanced

 The code in value is an expression, and the * after public refers to any type of return value. , save() refers to where to enhance or add functions. After these codes are written, it means that the method under the annotation @After will be executed after save() is executed, that is, after(). This is enhancement

But when we write more notifications (surround notifications, pre-notifications, etc.), we have to add expression code every time, and copying and pasting is also troublesome. Here we can add an entry point and implement it as follows:

We only need to do this in the future, and a surrounding notification is added below:

 

  

 The value is no longer a long expression, which is also convenient for future maintenance

The above picture is very clear It shows that we have successfully implemented functional enhancements, using aop ideas and using annotations (the notifications we added are executed after and around the entry point (save()))

The above is the detailed content of Introduction to the annotation method of AOP in spring. 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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
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)

A new programming paradigm, when Spring Boot meets OpenAI A new programming paradigm, when Spring Boot meets OpenAI Feb 01, 2024 pm 09:18 PM

In 2023, AI technology has become a hot topic and has a huge impact on various industries, especially in the programming field. People are increasingly aware of the importance of AI technology, and the Spring community is no exception. With the continuous advancement of GenAI (General Artificial Intelligence) technology, it has become crucial and urgent to simplify the creation of applications with AI functions. Against this background, "SpringAI" emerged, aiming to simplify the process of developing AI functional applications, making it simple and intuitive and avoiding unnecessary complexity. Through "SpringAI", developers can more easily build applications with AI functions, making them easier to use and operate.

Use Spring Boot and Spring AI to build generative artificial intelligence applications Use Spring Boot and Spring AI to build generative artificial intelligence applications Apr 28, 2024 am 11:46 AM

As an industry leader, Spring+AI provides leading solutions for various industries through its powerful, flexible API and advanced functions. In this topic, we will delve into the application examples of Spring+AI in various fields. Each case will show how Spring+AI meets specific needs, achieves goals, and extends these LESSONSLEARNED to a wider range of applications. I hope this topic can inspire you to understand and utilize the infinite possibilities of Spring+AI more deeply. The Spring framework has a history of more than 20 years in the field of software development, and it has been 10 years since the Spring Boot 1.0 version was released. Now, no one can dispute that Spring

What are the implementation methods of spring programmatic transactions? What are the implementation methods of spring programmatic transactions? Jan 08, 2024 am 10:23 AM

How to implement spring programmatic transactions: 1. Use TransactionTemplate; 2. Use TransactionCallback and TransactionCallbackWithoutResult; 3. Use Transactional annotations; 4. Use TransactionTemplate in combination with @Transactional; 5. Customize the transaction manager.

How are annotations used for test methods in the JUnit framework? How are annotations used for test methods in the JUnit framework? May 06, 2024 pm 05:33 PM

Annotations in the JUnit framework are used to declare and configure test methods. The main annotations include: @Test (declaration of test methods), @Before (method run before the test method is executed), @After (method run after the test method is executed), @ BeforeClass (method that runs before all test methods are executed), @AfterClass (method that runs after all test methods are executed), these annotations help organize and simplify the test code, and improve the reliability of the test code by providing clear intentions and configurations. Readability and maintainability.

The King of PHP Code Documentation: An Advanced Guide to PHPDoc The King of PHP Code Documentation: An Advanced Guide to PHPDoc Mar 02, 2024 am 08:43 AM

Introduction: PHPDoc is a comment standard for PHP code that produces easy-to-understand and informative documentation. By using specific comment tags, PHPDoc allows developers to provide important details about functions, classes, methods, and other code elements. This advanced guide takes an in-depth look at PHPDoc, demonstrating its capabilities and providing effective documentation strategies. Syntax and tags: PHPDoc comments start with double slashes (//) or multi-line comments (/**/). Here are some common annotation tags: @param: Defines the parameters of a function or method. @return: Specifies the return value of the function or method. @throws: Describes exceptions that may be thrown by a function or method. @var: defines the attributes or instances of the class

How do annotations in the Jackson library control JSON serialization and deserialization? How do annotations in the Jackson library control JSON serialization and deserialization? May 06, 2024 pm 10:09 PM

Annotations in the Jackson library control JSON serialization and deserialization: Serialization: @JsonIgnore: Ignore the property @JsonProperty: Specify the name @JsonGetter: Use the get method @JsonSetter: Use the set method Deserialization: @JsonIgnoreProperties: Ignore the property @ JsonProperty: Specify name @JsonCreator: Use constructor @JsonDeserialize: Custom logic

How to set transaction isolation level in Spring How to set transaction isolation level in Spring Jan 26, 2024 pm 05:38 PM

How to set the transaction isolation level in Spring: 1. Use the @Transactional annotation; 2. Set it in the Spring configuration file; 3. Use PlatformTransactionManager; 4. Set it in the Java configuration class. Detailed introduction: 1. Use the @Transactional annotation, add the @Transactional annotation to the class or method that requires transaction management, and set the isolation level in the attribute; 2. In the Spring configuration file, etc.

Detailed explanation of the operation steps of MyBatis annotations and dynamic SQL Detailed explanation of the operation steps of MyBatis annotations and dynamic SQL Feb 18, 2024 pm 03:29 PM

Detailed introduction to the usage of MyBatis annotation dynamic SQL MyBatis is a persistence layer framework that provides us with convenient persistence operations. In actual development, it is usually necessary to dynamically generate SQL statements based on business needs to achieve flexible data operations. MyBatis annotation dynamic SQL is designed to meet this demand.

See all articles