-
Bug
-
Resolution: Done
-
Major
-
jboss-fuse-6.3
-
%
-
-
Fuse 7.4 Sprint 45 - Dev #1
Exception tag is missing when Camel Java DSL is converted into XML using Hawtio.
#Java DSL route
public void configure() { onException(Exception.class).log("${exception.stacktrace}").logStackTrace(true) .handled(true); from("timer://foo?fixedRate=true&period=10000&repeatCount=101").routeId("test") .log("Hello World"); }
#XMl converted by Hawtio(exception class tag is missing)
<route xmlns="http://camel.apache.org/schema/spring" id="test"> <from uri="timer://foo?fixedRate=true&period=10000&repeatCount=101"/> <onException> <redeliveryPolicy logStackTrace="true"/> <log message="${exception.stacktrace}"/> </onException> <log message="Hello World"/> </route>
#java.lang.Exception tag is missing from the XML
<exception>java.lang.Exception</exception>
- relates to
-
ENTESB-13186 CNF exception from R13 if validator package is not defined in import-package
- Done
-
ENTESB-14094 [Fuse 7] CNF exception from R13 if validator package is not defined in import-package
- Done