zoukankan      html  css  js  c++  java
  • 【Spring】第一个hello world程序

    我们先写一个类 里面有个字符串

    public class Hello {
    
        private String str;
    
        public String getStr() {
            return str;
        }
    
        public void setStr(String str) {
            this.str = str;
        }
    
        @Override
        public String toString() {
            return "Holle [str=" + str + "]";
        }
    }

    注意里面的set方法 非常重要

    然后我们用spring的配置文件进行类的注册

    <?xml version="1.0" encoding="UTF-8"?>
    <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">
    
    
        <!--在Spring中创建对象,在Spring这些都称为bean
            类型 变量名 = new 类型();
            Holle holle = new Holle();
    
            bean = 对象(holle)
            id = 变量名(holle)
            class = new的对象(new Holle();)
            property 相当于给对象中的属性设值,让str="Spring"
        -->
    
        <bean id="hello" class="com.lei.pojo.Hello">
            <property name="str" value="Spring"/>
        </bean>
    </beans>

    可以看到最后那几行是非常重要的 我们声明了一个bean 名字叫hello 类是来自com lei pojo 的Hello类

    然后此实例对象的字段str为"Spring“(这里使用到了set方法)

    我们进行测试一下

    public class HelloTest extends TestCase {
        @Test
        public void test(){
            //获取Spring的上下文对象
            ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
            //我们的对象下能在都在spring·中管理了,我们要使用,直接取出来就可以了
            Hello holle = (Hello) context.getBean("hello");
            System.out.println(holle.toString());
        }
    }

    分享一个好用的快捷键(Crtl+H)查看继承关系图

  • 相关阅读:
    手机进水不要慌,四个步骤告诉您正确处理方法!
    2021-08-17:学习项目代码流程
    Docker使用Centos镜像安装Openssh服务
    OpenResty简介、下载流程、简单教学
    go接收者和锁注意事项
    PHPstorm精进
    centos7找回root密码
    功能测试
    删除排序数组中的重复项
    Java多线程
  • 原文地址:https://www.cnblogs.com/cckong/p/14359241.html
Copyright © 2011-2022 走看看