gpt4 book ai didi

kotlin - 如何从 Kotlin AllOpen 插件中排除注释?

转载 作者:行者123 更新时间:2023-12-02 12:53:03 27 4
gpt4 key购买 nike

我正在使用 Axon 框架,我可以在其中注释我的 域名 @Aggregate 的类(class)(使用 Spring 中的 @Component 进行元注释)。然后我必须通过标记 final 来为我拥有的每个私有(private)方法/字段道歉明确地。

我认为在我的情况下,我很擅长将类(class)标记为打开,所以我想手动进行,同时排除 @Aggregate来自 spring插件,但我找不到这样做的方法。

最佳答案

解决方法
根据documentation , spring插件使用 all-open只需列出 Spring 注释,同时支持元注释。所以,我们就是这样做的,但我们没有指定列表 @Component ,所以在我们的代码中,我们必须使用原型(prototype)(存储库、服务等)。这样它就不会接收 @Aggregate :

<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<configuration>
<compilerPlugins>
<!-- instead of 'spring' -->
<plugin>all-open</plugin>
</compilerPlugins>
<pluginOptions>
<!-- todo check up on https://stackoverflow.com/questions/56537496 -->
<!-- listing all spring annotations except @Component -->
<option>all-open:annotation=org.springframework.stereotype.Service</option>
<option>all-open:annotation=org.springframework.stereotype.Controller</option>
<option>all-open:annotation=org.springframework.data.repository.Repository</option>
<option>all-open:annotation=org.springframework.context.annotation.Configuration</option>
<option>all-open:annotation=org.springframework.boot.test.context.SpringBootTest</option>
<option>all-open:annotation=org.springframework.cache.annotation.Cacheable</option>
<option>all-open:annotation=org.springframework.transaction.annotation.Transactional</option>
<option>all-open:annotation=org.springframework.scheduling.annotation.Async</option>
</pluginOptions>
</configuration>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-allopen</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
</plugin>

关于kotlin - 如何从 Kotlin AllOpen 插件中排除注释?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56537496/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com