spring 5.1.5版本(一)

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

spring 5.1.5版本(一)

spring 5.1.5版本(二)

spring 5.1.5版本(三)

spring 5.1.5版本(四)

spring 5.1.5版本(五)

demo地址:https://gitee.com/gwlCode/springDemo

下载

1.进入spring官网:https://spring.io,点击 PROJECTS

spring 5.1.5版本(一)_第1张图片

2.选择 SPRING FRAMEWORK

spring 5.1.5版本(一)_第2张图片

3.选择 GitHub

spring 5.1.5版本(一)_第3张图片

4.选择 Spring Framework Artifacts

e795b1fa41cdb6cae2fa6762f2464360079.jpg

5.选择 http://repo.spring.io

spring 5.1.5版本(一)_第4张图片

6.依次选择 Artifacts -> libs-release-local -> org -> springframework -> spring,选择版本下载

spring 5.1.5版本(一)_第5张图片

spring 5.1.5版本(一)_第6张图片

spring 5.1.5版本(一)_第7张图片

7.下载后解压的目录为

spring 5.1.5版本(一)_第8张图片

导包

spring核心基础包

d383eefe7acfbaca072e66722b78aea57a9.jpg

导入 commons-logging-1.2.jar,下载地址:http://commons.apache.org/proper/commons-logging/download_logging.cgi

37216529039e154bccce7360cee0f229609.jpg

测试

创建 User

package com.company.bean;

public class User {
    private String name;
    private Integer age;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Integer getAge() {
        return age;
    }

    public void setAge(Integer age) {
        this.age = age;
    }
}

配置 applicationContext.xml





    
   

获取User对象

package com.company.bean;

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

public class Demo {

    public static void main(String[] args) {
        func();
    }

    static void func() {
        //创建容器对象
        ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
        //从容器取user对象
        User user = (User) ac.getBean("user");
        System.out.println(user);
    }
}

获取结果

spring 5.1.5版本(一)_第9张图片

转载于:https://my.oschina.net/gwlCode/blog/3025447

你可能感兴趣的:(spring 5.1.5版本(一))