zhfeng commented on issue #4065: URL: https://github.com/apache/camel-quarkus/issues/4065#issuecomment-1236490205
Nice investigating! The `XSLTC` has the defualt `_packageName` which is `die.verwandlung` https://github.com/openjdk/jdk/blob/master/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/XSLTC.java#L114 And when generating the translet class, `TransformerFactoryImpl` invokes `xsltc.setClassName` before `xsltc.setPackageName` https://github.com/openjdk/jdk/blob/master/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/trax/TransformerFactoryImpl.java#L1006-L1024 That causes the className contains die_verwandlung prefix. So a possible fix in openjdk could be to do `setPackagesName` before `setClassName`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org