[华为云在线课程][Spring入门][IoC][一][下][学习笔记]
【摘要】 2.11.id和name的区别在XML配置中,可以通过id或者name给Bean设置唯一标识。两者区别为:name支持取多个值,中间用,隔开<bean class="org.example.beanscope.User" name="user1,user2,user3" scope="prototype"/>通过user1,user2,user3都可以获取到当前对象public class...
2.11.id和name的区别
在XML配置中,可以通过id或者name给Bean设置唯一标识。
两者区别为:name支持取多个值,中间用,隔开
<bean class="org.example.beanscope.User" name="user1,user2,user3" scope="prototype"/>
通过user1,user2,user3都可以获取到当前对象
public class Main {
public static void main(String[] args) {
ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationcontext.xml");
User user1 = applicationContext.getBean("user1", User.class);
User user2 = applicationContext.getBean("user2", User.class);
System.out.println(user1); //User{username='null', address='null', id=null, cat=null, cats=null, favorite=null, map=null, info=null}
System.out.println(user2); //User{username='null', address='null', id=null, cat=null, cats=null, favorite=null, map=null, info=null}
}
}
id不支持多个值,就算用,隔开还是一个值。
<bean class="org.example.beanscope.User" id="user1,user2,user3"/>
这个配置表示Bean名字为user1,user2,user3
public class Main {
public static void main(String[] args) {
ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationcontext.xml");
User user1 = applicationContext.getBean("user1,user2,user3", User.class);
User user2 = applicationContext.getBean("user1,user2,user3", User.class);
System.out.println(user1); //User{username='null', address='null', id=null, cat=null, cats=null, favorite=null, map=null, info=null}
System.out.println(user2); //User{username='null', address='null', id=null, cat=null, cats=null, favorite=null, map=null, info=null}
}
}
2.12.混合配置
混合配置就是Java配置加上XML配置。可以在Java配置中引入XML配置。
@Configuration
@ImportResource("classpath:applicationcontext.xml")
public class JavaConfig {
}
2.13.Aware接口
Aware,翻译为感知。以上面的代码为例,之所以UserDao能够注入到UserService,是因为它们两个都被Spring容器管理。如果直接new一个UserService是没用的,因为UserService没有被Spring容器管理,所以不会注入Bean。
实际开发中,可能会遇到一些类,需要获取到容器的详细信息,可以通过Aware接口来实现。Aware是一个空接口,有很多实现类:
这些实现的接口的共同特征:
- 都以Aware结尾。
- 都继承自Aware。
- 接口内均定义了一个set方法。
每个子接口均提供了一个set方法,方法参数是Bean需要感知的内容,因此我们需要在Bean中声明相关的成员变量来接受这个参数。接收到参数后就可以通过参数获取到容器的详细信息。
package org.example.aware;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;
@Component
public class SayHello implements ApplicationContextAware {
private ApplicationContext applicationContext;
public String sayHello(String name) {
boolean userDao = applicationContext.containsBean("userDao");
System.out.println(userDao);
return "hello " + name;
}
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
this.applicationContext = applicationContext;
}
}
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)