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

Spring-1

时间:2017-10-14 16:50:14      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:bsp   spring配置   class   beans   span   pac   工程   lob   ext.get   

不废话,实际操作中学习!!!

myeclipse版本

首先创建一个工程,添加上Spring的jar包。

右键工程名称,选择"MyEclipse"->"Add Spring Capabilites",如下图:

技术分享

创建包 com.snake.core

包下面创建2个文件

1.App.class

2.Helloworld.class

工程结构图如下:

技术分享

因为myeclipse版本问题,所以加入的Spring的jar包版本会不一致,前期学习没有影响。

Helloworld.class内容:

package com.snake.core;

public class HelloWorld {
    private String name;
    public void setName(String name) {
        this.name = name;
    }
    public void printHello() {
        System.out.println("Spring  : Hello ! " + name);
    }
}

App.class内容:

package com.snake.core;

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

public class App {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext(
                "applicationContext.xml"); HelloWorld obj = (HelloWorld) context.getBean("helloBean");
        obj.printHello();
    }
}

Spring配置文件内容

 

<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-4.1.xsd">
<!--特别提示,如果加入的spring的jar包版本不同,最后一行的spring-beans-?.?.xsd 需要进行对应的修改 像我目前的版本是4.1所以 我的文件上面是spring-beans-4.1.xsd-->
<bean id="helloBean" class="com.snake.core.HelloWorld"> <property name="name" value="Snake" /> </bean>? </beans>

 

 

 运行java控制台程序结果如下:

技术分享

c

 如果结果一样,那么恭喜你第一次使用spring进行一个helloworld工程成功。

 

Spring-1

标签:bsp   spring配置   class   beans   span   pac   工程   lob   ext.get   

原文地址:http://www.cnblogs.com/open88/p/7667442.html

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