spring framework入门(1):Hello World

参照:http://www.yiibai.com/spring/spring-tutorial-for-beginners.html

示例代码下载:http://download.csdn.net/detail/u010476739/9921767

本文讲解:在maven构建的普通jar工程下,使用xml配置方式启动spring容器实现简单bean的装配

1.工具

maven

spring framwork 4.2.4.RELEASE

2.使用eclipse创建maven工程

新建工程:

选择maven工程:

 

创建工程后如下:

2:引入spring framework

使用pom文件

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.jackletter</groupId>
  <artifactId>hellospring</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>this is name</name>
  <description>this is desc</description>
  
  <properties>
  	<spring.version>4.2.4.RELEASE</spring.version>
  </properties>
  
  <dependencies>
 
        <!-- Spring Core -->
        <!-- http://mvnrepository.com/artifact/org.springframework/spring-core -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>${spring.version}</version>
        </dependency>
         
        <!-- Spring Context -->
        <!-- http://mvnrepository.com/artifact/org.springframework/spring-context -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>${spring.version}</version>
        </dependency>
         
    </dependencies>
</project>

 

3.java代码

HelloProgram

package hellospring;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import hellospring.service.HelloWorld;
import hellospring.service.HelloWorldService;

public class HelloProgram {
	public static void main(String[] args) {
		@SuppressWarnings("resource")
		ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");

		HelloWorldService service = (HelloWorldService) context.getBean("helloWorldService");

		HelloWorld hw = service.getHelloWorld();

		hw.sayHello();
	}

}


HelloWorld

 

package hellospring.service;

public interface HelloWorld {
	public void sayHello();
}


HelloWorldService

package hellospring.service;

public class HelloWorldService {
  
    private HelloWorld helloWorld;
  
    public HelloWorldService() {
  
    }
  
    public void setHelloWorld(HelloWorld helloWorld) {
        this.helloWorld = helloWorld;
    }
  
    public HelloWorld getHelloWorld() {
        return this.helloWorld;
    }
  
}

 


StrutsHelloWorld

package hellospring.service.impl;

import hellospring.service.HelloWorld;

public class StrutsHelloWorld implements HelloWorld {
  
    @Override
    public void sayHello() {
        System.out.println("Struts Say Hello!!");
    }
  
}


SpringHelloWorld

package hellospring.service.impl;

import hellospring.service.HelloWorld;

public class SpringHelloWorld implements HelloWorld {
  
    @Override
    public void sayHello() {
        System.out.println("Spring Say Hello!!");
    }
  
}

4.配置文件beans.xml (hellospring\src\main\resources\beans.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
                        http://www.springframework.org/schema/beans/spring-beans.xsd">
  
    <bean id="springHelloWorld"
        class="hellospring.service.impl.SpringHelloWorld"></bean>
    
    <bean id="strutsHelloWorld"
        class="hellospring.service.impl.StrutsHelloWorld"></bean>
  
  
    <bean id="helloWorldService"
        class="hellospring.service.HelloWorldService">
        <property name="helloWorld" ref="springHelloWorld" />
    </bean>
  
</beans>

5.运行

 

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

jackletter

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值