第一次学习 Spring 框架,在这里记录一下过程
-
在 Maven 项目中引入依赖:
org.springframework spring-webmvc 5.3.15 -
创建一个类:
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 + '\'' + '}'; } }
-
编写 xml 文件:
-
编写测试类:
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); } }
留言