1、spring的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.xsd"><bean id="bookDao" class="com.itheima.dao.impl.BookDaoImpl" scope="prototype"/><!-- name是bean的别名 ,可以有多个name用空格 逗号 分号分割--><bean id="bookService" name="service" class="com.itheima.service.impl.BookServiceImpl"><property name="bookDao" ref="bookDao"></property></bean></beans>
1.1、spring中可以使用name设置一个bean的别名,多个别名可以使用空格,逗号,分号分割
1.2、spring中可以可以设置scope参数,使用单例模式和非单例模式,默认是单例模式
scope="prototype" || scope="singleton"
2、spring使用别名
public static void main(String[] args) {ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");BookService bookService = (BookService) ctx.getBean("service");bookService.save();}