峰Spring4学习HelloWorld

Posted 有点懒惰的大青年

tags:

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

HelloWorld.java:

package com.cy.test;

public class HelloWorld {
    public void say(){
        System.out.println("hello Spring 你好");
    }
}

Test.java:

package com.cy.service;

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

import com.cy.test.HelloWorld;

public class Test {
    @SuppressWarnings("resource")
    public static void main(String[] args) {
        ApplicationContext ac =new ClassPathXmlApplicationContext("beans.xml");
        HelloWorld helloWorld = (HelloWorld) ac.getBean("helloWorld");
        helloWorld.say();
    }
}

beans.xml spring管理bean配置文件:

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

  
</beans>

console打印:

以上是关于峰Spring4学习HelloWorld的主要内容,如果未能解决你的问题,请参考以下文章

峰Spring4学习spring对JDBC的支持

峰Spring4学习依赖注入的几种方式

峰Spring4学习spring AOP的应用例子

峰Spring4学习bean之间的关系和bean的作用范围

Spring4.0学习笔记002——Spring应用初识

《一头扎进Spring4》学习笔记简介与helloworld实现