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

Spring学习01——HelloSpring

时间:2018-02-26 16:14:28      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:ack   xsd   version   inf   imp   stat   AC   instance   classpath   

技术分享图片

 

这是一个spring入门demo:

package com.su.test;

public class HelloWorld {

    public void say(){
        System.out.println("Spring4!");
    }
}
package com.su.service;

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

import com.su.test.HelloWorld;

public class Test {
    public static void main(String[] args) {
  //通过xml配置文件来获取对象,而非使用new ApplicationContext ac
=new ClassPathXmlApplicationContext("beans.xml"); HelloWorld helloWorld=(HelloWorld)ac.getBean("helloWorld"); helloWorld.say(); } }
<?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.su.test.HelloWorld"></bean>
  
</beans>

 

Spring学习01——HelloSpring

标签:ack   xsd   version   inf   imp   stat   AC   instance   classpath   

原文地址:https://www.cnblogs.com/zzmb/p/8473417.html

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