码迷,mamicode.com
首页 > 编程语言 > 详细

spring第二个示例

时间:2016-02-17 12:45:45      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:

1 声明接口类

技术分享
package com.gc.inter;

public interface Hello {

    /**
     * Add By ZJY
     * 
     * @return 输出问侯语 2016年2月17日
     */
    public String doSalutation();
}
View Code

2 声明实体类

技术分享
package com.gc.action;

import com.gc.inter.Hello;

public class ChHello implements Hello {
    public String msg = null;

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }

    /*
     * 实现接口方法
     */
    public String doSalutation() {
        return "你好" + this.msg;
    }
}
View Code
技术分享
package com.gc.action;

import com.gc.inter.Hello;

public class EnHello implements Hello {
    public String msg = null;

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }

    /*
     * 实现接口方法
     */
    public String doSalutation() {
        return "hello" + this.msg;
    }
}
View Code

3 调用

技术分享
package com.gc.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.FileSystemXmlApplicationContext;

import com.gc.action.HelloWorld;
import com.gc.inter.Hello;
public class TestHelloWorld {
    public static void main(String[] args) {
        @SuppressWarnings("resource")
        ApplicationContext actx = new FileSystemXmlApplicationContext("config.xml");
        Hello hello=(Hello)actx.getBean("HelloWorld");
        System.out.println(hello.doSalutation());
    }
}
View Code

4 xml配置

技术分享
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
    <!-- 定义一个bean id表示唯一一个bean class表示bean的来源 -->
    <bean id="HelloWorld" class="com.gc.action.EnHello">
        <!-- 将其变量msg通过依赖注入 -->
        <property name="msg">
            <value>ch</value>
        </property>
    </bean>
</beans>
View Code

 

技术分享

 

实现spring的IoC(反向控制 )

 

spring第二个示例

标签:

原文地址:http://www.cnblogs.com/studyjava/p/5194860.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!