Spring第一天

第一章     问候Spring4他大爷


Spring第一天



核心jar包:

http://pan.baidu.com/s/1eQF0Y9W


配置文件:

http://pan.baidu.com/s/1ntkeDuh

Service层


Test.java

package service;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import test.HelloWorld;
public class Test
{
     public static void main(String[] args) {
          ApplicationContext ac = new ClassPathXmlApplicationContext("beans.xml" );
          HelloWorld helloWorld = (HelloWorld) ac.getBean("helloWorld" );
           helloWorld.say();
     }
}



test层


HelloWorld.java

package test;
public class HelloWorld
{
     public void say()
     {
          System. out.println("Spring4大爷你好!" );
     }
}



配置文件:


beans.xml

<?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="test.HelloWorld" ></bean>
 
</beans>



你可能感兴趣的:(Spring第一天)