我遇到了问题,将 Spring 集成到我的 eclipse rcp 项目中。基本上,为了避免混淆,我创建了一个简单的带有视图的 Hello RCP,从现有的 jars(用于 spring Jars)创建了一个插件,将此项目添加到 Hello RCP 中,并将视图作为依赖项,我放置了 applicationContext.xml文件在我的 RCP 项目的 src 文件夹中。当我将 applicationContext.xml 放在 src 文件夹中时,它总是抛出 FileNotFoundException 。作为一种解决方法,我也尝试过使用绝对路径
ApplicationContext applicationContext = new FileSystemXmlApplicationContext("E:/applicationContext.xml");
这种方法thorws ClassNotFoundException: Cannot find class with bean Name .....
对于普通的 Java 应用程序,它适用于我。我该怎么做,在 Eclipse RCP 中放置 applicationContext.xml 的位置,是否有任何简单的教程用于将 spring 与 eclipse rcp 集成。如何摆脱这个问题并在我的应用程序中使用 spring。