摘要:
Spring的基本使用ioc,今天主要给大家说明了解决强耦合的联系,并且,注入的基本使用 Java里面的强耦合并且讲了spring是如何解决强耦合的第一种方式使用工厂模式,用的是反射,第二种方式是springspring解决强耦合的方式首先创建个bean.xml文件,在文件里面配置你要 new 的对 阅读全文
摘要:
1.注解测试在xml里面配置<context:component-scan base-package="cn.ql"></component-scan>component-scan:指定Spring扫描的包,例如你在里面配置的是cn.ql,那么spring会扫描cn.ql.xxx的所有的包base- 阅读全文
摘要:
@Autowiredprivate CustomerDao customerDao; public void addCustomer() { customerDao.addCustomer(); }public static void main(String[] args) { Class claz 阅读全文