What is meant by Weaving? Different points where weaving can be applied

What is meant by Weaving? What are the different points where weaving can be applied?

- The process of applying aspects to a target object for creating a new proxy object is referred to as weaving. These aspects are woven at the following specified join points:

1. Compile Time
2. Classload Time
3. Runtime

What is meant by Weaving? What are the different points where weaving can be applied?

- In Spring AOP makes it possible to modularize and separate logging, transaction like services and apply them declaratively to the components. Hence programmer can focus on specific concerns. Aspects are wired into objects in the spring XML file in the way as JavaBean. This process is known as 'Weaving'.

- The process of applying aspects to a target object to create a new proxy object is called as Weaving. The aspects are woven into the target object at the specified joinpoints.

1. Compile Time
2. Classload Time
3. Runtime
Different types of AutoProxying
Different types of AutoProxying - BeanNameAutoProxyCreator, DefaultAdvisorAutoProxyCreator, Metadata autoproxying..
What is DataAccessException?
DataAccessException - DataAccessException is an unchecked RuntimeException. These type of exceptions are unforced by users to handle....
What is PreparedStatementCreator?
PreparedStatementCreator - To write data to database, PreparedStatementCreator is the most commonly used interface.....
Post your comment