标签:基类 name test pac 配置 使用 static 需要 抛出异常
Spring 中有两种类型的 Bean, 一种是普通Bean, 另一种是工厂Bean, 即FactoryBean. 工厂 Bean 跟普通Bean不同, 其返回的对象不是指定类的一个实例, 其返回的是该工厂 Bean 的 getObject 方法所返回的对象
package yang.mybatis.test; import org.springframework.beans.factory.FactoryBean; /** * Created by yangshijing on 2017/12/2 0002. */ public class CarFactoryBean implements FactoryBean { public String name; public String brand; public double price; public String getBrand() { return brand; } public void setBrand(String brand) { this.brand = brand; } public String getName() { return name; } public void setName(String name) { this.name = name; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } public Object getObject() throws Exception { return new Car(name,brand,price); } public Class<?> getObjectType() { return Car.class; } public boolean isSingleton() { return true; } }
<bean id="car" class="yang.mybatis.test.CarFactoryBean"> <property name="brand" value="BM"></property> <property name="name" value="jsf"></property> <property name="price" value="2131312"></property> </bean>
组件扫描(component scanning): Spring 能够从 classpath 下自动扫描, 侦测和实例化具有特定注解的组件.
特定组件包括:
@Component: 基本注解, 标识了一个受 Spring 管理的组件
@Respository: 标识持久层组件
@Service: 标识服务层(业务层)组件
@Controller: 标识表现层组件
对于扫描到的组件, Spring 有默认的命名策略(类似于XML配置中的id): 使用非限定类名, 第一个字母小写. 也可以在注解中通过 value 属性值标识组件的名称
@Component(value ="car")
当在组件类上使用了特定的注解之后, 还需要在 Spring 的配置文件中声明
<context:component-scan>
base-package 属性指定一个需要扫描的基类包,Spring 容器将会扫描这个基类包里及其子包中的所有类.;当需要扫描多个包时, 可以使用逗号分隔.
<context:include-filter> 子节点表示要包含的目标类 <context:exclude-filter> 子节点表示要排除在外的目标类
@Autowired @Qualifier(value = "userjdbcDaoImp") UserDao userDao; @Autowired @Qualifier(value = "userXMLDaoImp") UserDao userDao;
public class BaseDao<T> {}
public class BaseService<T> { @Autowired protected BaseDao<T> baseDao; public void save(){ System.out.print(baseDao); } }
@Component public class UserDao extends BaseDao<User> {}
@Component public class UserService extends BaseService<User>{}
public static void main(String[] args){ //1.从classpath路径下的applicationContext.xml文件中获取IOC容器 ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml"); UserService userService =(UserService) applicationContext.getBean("userService"); userService.save(); }
控制台输出:*.UserDao@14cd1699
标签:基类 name test pac 配置 使用 static 需要 抛出异常
原文地址:http://www.cnblogs.com/realshijing/p/7955695.html