Using interceptors for analyzing performance issues Do you know statements in your code like this? [code] … long start = System.currentTimeMillis(); //some computing… long end = System.currentTimeMillis(); long duration = end – start; … [/code] Analyzing how long the execution of a method takes is a cross-cutting concern. Cross-cutting concerns like transactions, caching or measuring latencies are aspects of a …
„Analyze application performance with CDI Interceptors“ weiterlesen