Spring-第一个程序和工厂类的方法等总结01

Spring-第一个程序和工厂类的方法等总结01,第1张

Spring工厂类的其他方法:

引入依赖:pom.xml:



    4.0.0

    com.itheima
    spring02
    1.0-SNAPSHOT

    
        
            junit
            junit
            4.11
            test
        

        
            org.springframework
            spring-context
            5.1.14.RELEASE
        


    

先创建Person类:

package com.itheima;

public class Person {
}

 创建配置文件applicationContext.xml:






    

    


测试类:

package com.itheima;

import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class SpringTest {
    //Spring的第一个程序
    @Test
    public void test1(){
        //1.获得spring的工厂
        ApplicationContext ctx=new ClassPathXmlApplicationContext("/applicationContext.xml");
        //2.通过工厂类获得对象
        Person person =(Person) ctx.getBean("person");
        System.out.println("Person="+person);
    }

    /*
      Spring工厂提供的其他方法:
       getBean():有多个重载的方法
     */
    @Test
    public void test2(){
        //1.获得spring的工厂
        ApplicationContext ctx=new ClassPathXmlApplicationContext("/applicationContext.xml");
        //2.通过工厂类获得对象的重载方法2 不清强制类型转换
//        Person person = ctx.getBean("person", Person.class);
//        System.out.println("Person="+person);

        //这个方法,需要Spring工厂配置文件中只能有一个







    

    

    

 测试4

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/874767.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-13
下一篇 2022-05-13

发表评论

登录后才能评论

评论列表(0条)

保存