SpringSource构建了一个示例程序

时间:2010-07-30 08:13:00

标签: java eclipse spring sts-springsourcetoolsuite

我刚刚开始学习Java并且陷入了一些简单的问题。 我建议使用Spring框架,为此我下载了SpringSource Tool Suite安装程序,双击并安装它。

当我运行简单的hello world应用程序时,它可以工作。但是当我尝试使用Spring框架的一个类时,我得到了错误“主线程中的异常java.lang.NoClassDefFoundError:org / apache / commons / logging / LogFactory ...”

当我点击查看发生错误的行时,我得到了“JAR文件......没有源附件。”

来源在哪里?

我的代码:

import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.core.io.FileSystemResource;
import JavaBeanTest.Person;

public class ClassMain {

public static void main(String args[]) throws ClassNotFoundException {


try {
 FileSystemResource resource = new FileSystemResource("c:/Person.xml");
 BeanFactory factory = new XmlBeanFactory(resource);
 Person person = (Person) factory.getBean("Person");

 person.PrintName();
} catch (Exception err) {
 System.out.println("mehmet");
 System.out.println(err.getMessage());

}

}
}

我真的很感激任何帮助...

1 个答案:

答案 0 :(得分:0)

我不确定你是否还有这个问题,但我会看一下你的java构建路径,以确保包含commons-logging jar。它是您的项目直接需要的,因此您不会遇到编译时问题。

如果您在此处发布.classpath文件,我可以查看它。