VOOZH about

URL: https://www.javacodegeeks.com/tag/aop

⇱ AOP Archives - Java Code Geeks


  • Enterprise Java👁 spring-interview-questions-answers
    Yatin BatraJune 26th, 2025
    0 556

    Spring AOP Method Call Within Same Class Example

    Spring AOP (Aspect-Oriented Programming) allows developers to modularize cross-cutting concerns like logging, transactions, or security. However, a common pitfall developers…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Mary ZhengJune 17th, 2024
    0 2,533

    How to Test a Spring AOP Aspect

    1. Introduction Aspect-Oriented Programming (AOP) is one of programming paradigms that separates cross-cutting concerns as aspects. It complements Object-Oriented Programming…

    Read More »
  • Core Java👁 Image
    Debadatta MishraMarch 4th, 2015
    3 497

    Create your own AOP in Java

    Introduction As you know AOP is one of the best features provided by Spring framework which provides utmost flexibility while…

    Read More »
  • Enterprise Java👁 java-interview-questions-answers
    Yegor BugayenkoSeptember 11th, 2014
    1 539

    Java Method Logging with AOP and Annotations

    Sometimes, I want to log (through slf4j and log4j) every execution of a method, seeing what arguments it receives, what…

    Read More »
  • Enterprise Java👁 java-interview-questions-answers
    Mohamed SanaullaSeptember 7th, 2014
    3 224

    Simple Aspect Oriented Programming (AOP) using CDI in JavaEE

    We write service APIs which cater to certain business logic. There are few cross-cutting concerns that cover all service APIs…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Xavier PadroFebruary 19th, 2014
    2 533

    Applying aspect oriented programming

    1.Introduction The main target of the aspect oriented programming is the separation of cross-cutting concerns. When we talk about cross-cutting…

    Read More »
  • Enterprise Java👁 Image
    Michael ScharhagFebruary 4th, 2014
    0 194

    Java: Exception translation with AspectJ

    Within this blog post I describe how you can use AspectJ to automatically translate one type of exception to another.…

    Read More »
  • Enterprise Java👁 Image
    Bear GilesJanuary 31st, 2014
    0 142

    Project Student: Simplifying Code With AOP

    This is part of Project Student. Many people strongly believe that methods should fit within your editor window (say, 20…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Niraj SinghOctober 25th, 2013
    1 199

    Aspect Oriented Programming with Spring

    Introduction In an ideal Object Oriented System, we would want to design each object to perform one specific task. However…

    Read More »
  • 1
  • 2
  • 3
  • »
Back to top button
Close