第一次学习 Spring 框架,在这里记录一下过程

  1. 在 Maven 项目中引入依赖:

    
        org.springframework
        spring-webmvc
        5.3.15
    
  2. 创建一个类:

    public class Hello {
       private String hello;
    
       public String getHello() {
           return hello;
       }
    
       public void setHello(String hello) {
           this.hello = hello;
       }
    
       @Override
       public String toString() {
           return "Hello{" +
                   "hello='" + hello + '\'' +
                   '}';
       }
    }
  3. 编写 xml 文件:

    
    
       
       
           
           
       
    
  4. 编写测试类:

    public class MyTest {
       public static void main(String[] args) {
           // 通过 xml 文件来创建实例
           ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
           Object hello = context.getBean("hello");
           System.out.println(hello);
       }
    }
最后修改日期: 2022年7月25日

作者

留言

撰写回覆或留言