Spring学习01——HelloSpring

Posted 澡堂麦霸

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring学习01——HelloSpring相关的知识,希望对你有一定的参考价值。

 

这是一个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的主要内容,如果未能解决你的问题,请参考以下文章

让我们大声说:HelloSpring(“最易懂得Spring学习”)

hellospring,是啥意思?

2.HelloSpring

Spring-HelloSpring-IOC创建对象的方式

Spring大略学习

Spring大略学习