为了账号安全,请及时绑定邮箱和手机立即绑定

Spring HelloWorld实例

标签:
Java
Spring HelloWorld实例
1.创建一个Java工程

创建一个Java工程,导入Spring的jar包。
image

2.简单的Java bean

一个简单的Javabean

package com.haifeiWu.testSpring;

public class HelloWorld {

    private String name;
    private String type;

    public void setName(String name) {
        this.name = name;
    }

    public void printHello() {
        System.out.println("Spring4 : Hello ! " + name+" 类型:"+this.type);
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }
}
3.Spring的配置文件
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
                http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd
                http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd
                http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd">

    <bean id="helloBean" class="com.haifeiWu.testSpring.HelloWorld">
        <property name="name" value="yiibai" />
        <property name="type" value="txt" />
    </bean>

</beans>
4.执行主函数
package com.haifeiWu.core;

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

import com.haifeiWu.testSpring.HelloWorld;

/**
 * Spring的执行代码
 * @author wuhaifei
 * @d2016年10月25日
 */
public class MainApp {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext(
                "applicationContext.xml"); 
        HelloWorld obj = (HelloWorld) context.getBean("helloBean");
        obj.printHello();
    }
}
5.输出结果
Spring4 : Hello ! yiibai 类型:txt
点击查看更多内容
9人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
JAVA开发工程师
手记
粉丝
4
获赞与收藏
96

关注作者,订阅最新文章

阅读免费教程

感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消