spring-beans.jar
spring-context.jar
spring-core.jar 源代码: 1、Bean类HelloBean : public class HelloBean {
private String helloWord;
public void setHelloWord(String helloWord) {
this.helloWord = helloWord;
}
public String getHelloWord() {
return helloWord;
}
} 2、主类SpringDemo : public class SpringDemo {
// public static void main(String[] args) {
// Resource rs =
// new FileSystemResource("beans-config.xml");
// BeanFactory factory =
// new XmlBeanFactory(rs);
//
// HelloBean hello =
// (HelloBean) factory.getBean("helloBean");
// System.out.println(hello.getHelloWord());
// } public static void main(String args[]){
// ApplicationContext context = new FileSystemXmlApplicationContext("beans-config.xml");
ApplicationContext context = new ClassPathXmlApplicationContext("beans-config.xml");
HelloBean hello = (HelloBean)context.getBean("helloBean");
System.out.println(hello.getHelloWord());
}
} 3、Spring的配置文件beans-config.xml: <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING/DTD BEAN/EN"
"[url]http://www.springframework.org/dtd/spring-beans.dtd[/url]"> <beans>
<bean id="helloBean"
class="lavasoft.springtest.HelloBean">
<property name="helloWord">
<value>Hello World!</value>
</property>
</bean>
</beans> Idea配置: 下面是Idea项目的目录结构: 配置jar和资源文件: 目录类型设置图: 按照上图配置后,运行结果如下: 研究结果: 目录有三种类型,在图中已经给出了文字说明。
下面主要看res目录:
1、这个目录一般命名为res,以表示资源。
2、若这个目录设置为“Sources”类型,则在工程编译后,resorce目录下的文件会原封不动的复制到编译后生成文件的目录,在此为classes目录,并且在Idea的工程面板中可以看到res目录的存在。
3、这个目录设置为普通文件夹类型(浅×××的文件包),则在工程编译后,resorce目录下的文件不会复制到classes目录,并且在Idea的工程面板中看不到此目录。
4、res目录下的文件要能被程序找到,则需要在Idea中配置res目录到classpath下面。参看第二个图。 5、这个配置方法适合其他的类型的配置文件比如.properties文件,原理就是将这些文件加载到calsspath中,这样就可以在Idea中调试运行了。