2016-11-09 92 views
0

用于测试目的我有一个blueprint.xml像这样。这个蓝图包含刚刚处理了在同一航线抛出的异常的路线,我宣布一个bean该死作为例外豆会抛出java.lang.IllegalArgumentExceptionjboss fuse中的部署错误

<?xml version="1.0" encoding="UTF-8"?> 
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" 
    xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.0.0" 
    xmlns:cxf="http://camel.apache.org/schema/blueprint/cxf" 
    xmlns:cxf-core="http://cxf.apache.org/blueprint/core" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="    http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd    http://camel.apache.org/schema/blueprint/cxf http://camel.apache.org/schema/blueprint/cxf/camel-cxf.xsd    http://camel.apache.org/schema/blueprint http://camel.apache.org/schema/blueprint/camel-blueprint.xsd"> 

    <camelContext xmlns="http://camel.apache.org/schema/blueprint" trace="false"> 


    <propertyPlaceholder id="properties" location="classpath:myService.properties"/> 

    <!-- setup endpoint --> 
    <!-- <endpoint id="dead" uri="mock:dead"/> --> 
     <endpoint id="dead" uri="mock:dead"></endpoint> 

    <!-- setup a common redelivery policy, using property placeholders --> 
    <redeliveryPolicyProfile id="myRedelivery" redeliveryDelay="{{delay}}" maximumRedeliveries="{{max}}"/> 


     <bean id="damn" class="java.lang.IllegalArgumentException"> 
     <constructor-arg index="0" value="Damn"/> 
    </bean> 


    <route id="exceptionroute"> 
     <from uri="direct-vm:csl-mpgs-payment-1.0-fromamq1"/> 
     <onException redeliveryPolicyRef="myRedelivery"> 
      <!-- refer to common redelivery policy --> 
      <exception>java.lang.Exception</exception> 
      <!-- but we can override the profile and log retry attempts at WARN level --> 
      <redeliveryPolicy logRetryAttempted="true" retryAttemptedLogLevel="WARN"/> 
      <to ref="dead"/> 
     </onException> 
     <throwException ref="damn"/> 
     <to uri="direct-vm:csl-mpgs-payment-1.0-fromam"/> 
    </route> 
    </camelContext> 

</blueprint> 

当IAM部署到保险丝容器我收到以下错误。

Caused by: org.xml.sax.SAXParseException: cvc-complex-type.2.4.a: Invalid content was found starting with element 'bean'. One of '{"http://camel.apache.org/schema/blueprint":redeliveryPolicyProfile, "http://camel.apache.org/schema/blueprint":onException, "http://camel.apache.org/schema/blueprint":onCompletion, "http://camel.apache.org/schema/blueprint":intercept, "http://camel.apache.org/schema/blueprint":interceptFrom, "http://camel.apache.org/schema/blueprint":interceptSendToEndpoint, "http://camel.apache.org/schema/blueprint":restConfiguration, "http://camel.apache.org/schema/blueprint":rest, "http://camel.apache.org/schema/blueprint":route}' is expected. 
    at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)[:] 
    at org.apache.xerces.util.ErrorHandlerWrapper.error(Unknown Source)[:] 
    at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)[:] 
    at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)[:] 
    at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)[:] 
    at org.apache.xerces.impl.xs.XMLSchemaValidator$XSIErrorReporter.reportError(Unknown Source)[:] 
    at org.apache.xerces.impl.xs.XMLSchemaValidator.reportSchemaError(Unknown Source)[:] 
    at org.apache.xerces.impl.xs.XMLSchemaValidator.handleStartElement(Unknown Source)[:] 
    at org.apache.xerces.impl.xs.XMLSchemaValidator.startElement(Unknown Source)[:] 
    at org.apache.xerces.jaxp.validation.DOMValidatorHelper.beginNode(Unknown Source)[:] 
    at org.apache.xerces.jaxp.validation.DOMValidatorHelper.validate(Unknown Source)[:] 
    at org.apache.xerces.jaxp.validation.DOMValidatorHelper.validate(Unknown Source)[:] 
    at org.apache.xerces.jaxp.validation.ValidatorImpl.validate(Unknown Source)[:] 
    at javax.xml.validation.Validator.validate(Unknown Source) 
    at org.apache.aries.blueprint.parser.Parser.validate(Parser.java:314) 

如何解决这个???

回答

2

<bean>外应<camelContext>作为一个OSGi的蓝图bean定义,如<camelContext>

之前将其移动