我正在尝试在 Eclipse 项目中设置 spring 源代码,以便我可以使用调试器逐步完成它。
目前,我试图进入的特定代码行是这一行:
ApplicationContext context=new ClassPathXmlApplicationContext("classpath:spring.xml");
ApplicationContext 和 ClassPathXmlApplicationContext 是 org.springframework.context 的一部分:
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
在“Java Build Path”=>“Libraries”下,我为 org.springframework.context-3.1.3.RELEASE.jar 指定了文件 org.springframework.context-sources-3.1.3.RELEASE.jar 的路径.
我正在使用带有 eclipse indigo 3.7.2 的 spring 3.1.3。
更新:
我尝试将源.jar 文件添加到“调试配置”下的源选项卡中,但 eclipse 仍然找不到源。