5 ways to read and configure springboot (5): read through applicationContext.xml

5. Read through application.xml:

/**
 * 学生实体类
 * Created by ASUS on 2018/5/4
 */
@Component("Student")
public class Student {
    private String name;
    private  int age;
    public String getName() {
        return name;
}

    

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

    public int getAge() {
        return age;
    }

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

    public Student(String name, int age) {
        this.name = name;
        this.age = age;
    }

    public Student() {
    }

    @Override
public String toString() {
        return "Student{" +
                "name='" + name + '\'' +
                ", age=" + age +
                '}';
}        
}

/**
 * springboot startup class
 *
 */
 @SpringBootApplication
 //Read applicationContext.xml in the resources directory
 @ImportResource ( "classpath:applicationContext.xml" )
 public class Application

{
    public static void main( String[] args )
    {
        ApplicationContext applicationContext= SpringApplication.run(Application.class,args);
        Student student= (Student) applicationContext.getBean("student",Student.class);
        System.out.println("message:"+student.toString());
}
    


}

applicationContext.xml content:

<?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:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans
                   http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
                   http://www.springframework.org/schema/context
                   http://www.springframework.org/schema/context/spring-context-4.0.xsd  ">
    <bean name="student" class="springboot.entity.Student">
        <property name="name" value="小黄"/>
        <property name="age" value="19"/>
    </bean>


</beans>

测试结果:



我的座右铭:不会,我可以学;落后,我可以追赶;跌倒,我可以站起来;我一定行。

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325728609&siteId=291194637