1

我从 TSF 中提取了一个 Java 项目,该项目是另一位同事使用 Eclipse 创建的,但是,每当我在 IntelliJ 中打开该项目时,它都会出现以下运行时异常:

线程“主”org.springframework.beans.factory.BeanDefinitionStoreException 中的异常:IOException 从类路径资源 [spring.xml] 解析 XML 文档;嵌套异常是 java.io.FileNotFoundException: 类路径资源 [spring.xml] 无法打开,因为它不存在......

我已经使用 Maven 下载了所有似乎运行良好的项目依赖项,因为我没有收到任何编译时异常。

我已经将大部分项目配置设置上传到这个imgur 相册,希望对您有所帮助。


主.java

ApplicationContext context = new ClassPathXmlApplicationContext("spring.xml");

春天.xml

    <?xml version="1.0" encoding="UTF-8"?>
 <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
        xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.3.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.3.xsd">

        <bean id="ApplicationConfiguration" class="com.XXX.YYY.ZZZ.ApplicationConfiguration" />
        <bean id="TableFactory" class="com.XXX.YYY.ZZZ.TableFactory">
            <constructor-arg ref="ApplicationConfiguration" />
        </bean>
        <bean id="ItemFactory" class="com.XXX.YYY.ZZZ.datagen.ItemFactory"/>        
        <bean id="ItemWritersPool" class="com.XXX.YYY.ZZZ.ItemWritersPool">        
            <constructor-arg ref="ItemWriterFactory" />
            <constructor-arg ref="ApplicationConfiguration" />
        </bean>
        <bean id="ItemWriterFactory" class="com.XXX.YYY.ZZZ.ItemWriterFactory">
            <constructor-arg ref="ApplicationConfiguration" />
            <constructor-arg ref="TableFactory" />
            <constructor-arg ref="ItemFactory" />
        </bean>
        <bean id="ItemReadersPool" class="com.XXX.YYY.ZZZ.ItemReadersPool">
            <constructor-arg ref="ItemReaderFactory" />
            <constructor-arg ref="ApplicationConfiguration" />
        </bean>
        <bean id="ItemReaderFactory" class="com.XXX.YYY.ZZZ.ItemReaderFactory">
            <constructor-arg ref="TableFactory" />
        </bean>

</beans>

项目.iml

<?xml version="1.0" encoding="UTF-8"?>
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
  <component name="EclipseModuleManager">
    <conelement value="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER" />
    <src_description expected_position="0">
      <src_folder value="file://$MODULE_DIR$/src" expected_position="0" />
    </src_description>
  </component>
  <component name="FacetManager">
    <facet type="Spring" name="Spring">
      <configuration>
        <fileset id="fileset" name="Spring Application Context" removed="false">
          <file>file://$MODULE_DIR$/src/spring.xml</file>
          <file>jar://$MAVEN_REPOSITORY$/io/netty/netty/3.6.3.Final/netty-3.6.3.Final.jar!/org/jboss/netty/container/spring/beans.xml</file>
          <file>jar://$MAVEN_REPOSITORY$/org/springframework/spring-context/3.2.3.RELEASE/spring-context-3.2.3.RELEASE.jar!/org/springframework/scheduling/annotation/AbstractAsyncConfiguration.class</file>
          <file>jar://$MAVEN_REPOSITORY$/org/springframework/spring-context/3.2.3.RELEASE/spring-context-3.2.3.RELEASE.jar!/org/springframework/cache/annotation/AbstractCachingConfiguration.class</file>
          <file>jar://$MAVEN_REPOSITORY$/org/springframework/spring-context/3.2.3.RELEASE/spring-context-3.2.3.RELEASE.jar!/org/springframework/context/annotation/LoadTimeWeavingConfiguration.class</file>
          <file>jar://$MAVEN_REPOSITORY$/org/springframework/spring-context/3.2.3.RELEASE/spring-context-3.2.3.RELEASE.jar!/org/springframework/context/annotation/MBeanExportConfiguration.class</file>
          <file>jar://$MAVEN_REPOSITORY$/org/springframework/spring-context/3.2.3.RELEASE/spring-context-3.2.3.RELEASE.jar!/org/springframework/scheduling/annotation/ProxyAsyncConfiguration.class</file>
          <file>jar://$MAVEN_REPOSITORY$/org/springframework/spring-context/3.2.3.RELEASE/spring-context-3.2.3.RELEASE.jar!/org/springframework/cache/annotation/ProxyCachingConfiguration.class</file>
          <file>jar://$MAVEN_REPOSITORY$/org/springframework/spring-context/3.2.3.RELEASE/spring-context-3.2.3.RELEASE.jar!/org/springframework/scheduling/annotation/SchedulingConfiguration.class</file>
          <file>file://$MAVEN_REPOSITORY$/org/springframework/spring-context/3.2.3.RELEASE/spring-context-3.2.3.RELEASE.jar</file>
        </fileset>
      </configuration>
    </facet>
  </component>
  <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="false">
    <output url="file://$MODULE_DIR$/target/classes" />
    <output-test url="file://$MODULE_DIR$/target/test-classes" />
    <exclude-output />
    <content url="file://$MODULE_DIR$">
      <sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
      <excludeFolder url="file://$MODULE_DIR$/target" />
    </content>
    <orderEntry type="sourceFolder" forTests="false" />
    <orderEntry type="inheritedJdk" />
    [-- some items manually removed --]
    <orderEntry type="library" name="Maven: org.springframework:spring-core:3.2.3.RELEASE" level="project" />
    <orderEntry type="library" name="Maven: org.springframework:spring-beans:3.2.3.RELEASE" level="project" />
    <orderEntry type="library" name="Maven: org.springframework:spring-context:3.2.3.RELEASE" level="project" />
    <orderEntry type="library" name="Maven: org.springframework:spring-aop:3.2.3.RELEASE" level="project" />
    <orderEntry type="library" name="Maven: org.springframework:spring-expression:3.2.3.RELEASE" level="project" />
    [-- some items manually removed --]
      </component>
    </module>

任何建议和/或建议将不胜感激。提前致谢!

4

2 回答 2

2

您的配置中似乎一切正常,因此我使用一个小项目进行了检查,看来问题可能来自您在 XML 标头中使用的冗余名称空间。

尝试修改以下内容:

<beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
        xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.3.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.3.xsd">

产生这样的结果:

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">

如果这不起作用,您还可以.iml通过执行以下操作来调整文件:

org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true". 您可以通过替换并让 IntelliJ 重新加载您的项目来快速true测试false。我不知道为什么 IntelliJ 会忽略您的spring.xml文件,但如果您使用 2 个单独的目录作为源和资源,正如 Maven 所建议的那样,您的问题应该会消失。

您还应该创建目录src/main/resources并将spring.xml文件放在那里。

希望这可以帮助。

于 2013-07-22T20:48:28.350 回答
0

有时这可能是工作目录的问题。这篇博客文章解释了这个问题以及如何解决它。

IntelliJ 与 Eclipse 的不同之处在于它将工作目录设置为项目根目录,这可能与您正在处理的模块的顶级目录不同。

这可以通过将工作目录设置为$MODULE_DIR$.

如果这有帮助,可以在默认 JUnit 运行配置中设置工作目录,并修复所有剩余的运行配置。

于 2014-02-12T09:20:56.520 回答