首先什么是bean,我感觉我看了这么久,一直没太明白,这里听老师说,bean就是对象。
在Spring中有两种类型的bean,一种是普通bean,另一种是工厂bean(FactoryBean)
普通bean和FactoryBean的区别:
普通bean,在配置文件中定义bean类型就是返回类型。
工厂bean,在配置文件中定义的bean类型可以和返回的类型不一样。
<!--Mybean.xml--> <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <!--定义bean--> <bean id="myBean" class="com.finajoy.spring5.factoryBean.MyBean"/> </beans>
//MyBean.java public class MyBean implements FactoryBean<String> { //实现这个方法,定义返回的bean @Override public String getObject() throws Exception { return "null"; } @Override public Class<?> getObjectType() { return null; } public static void main(String[] args) { ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("MyBean.xml"); String myBean = context.getBean("myBean", String.class); System.out.println(myBean); } }