静态工厂
applicationcontext.xml配置
<!---工厂静态方法创建对象,直接使用class指向class-->
<bean id="getuserbyfactory" class="entity.FactoryBean" factory-method="getBean"></bean>
factory类
public class FactoryBean {
public static User getBean(){
return new User();
}
}
2.非静态工厂
applicationcontext.xml配置
<!--非静态工厂加载bean-->
<bean id="factory" class="entity.Factory"></bean>
<bean id="user" class="entity.User" factory-bean="factory" factory-method="getUser"></bean>
factory
public class Factory {
public User getUser(){
return new User();
}
}
3.注解扫描
@ComponentScan扫描器
@Configuration表明该类是配置类
@Component 指定把⼀个对象加⼊IOC容器—>@Name也可以实现相同的效果【⼀般少⽤】
@Repository 作⽤同@Component; 在持久层使⽤
@Service 作⽤同@Component; 在业务逻辑层使⽤
@Controller 作⽤同@Component; 在控制层使⽤
@Resource 依赖关系
在这里插入代码片
4.注解依赖的关系
通过applicationcontext.xml配置
代码里面使用set方法进行注解
public class UserService{
private UserDao userDao;
public void setUserDao(UserDao userDao){
this.userDao = userDao;
}
}