JiriOndrusek commented on a change in pull request #1804: URL: https://github.com/apache/camel-quarkus/pull/1804#discussion_r490314030
########## File path: extensions/velocity/deployment/src/main/java/org/apache/camel/quarkus/component/velocity/deployment/VelocityProcessor.java ########## @@ -0,0 +1,76 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.camel.quarkus.component.velocity.deployment; + +import java.util.ArrayList; +import java.util.TreeMap; + +import io.quarkus.deployment.annotations.BuildStep; +import io.quarkus.deployment.builditem.CombinedIndexBuildItem; +import io.quarkus.deployment.builditem.FeatureBuildItem; +import io.quarkus.deployment.builditem.IndexDependencyBuildItem; +import io.quarkus.deployment.builditem.nativeimage.NativeImageResourceBuildItem; +import io.quarkus.deployment.builditem.nativeimage.ReflectiveClassBuildItem; +import org.apache.camel.component.velocity.CamelVelocityClasspathResourceLoader; +import org.apache.camel.support.MessageSupport; +import org.jboss.jandex.IndexView; + +import static java.util.stream.Collectors.toCollection; + +class VelocityProcessor { + + private static final String FEATURE = "camel-velocity"; + + @BuildStep + FeatureBuildItem feature() { + return new FeatureBuildItem(FEATURE); + } + + @BuildStep + NativeImageResourceBuildItem initResources() { + return new NativeImageResourceBuildItem( + "org/apache/velocity/runtime/defaults/velocity.properties", + "org/apache/velocity/runtime/defaults/directive.properties"); + } + + @BuildStep + ReflectiveClassBuildItem registerForReflection(CombinedIndexBuildItem combinedIndex) { + IndexView index = combinedIndex.getIndex(); + + ArrayList<String> dtos = index.getKnownClasses().stream().map(ci -> ci.name().toString()) + .filter(n -> n.startsWith("org.apache.velocity.runtime") || + n.startsWith("org.apache.velocity.util.introspection")) + .sorted() + .collect(toCollection(ArrayList::new)); + + dtos.add(CamelVelocityClasspathResourceLoader.class.getName()); + + return new ReflectiveClassBuildItem(false, false, dtos.toArray(new String[dtos.size()])); + } + + @BuildStep + ReflectiveClassBuildItem registerForReflectionWithMethods() { + return new ReflectiveClassBuildItem(true, false, + TreeMap.class.getName(), + MessageSupport.class.getName()); Review comment: This is needed in scenario with "SupplementalContext". Velocity engine uses reflection to access output message to put some values among headers ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org