您的位置:首页 > 编程语言 > Java开发

Spring学习笔记 使用annotation配置实现Bean的auto-wiring (自动绑定)

2012-07-23 21:38 991 查看
使用@Autowired标注来进行porperty与Bean的auto-wiring。

准备

首先要使用@Autowired需要在spring-config.xml 中增加配置,一般有两种方式:

1.在配置文件中增加context命名空间定义,并添加<context:annotation-config /> 标签配置。

完整代码:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> <!-- 注意上方定义中的 xmlns:context="http://www.springframework.org/schema/context"
与xsi:schemaLocation中的http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd 都需要进行定义,否则下边使用<context:annotation-config />在运行时会抛出
The prefix "context" for element "context:annotation-config" is not bound.异常
-->
<context:annotation-config />

<!-- 其他代码 -->
</beans>

2.直接加入AutowiredAnnotationBeanPostProcessor的Bean定义

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> 
<bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor"/>

<!-- 其他代码 -->
</beans>



@Autowired标注的使用方式

@Autowired可以使用在JAVA代码中的三个位置:属性,setter方法和构造方法上方。示例如下:

package autowiring;

import org.springframework.beans.factory.annotation.Autowired;

public class MessageLooper
{
@Autowired
private Message message;

public Message getMessage()
{
return message;
}

@Autowired
public void setMessage(Message message3)
{
System.out.println("setter autowired");
System.out.println(message3.getMessageContent());
this.message = message3;
}

public MessageLooper(){};
@Autowired
public MessageLooper(Message message2)
{
System.out.println("constructor autowired");
System.out.println(message2.getMessageContent());
this.message = message2;
};

public void printMessage()
{
if(message != null)
{
System.out.println("final result");
System.out.println(message.getMessageContent());
}
else
System.out.println("no message");
}
}


在XML配置autowiring时可以定义autowire的方式,byName,byType,constructor,而使用@Autowired,由放置位置不同可以区别具体进行自动绑定的属性或构造方法,但是不管放置在属性,setter方法还是构造方法上仍然需要确定是根据byName还是byType进行绑定。很多资料上说,@Autowired是根据类型绑定的也就是byType。但是根据下边的Demo代码,可以看到实际上,也有byName的匹配方式存在。

代码Demo

spring-config.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:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> 
<context:annotation-config />

<bean id="messageLooper" class="autowiring.MessageLooper"  />

<bean id="message" class="autowiring.Message" >
<property name="messageContent" value="How are you ?" />
</bean>

<bean id="message2" class="autowiring.Message"  >
<property name="messageContent" value="How are you ???????" />
</bean>

<bean id="message3" class="autowiring.Message"  >
<property name="messageContent" value="How are you !!!!!!" />
</bean>
</beans>


上边配置文件中配置了三个同类型但是不同id的bean定义。

以下根据bean定义使用@Autowired进行了标注:

package autowiring;

import org.springframework.beans.factory.annotation.Autowired;

public class MessageLooper
{
@Autowired
private Message message;

public Message getMessage()
{
return message;
}

@Autowired
public void setMessage(Message message3)
{
System.out.println("setter autowired");
System.out.println(message3.getMessageContent());
this.message = message3;
}

public MessageLooper(){};
@Autowired
public MessageLooper(Message message2)
{
System.out.println("constructor autowired");
System.out.println(message2.getMessageContent());
this.message = message2;
};

public void printMessage()
{
if(message != null)
{
System.out.println("final result");
System.out.println(message.getMessageContent());
}
else
System.out.println("no message");
}
}


执行main方法:

package autowiring;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class AutowingMain
{

/**
* @comment	[注释说明]
* @author	荣磊, 2012-7-20
*/
public static void main(String[] args)
{
String configString = "autowiring/spring-config.xml";
ApplicationContext context = new ClassPathXmlApplicationContext(configString);
MessageLooper messageLooper = context.getBean("messageLooper", MessageLooper.class);
messageLooper.printMessage();
}

}

Message类代码:

package autowiring;

public class Message
{
String messageContent;

public String getMessageContent()
{
return messageContent;
}
public void setMessageContent(String messageContent)
{
this.messageContent = messageContent;
}

}



运行结果:



通过运行结果可以看到,当有多个类型可以匹配时,Spring使用了byName的方式进行了匹配,而且匹配的顺序是constructor,field,setter。

而当有多个类型可以匹配,却没有通过byName方式可以匹配成功的话,会抛出有多于一个的相同类型的bean可以匹配的异常。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐