gpt4 book ai didi

java - 如何在不使用 XML 文件的情况下为一个类创建多个依赖 bean?

转载 作者:行者123 更新时间:2023-12-01 16:13:14 25 4
gpt4 key购买 nike

我创建了一个带有 2 个模型类的 Spring 项目,其中一个依赖于其他带有 @Autowired 的类。

如何在 John 类中注入(inject)完全创建的 Son 对象。

目前我得到的另一个类的值为 Null 值。

package com.example.demo;

import org.springframework.stereotype.Component;

@Component
public class Son {

private String sonAge;

public String getNewsName() {
return sonAge;
}

public void setNewsName(String sonAge) {
this.sonAge = sonAge;
}

@Override
public String toString() {
return "Son [sonAge=" + sonAge + "]";
}

}


package com.example.demo;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.stereotype.Controller;

@Component
public class John {

private Son son;

public Son getSon() {
return son;
}
@Autowired
public void setSon(Son son) {
this.son = son;
}
public John() {

}
@Override
public String toString() {
return "John [son=" + son + "]";
}


}

package com.example.demo;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.ComponentScan;

@SpringBootApplication
public class NewTestDependApplication {



public static void main(String[] args) {
SpringApplication.run(NewTestDependApplication.class, args);

ApplicationContext context = new AnnotationConfigApplicationContext(NewTestDependApplication.class);
John john = (John)context.getBean("john");
System.out.println(john);


}

}

我得到的输出是“John [son=Son [sonAge=null]]”sonAge即将为null,如何创建son对象并注入(inject)它。

我想创建 10 个不同的 John 对象和 10 个不同的 Son 对象,所有对象都有不同的值。我不想使用 XML 或 @Bean 方法来创建对象。

我是这个概念的新手,所以请放宽我的要求。

最佳答案

如果您想给 Son 一个年龄,您可以在字段初始化期间设置:private String sonAge = "thousand";。除此之外,如果您不喜欢 @Bean,我看不到任何其他选项。

如果您想拥有这些的多个实例,您将需要使用一些 Qualifiers .

这里是一个例子:

@Configuration
public class SonConfig {

@Bean
@Qualifier("son1")
public Son son1() {
// Set what ever you like here
final Son son = new Son();
return son;
}
}

然后可以使用限定符在 John 中使用:

@Component
public class John {
...

@Autowired
@Qualifier("son1")
public void setSon(final Son son) {
this.son = son;
}
...
}

如果您这样做不仅仅是为了学习目的,我建议使用某种持久性解决方案或类似的解决方案。在不了解任何用例的情况下很难说,但对模型使用依赖注入(inject)通常并没有真正意义。

希望有帮助。

关于java - 如何在不使用 XML 文件的情况下为一个类创建多个依赖 bean?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62477287/

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