Spring基础01

依赖注入

<dependency>
     <groupId>mysql</groupId>
     <artifactId>mysql-connector-java</artifactId>
     <version>8.0.22</version>
 </dependency>
 <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>5.3.2</version>
        </dependency>

刷新
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

创建dao层、service层、ui层

模拟三层架构:持久层dao ⇒ 和数据库交互的数据访问层、业务逻辑层 ⇒ 业务逻辑就是类似于验证,计算等、ui层 ⇒ 表现层(view),是和用户视图交互的
在这里插入图片描述在这里插入图片描述

表现层调用业务层

获取spring的Ioc核心容器,并根据id获取对象

ApplicationContext的三个常用实现类:

  • ClassPathXmlApplicationContext:它可以加载类路径下的配置文件,要求配置文件必须在类路径下。不在的话,加载不了。(更常用)
  • FileSystemXmlApplicationContext:它可以加载磁盘任意路径下的配置文件(必须有访问权限)
  • AnnotationConfigApplicationContext:它是用于读取注解创建容器的
    在这里插入图片描述
    ctrl+shif+alt+U
    在这里插入图片描述

核心容器的两个接口引发出的问题:

  • ApplicationContext: 单例对象,它在构建核心容器时,创建对象采取的策略是采用立即加载的方式。也就是说,只要一读取完配置文件马上就创建配置文件中配置的对象。
  • BeanFactory:多例对象,创建对象采取的策略是采用延迟加载的方式。也就是说,什么时候根据id获取对象了,什么时候才真正的创建对象。

表现层:

//1.获取核心容器对象
ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
// ApplicationContext ac = new FileSystemXmlApplicationContext("C:\\Users\\zhy\\Desktop\\bean.xml");
//2.根据id获取Bean对象(两种方式)
IAccountService as  = (IAccountService)ac.getBean("accountService");
IAccountDao adao = ac.getBean("accountDao", IAccountDao.class);

System.out.println(as);
System.out.println(adao);
as.saveAccount();

运行:
对象创建了
com.compance.spring.service.impl.AccountServiceImpl@13805618
com.compance.spring.dao.impl.AccountDaoImpl@56ef9176

配置文件

在resources中建立bean.xml

<?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">

    <!--把对象的创建交给spring来管理-->
    <bean id="accountService" class="com.compance.spring.service.impl.AccountServiceImpl"></bean>

    <bean id="accountDao" class="com.compance.spring.dao.impl.AccountDaoImpl"></bean>

</beans>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值