nelreina opened a new issue #2849:
URL: https://github.com/apache/camel-quarkus/issues/2849
camel quarkus cannot find resource error
```java
// Hee is the Bean
@ApplicationScoped
@Named("StringTemplateBean")
@RegisterForReflection
public class TemplateBean {
public String getTemplate(@Header("template") String template) {
return template;
}
}
...
// THIS IS OK no problem here
from("timer:timer?period=5s")
.routeId(this.getClass().getName())
.setHeader("name", constant("Stop di Hode>"))
.to("bean:StringTemplateBean")
.log("${body}");
// This route give me above mentioned error
from("timer:timer?period=5s")
.routeId(this.getClass().getName())
.setHeader("name", constant("Stop di Hode>"))
.to("string-template:bean:StringTemplateBean")
.log("${body}");
```
Quarkus Version 1.13.7.Final
I added camel extension linked to this version
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]