解压缩下载到的压缩包,解压缩后的文件夹应用如下几个文件夹。
◆dist:该文件夹下放Spring的jar包,通常只需要 Spring.jar文件即可。该文件夹下还有一些类似spring-Xxx.jar的压缩包, 这些压缩包是spring.jar压缩包的子模块压缩包。除非确定整个J2EE应用只需要使用Spring的某一方面时,才考虑使用这中分模块压缩包。通 常建议使用Spring.jar
◆docs:该文件夹下包含spring的相关文档、开发指南及API参考文档。这些应该在以后的开发中都会十分有用
◆lib:该文件夹下包含spring编译和运行所依赖的第三方类库,该路径下的类库并不是spring必需的,但如果需要使用第三方类库的支持,这里的类库就是必需要的。
◆samples:该文件夹下包含Spring的几个简单例子,可作为Spring入门学习的案例。(仔细研究一下)
◆src:该文件夹下包含Spring的全部源文件,如果开发过程中有地方无法把握,可以参考该源文件,了解底层实现。
◆test:该文件夹下包含Spring的测试示例。(仔细研究一下)
◆tiger:该路径下存放关于JDK的相关内容
◆解压缩后的文件夹下,还包含一些关于Spring的License和项目相关文件
第一个Spring程序:
运行环境:MyEclipse + JDK1.6
(1)新建一个Dynamic Web Project,名为mySpringDemo。
(2)将解压包中的的dist\spring.jar和lib\jakarta-commons\commons-logging.jar文件复制到WEB-INF/lib路径下。
(3)在src目录下新建2个包: com.sw.test和com.sw.action
(4)在com.sw.action包中新建java文件:HelloWorld,内容如下:
public class HelloWorld {
public void say(){
System.out.println("Hello World!");
}
}
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.sw.action.HelloWorld;;
public class TestHelloWorld {
public static void main(String[] args){
ApplicationContext actx = new ClassPathXmlApplicationContext("config.xml");//使用字符串或字符串数组作为资源(比如组成context定义 的XML文件)的定位路径
HelloWorld helloWorld = (HelloWorld)actx.getBean("helloWorld");//使用getBean(String)方法就取得bean的实例
helloWorld.say();
}
}
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"
"http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<bean id="helloWorld" class="com.sw.action.HelloWorld"></bean>
</beans>
右键点击TestHelloWorld.java选择Run As->Java Application可以得到如下运行结果:
2011-2-23 15:26:13 org.springframework.context.support.AbstractApplicationContext prepareRefresh
信息: Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@1ed2ae8: display name [org.springframework.context.support.ClassPathXmlApplicationContext@1ed2ae8]; startup date [Wed Feb 23 15:26:13 CST 2011]; root of context hierarchy
2011-2-23 15:26:13 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
信息: Loading XML bean definitions from class path resource [config.xml]
2011-2-23 15:26:13 org.springframework.context.support.AbstractApplicationContext obtainFreshBeanFactory
信息: Bean factory for application context [org.springframework.context.support.ClassPathXmlApplicationContext@1ed2ae8]: org.springframework.beans.factory.support.DefaultListableBeanFactory@b2fd8f
2011-2-23 15:26:13 org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons
信息: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@b2fd8f: defining beans [helloWorld]; root of factory hierarchy
Hello World!
至此,第一个Spring程序运行完毕。
中间犯了几个愚蠢的错误,因为没有页面,所以并不是运行在服务器中的;
如何在eclipse中能够将web project自动部署到tomcat中还没有找到办法;
继续努力!