初识Spring---Spring的简单例子

发布时间:2023-06-19 10:30

初识Spring---Spring的简单例子_第1张图片
初识Spring---Spring的简单例子_第2张图片
Hello.java

package com.Cai.pojo;

import lombok.Data;

/**
 * @Description
 * @Author Cai
 * @Date 2021-03-03 16:33
 */
@Data
public class Hello {
    private String string;
}

xml


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



    <bean id="hello" class="com.Cai.pojo.Hello">
        <property name="string" value="Spring"/>
    bean>

beans>

MyTest

import com.Cai.pojo.Hello;
import lombok.val;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
 * @Description
 * @Author Cai
 * @Date 2021-03-03 16:48
 */
public class MyTest {
    public static void main(String[] args) {
//        获取Spring的对象
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
//        取出对象
        Hello hello = (Hello) context.getBean("hello");
        System.out.println(hello.getString());
    }
}

ItVuer - 免责声明 - 关于我们 - 联系我们

本网站信息来源于互联网,如有侵权请联系:561261067@qq.com

桂ICP备16001015号