1spring
Posted linux777
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1spring相关的知识,希望对你有一定的参考价值。
最新开发包及文档下载地址
spring-framework-4.0.6.RELEASE-dist.zip
核心jar 包:
src/beans.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans">
<bean class="com.java1234.test.HelloWorld" id="helloWorld"/>
</beans>
package com.java1234.test;
public class HelloWorld {
public void say(){
System.out.println("Spring4大爷你好!");
}
}
package com.java1234.service;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.java1234.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();
}
}
以上是关于1spring的主要内容,如果未能解决你的问题,请参考以下文章