spring框架创建helloworld

1.spring是一个容器,托管他的对象的生命周期
2.spring模块,中间这一块AOP Aspects instrumentation messaging,是一些思想。
spring框架创建helloworld_第1张图片
官网
https://spring.io/
spring框架创建helloworld_第2张图片

新建spring工程
1.通过maven来创建,新建工程
spring框架创建helloworld_第3张图片
2.下一步,选择这个
这里写图片描述
3.输入项目名和包名
spring框架创建helloworld_第4张图片
4.添加运行时的jar包,tomcat的包。
spring框架创建helloworld_第5张图片
5.在main目录下新建java目录,
6.修改pom.xml中加入依赖

org.springframework
spring-context
4.3.8.RELEASE

新建package。包名com.sixstar.spring.charpter01
7.新建class,名叫HelloWorld,
public class HelloWorld {

private String userName;


public HelloWorld() {
    // TODO Auto-generated constructor stub
    System.out.println("初始化helloworld");
}


public String getUserName() {
    return userName;
}


public void setUserName(String username) {
    System.out.println("设置属性值!!!");
    this.userName = username;
}
public void sayHello(){
    System.out.println(userName+"say hellow");
}

}

8.新建Class ,Test。提供main方法
public class Test {

public static void main(String[] args) {
    HelloWorld helloWorld = new HelloWorld();
    /**
     * 1.写一个JAVAbean 2.写一个bean配置文件
     */
    // 创建IOC容器
    ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml");// 加载bean文件
    // 从spring容器中获取需要的Bean实例
    HelloWorld h2 = (HelloWorld) ctx.getBean("helloWorld");
}

}

9.在resources目录下,新建beans.xml文件。

你可能感兴趣的:(JavaEE)