文件结构:
MessageBean.java
package com.zxl.spring;
public class MessageBean {
private String message;
/**
* @return the message
*/
public String getMessage() {
return message;
}
/**
* @param message the message to set
*/
public void setMessage(String message) {
this.message = message;
}
}
MessageBeanConfig.java
package com.zxl.spring;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class MessageBeanConfig {
@Bean
public MessageBean getMessageBean(){
MessageBean messageBean = new MessageBean();
messageBean.setMessage("hello!");
return messageBean;
}
}
SpringApp02.java
package com.zxl.spring;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
public class SpringApp02 {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(MessageBeanConfig.class);
MessageBean messageBean=context.getBean(MessageBean.class);
System.out.println(messageBean.getMessage());
context.close();
}
}
SpringBeans.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<bean id="messageBean" class="com.zxl.spring.MessageBean">
<property name="message" value="thank you for watching zxl spring! " />
</bean>
</beans>