我是春天的初学者。我浏览了一些在线教程并编写了一个简单的程序,但我无法理解其价值。当我们使用 spring.xml 文件并使用 getBean 方法创建对象时。但是,在注释的情况下,我使用 new 创建对象,我认为这是不对的。请查看下面的代码,让我知道我遵循的程序是否有问题。
Hello.java:
package bean;
import org.springframework.stereotype.Component;
@Component
public class Hello {
String gender;
public void print(){
System.out.println("Hello world "+gender);
}
public String getGender() {
return gender;
}
public void setGender(String gender) {
this.gender = gender;
}
}
AppConfig.java:
package config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import bean.Hello;
@Configuration
public class AppConfig {
@Bean(name="h")
public Hello getHello(){
Hello h= new Hello();
h.setGender("male");
return h;
}
}
Driver.java:
package client;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import bean.Hello;
import config.AppConfig;
public class Driver {
public static void main(String[] args) {
// TODO Auto-generated method stub
ApplicationContext ct=new AnnotationConfigApplicationContext(AppConfig.class);
Hello h=ct.getBean("h",Hello.class);
h.print();
}
}
正如您在 AppConfig.java 中看到的,我正在使用
Hello h= new Hello();
这看起来有问题。如果我必须自己创建对象,那为什么我们需要 spring。请建议我在这里做错了什么。
MMMHUHU
翻过高山走不出你
慕侠2389804
相关分类