OC4J 10.1.3.5 / Spring3问题

时间:2011-02-24 15:50:42

标签: spring spring-mvc oc4j

我正在使用OC4J 10.1.3.5.0,并且在WAR / EAR中提供的Spring XML文件中存在XML命名空间的问题。

根据Oracle文档,解析OC4J中的Spring 3 XSD文件存在一个已知问题,因为它嵌入了Oracle XMLParserV2 jar并将其用于所有XML解析(这与Spring 3中使用的一些XSD技巧有关)明显地)。

我已经在Oracle上解决了这个问题,在OC4J实例上定义了我自己的XML解析器共享库,并且(在orion-application.xml中)定义了要使用的共享库。我使用xercesImpl(v 2.9.1),xml-apis(v 1.3.04)和xml-resolver(v 1.2)创建了一个共享库' apache.xml'。我尝试定义EAR以使用新库

<imported-shared-libraries>
    <imported-shared-library name="apache.xml"/>
</imported-shared-libraries>

我收到以下错误

14:50:31 ERROR (UserId:) [DispatcherServlet] Context initialization failed 
    org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: 
        Line 10 in XML document from ServletContext resource [/WEB-INF/spring/webflow-config.xml] is invalid;
    nested exception is org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: 
    The matching wildcard is strict, but no declaration can be found for element 'webflow:flow-executor'.

webflow-config.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:webflow="http://www.springframework.org/schema/webflow-config"
       xsi:schemaLocation="
               http://www.springframework.org/schema/beans 
               http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
               http://www.springframework.org/schema/webflow-config 
               http://www.springframework.org/schema/webflow-config/spring-webflow-config-2.0.xsd">

    <!-- Executes web flows -->
    <webflow:flow-executor id="flowExecutor" flow-registry="flowRegistry" />

    <!-- Rest of the file ... -->

</beans>

有没有人有任何想法?

[编辑] 摘录:

<imported-shared-libraries>
    <imported-shared-library name="apache.xml"/>
</imported-shared-libraries>

当然应该是:

<imported-shared-libraries>
    <import-shared-library name="apache.xml"/>
</imported-shared-libraries>

抱歉!

1 个答案:

答案 0 :(得分:0)

我找到了答案。事实证明这是因为我在Java 6 JVM上运行OC4J。如果其他人遇到这个问题,我们就是要解决的问题:

Oracle XML解析器无法很好地处理Spring 3 XSD文件,这是一个已知问题。您需要删除应用程序的Oracle XSD库。在orion-application.xml文件中,您需要

<imported-shared-libraries>
    <remove-inherited name="oracle.xml"/>
</imported-shared-libraries>

然后,Oracle文档会告诉您导入共享库。但是,如果您在Java 6 JVM(我们是!)上运行OC4J,则无法执行此操作。现在看起来Java 6核心中有一个XML解析器,导入Xerces库会与这些类发生冲突,从而导致奇怪的错误。

无论如何,在Java 6上,删除Oracle库,但不要导入任何其他库!