博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring Mvc 实例
阅读量:6839 次
发布时间:2019-06-26

本文共 1639 字,大约阅读时间需要 5 分钟。

 
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);    }}

 

转载于:https://www.cnblogs.com/silianbo/p/4721629.html

你可能感兴趣的文章
一台机器同时启动两个tomcat
查看>>
Determine destination location of apt-get install <package>?
查看>>
mockups
查看>>
http 头信息详解
查看>>
sql语句遇到错误: The used SELECT statements have a different number of columns :
查看>>
openlayers 根据style设置显示级别并在字体加背景框
查看>>
sys_init
查看>>
array_map与array_column之间的关系
查看>>
xml 学习
查看>>
一次性验证码
查看>>
Mac设置信认任意来源应用
查看>>
基于matlab的退化图像复原(二)------逆滤波复原
查看>>
jquery中的each各种神奇遍历用法
查看>>
代码同步到树莓派
查看>>
obj-c 坑
查看>>
MySql数据库概念
查看>>
javascript中将整数添加千位符号
查看>>
软件测试艺术一:程序正确性证明
查看>>
面向对象课程第二单元作业总结
查看>>
Linux下运行C语言程序
查看>>