Step 11. When you run the web project, the Solution Explorer will add a new folder that is the “Log” folder. The log file will put in this folder.
The AOP will record all of the action filter information in the log file. If the web application has any problem, the error messages will be recorded by AOP in the log file. If a web application has data transformation problems, the data transformation information will be recorded by AOP in the log file.
Conclusion
The AOP can help the developer record the web application log messages. The log information will tell the developer more details on the web application from sequence 1 to sequence 6. It won’t affect the main code and help the developer fix the web application’s error message.
Reference link
Filter/Criteria – According to the developer logic and decouple methods to connect, which uses the different…
Proxy – An object representing another object, allowing do something from the original object.From Design Pattern…
Private Class Data – Restricts accessor/mutator access. Control write access to object attributes and separate data…
Flyweight – A fine-grained instance is used for efficient sharing. Reduce the create object number and…
Facade – A single class that represents an entire subsystem that hides the system complexity.From Design…
Decorator – Add new behaviors to the object without modifying the object architecture and keep existing…
View Comments