gpt4 book ai didi

Spring @Component vs @Configuration 用于基本配置类

转载 作者:行者123 更新时间:2023-12-03 23:30:40 28 4
gpt4 key购买 nike

我有一些需要配置的服务,因此这些服务与配置类相关联。

例如:

class ExampleService {
@Autowired
ExampleConfiguration conf;

...
}

class ExampleConfiguration {
private String exampleProperty;

public void setExampleProperty(String exampleProperty) {
this.exampleProperty = exampleProperty;
}

public String getExampleProperty() {
return exampleProperty;
}
}

那么 ExampleConfiguration 是否必须声明为 @Component 或 @Configuration (或其他注释:))?和 这个类没有定义任何 bean ,这只是一个基本的配置。

最佳答案

我想你误解了@Configuration的用法注解。它应该用于基于注解的配置,而不是基于 xml 的配置。并且必须与@Bean一起使用注释,用于定义运行时可用的 bean。

看起来您实际上想要定义将存储一些配置属性的 bean。要 Autowiring 它,你可以用 @Component 标记它.您还必须通过 component-scan 告诉 spring 上下文它可以在哪里发现这个 bean。 .

关于Spring @Component vs @Configuration 用于基本配置类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18976634/

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