首页 > 编程语言 > 详细

Spring Mvc 实例

时间:2015-08-11 17:57:20      阅读:221      评论:0      收藏:0      [点我收藏+]

package com.spring.test;

public interface IHelloMessage {
    public String sayHello();

}

 

package com.spring.test;

public class HelloChina implements IHelloMessage {

    public String sayHello() {
        // TODO Auto-generated method stub
        return "你好中国!";
    }

}
package com.spring.test;

public class HelloWorld implements IHelloMessage {

    public String sayHello() {
        // TODO Auto-generated method stub
        return "Hello World!";
    }

}
package com.spring.test;

public class Person {
    private IHelloMessage helloMessage;

    public IHelloMessage getHelloMessage() {
        return helloMessage;
    }

    public void setHelloMessage(IHelloMessage helloMessage) {
        this.helloMessage = helloMessage;
    }

    public String sayHello() {
        // TODO Auto-generated method stub
        return this.helloMessage.sayHello();
    }

}
package com.spring.test;

import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.core.io.FileSystemResource;
import org.springframework.core.io.Resource;

public class Main {

    /**
     * @param args
     */
    public static void main(String[] args) {
        Resource resource = new FileSystemResource("helloMessage.xml");
        @SuppressWarnings("deprecation")
        BeanFactory factory = new XmlBeanFactory(resource);
        Person person = (Person) factory.getBean("person");
        String string = person.sayHello();
        System.out.println("please to say" + string);

    }

}
<?xml version="1.0" encoding="UTF-8"?>
<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="helloWorld" class="com.spring.test.HelloWorld">
    </bean>
    <bean id="helloChina" class="com.spring.test.HelloChina">
    </bean>
    <bean id="person" class="com.spring.test.Person">
        <property name="helloMessage" ref="helloChina" />
    </bean>

</beans>

 

Spring Mvc 实例

原文:http://www.cnblogs.com/silianbo/p/4721629.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!