Spring-Day4

12.HelloSpring

复制代码
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/util https://www.springframework.org/schema/util/spring-util.xsd">
<!--使用spring来创建对象,在spring这些都称为bean
    类型 变量名 = new 类型();
    Hello hello = new Hello();
​
    id = 变量名
    class = new 的对象
    property 相当于给对象中是属性设置一个值
​
-->
​
    <bean id="hello" class="com.itheima.App">
        <property name="str" value="Spirng"/>
    </bean>
</beans>

接下来,将对象取出来

复制代码
public class MyTest {
    public static void main(String[] args) {
        //获取Spring的上下文对象
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        //我们的对象都在Spring中管理了,要使用去里面取
        App hello =(App)context.getBean("hello");
        System.out.println(hello.toString());
    }
}

通过spring创建对象

复制代码
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/util https://www.springframework.org/schema/util/spring-util.xsd">
​
    <bean id="mysqlImpl" class="com.itheima.dao.UserDaoMysqlImpl"/>
    <bean id="UserServiceImpl" class="com.itheima.service.UserServiceImpl">
<!--
      ref:引用spring容器中创建好的对象
      value:具体的值,基本数据类型
      -->
        <property name="userDao" ref="mysqlImpl"/>
    </bean>
</beans>
          
          
     
//在Mytest中取出
          public class MyTest {
    public static void main(String[] args) {
        //获取ApplicationContext:拿到Spring 的容器
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        //容器有了之后,需要什么get什么
        UserServiceImpl userService = (UserServiceImpl) context.getBean("UserServiceImpl");
        UserServiceImpl.getUser();
    }
}

到了现在,我们彻底不用在程序中去改动了,要实现不同的操作,只需要在xml配置文件中修改,所谓的Ioc,一句话就是:对象由Spring来创建,管理,装配!

13.IOC创建对象的方式

  1. 使用无参构造创建对象,默认

  2. 假设要用有参构造创建对象

    复制代码
    //1.下标赋值
    <bean id="user" class="com.itheima.pojo.User">
        <constructor-arg index="0" value="Zkw"/>
    </bean>
        
    ​
    //2.通过类型创建(不建议使用)
    <bean id="user" class="com.itheima.pojo.User">
        <constructor-arg type="java.lang.String" value="Zkw"/>
    </bean>
        
        
    //3.通过参数名
    <bean id="user" class="com.itheima.pojo.User">
        <constructor-arg name="name(参数名)" value="Zkw"/>
    </bean>

总结:在配置文件加载的时候,容器中管理的对象就已经初始化了

13.注解实现自动装配

  1. 导入约束:context约束

  2. 配置注解的支持:context:annotation-config

复制代码
<?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
        https://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        https://www.springframework.org/schema/context/spring-context.xsd"
    //开启注解支持
    <context:annotation-config>
</beans>
        
        
//具体的修改方法:
  //将xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"修改为
  //xmlns:context="http://www.springframework.org/schema/context"
  //然后复制后两行,把beans改成context即可,aop导入也是如此

@Autowired

直接在属性上使用即可,也可以在set方法上使用

使用Autowired 我们可以不用编写set方法了,前提是自动装配属性在IOC容器中存在,且名字正确

可以配合**@Qualifier(value="")**来指定名字

@Resource也可以,它会先查找名字,没有对应名字再去找对应的类型,也可以加个name属性来指定

相关推荐
菠菠萝宝1 分钟前
【YOLOv8】安卓端部署-1-项目介绍
android·java·c++·yolo·目标检测·目标跟踪·kotlin
郑祎亦12 分钟前
JavaWeb开发:HTML 页面与接口对接
前端·后端·java-ee·html
CoderJia程序员甲20 分钟前
重学SpringBoot3-如何发送 Email
java·spring boot·后端·email
初晴~22 分钟前
【spring】参数校验Validation
java·c++·spring boot·后端·python·spring·validation
chudaxiakkk23 分钟前
记录spring-boot 3.X版本整合RocketMq
java·spring boot·rocketmq
Du_XiaoNan34 分钟前
Flowable第三篇、Flowable之任务分配(任务分配、流程变量、候选人和候选人组)
java·开发语言
Clang's Blog36 分钟前
23种设计模式详解(以Java为例)
java·开发语言·设计模式
绳全37 分钟前
OAuth2资源服务器白名单接口带token被拦截
java·服务器·spring
Jing_jing_X38 分钟前
心情追忆-首页“毒“鸡汤AI自动化
java·前端·后端·ai·产品经理·流量运营
安静读书40 分钟前
Java解析视频FPS(帧率)、分辨率信息
java·python·音视频