Skip to content
Snippets Groups Projects

List performance check

Open Tobias Bruns requested to merge list_performance_check into main
8 files
+ 56
15
Compare changes
  • Side-by-side
  • Inline
Files
8
@@ -42,6 +42,9 @@ import org.springframework.security.authentication.AuthenticationTrustResolver;
import org.springframework.security.authentication.AuthenticationTrustResolverImpl;
import org.springframework.security.concurrent.DelegatingSecurityContextRunnable;
import io.micrometer.core.aop.TimedAspect;
import io.micrometer.core.instrument.MeterRegistry;
@SpringBootApplication(scanBasePackages = { "de.ozgcloud" })
@EnableAsync(proxyTargetClass = true)
@EnableScheduling
@@ -83,4 +86,9 @@ public class VorgangManagerServerApplication {
return eventMulticaster;
}
@Bean
TimedAspect timedAspect(MeterRegistry registry) {
return new TimedAspect(registry);
}
}
\ No newline at end of file
Loading