zoukankan      html  css  js  c++  java
  • 部署Richfaces Demo 遇到 components.xml错误

    components.xml error 错误


    <transaction:hibernateTransaction session="#{hibernateSession}" />
    报如下错误
    Multiple annotations found at this line:
    - cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for
    element 'transaction:hibernateTransaction'.
    - schema_reference.4: Failed to read schema document 'http://jboss.com/products/seam/
    transaction-2.1.0.xsd', because 1) could not find the document; 2) the document could not be read; 3)
    the root element of the document is not <xsd:schema>.
    究其原因是
    找不到http://jboss.com/products/seam/transaction-2.1.0.xsd
    于是改成
    http://jboss.com/products/seam/transaction-2.1.xsd
    继续报错
    cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element
    'transaction:hibernateTransaction'.
    于是改成
    <transaction:hibernate-transaction session="#{hibernateSession}" />

    错误不再显示
  • 相关阅读:
    echarts常用说明
    ionic4打包和ngix配置
    浏览器onbeforeunload
    vue中keepAlive的使用
    面试题
    git使用
    git常用命令
    ajax原理
    关于npm(一)
    React、Vue、Angular对比 ---- 新建及打包
  • 原文地址:https://www.cnblogs.com/liuzhengdao/p/2138644.html
Copyright © 2011-2022 走看看