zoukankan      html  css  js  c++  java
  • Java 2.Spring的Helloword

    一、创建web项目

    二、引用jar包

    三、引入日志配置文件

    四、创建Java类

    五、创建bean容器

    名字和路径没有特殊要求。

    ApplicationContext.xml 放在src上

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

    </beans>

    六、配置bean对象

            <!-- bean: 是容器创建Person的对象 -->
            <!-- name:相当于变量名person p = new person(); -->
            <!-- class: 类的全限定名 -->
            
            <bean name="p" class="com.Spring.pojo.Person"></bean>
    

     七、测试用例

    package com.Spring.pojo;
    
    import org.junit.Test;
    import org.springframework.context.ApplicationContext;
    import org.springframework.context.support.ClassPathXmlApplicationContext;
    
    public class IOCTest {
    	@SuppressWarnings("resource")
    	@Test
    	public void testCreatePerson() {
    		//创建容器
    		ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
    		//查找对象
    		Person p=(Person) context.getBean("p");
    		
    		System.out.println(p);
    	}
    
    }
    
  • 相关阅读:
    联考20200801 T2 皮卡丘
    联考20200729 T2 划愤
    联考20200801 T1 林海的密码
    联考20200725 T2 Tree
    联考20200721 T1 s1mple
    联考20200730 T2 小B的环
    联考20200730 T1 小B的班级
    联考20200718 T1 因懒无名
    联考20200723 T1 数
    联考20200722 T1 集合划分
  • 原文地址:https://www.cnblogs.com/yuzhenfu/p/12144398.html
Copyright © 2011-2022 走看看