We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ef1764 commit 6c2a86eCopy full SHA for 6c2a86e
src/main/java/com/github/_1c_syntax/bsl/languageserver/aop/AspectJConfiguration.java
@@ -25,6 +25,7 @@
25
import org.aspectj.lang.Aspects;
26
import org.springframework.context.annotation.Bean;
27
import org.springframework.context.annotation.Configuration;
28
+import org.springframework.context.annotation.Lazy;
29
30
/**
31
* Конфигурация фреймворка AspectJ.
@@ -38,6 +39,7 @@ public class AspectJConfiguration {
38
39
* @return Основной аспект подсистемы событий.
40
*/
41
@Bean
42
+ @Lazy(false)
43
public EventPublisherAspect eventPublisherAspect() {
44
return Aspects.aspectOf(EventPublisherAspect.class);
45
}
0 commit comments