You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running mvn quarkus:dev fails with the following error:
[error]: Build step io.quarkus.qute.deployment.QuteProcessor#processTemplateErrors threw an exception: io.quarkus.qute.TemplateException: Found template problems (1):
[1] Incorrect expression found: {name.fullName}
- property/method [fullName] not found on class [org.acme.Name] nor handled by an extension method
- at main.html:2
at io.quarkus.qute.deployment.QuteProcessor.processTemplateErrors(QuteProcessor.java:195)
(...)
Suppressed: io.quarkus.qute.TemplateException: Incorrect expression found: {name.fullName}
- property/method [fullName] not found on class [org.acme.Name] nor handled by an extension method
- at main.html:2
at io.quarkus.qute.deployment.QuteProcessor.processTemplateErrors(QuteProcessor.java:175)
... 10 more
If I change the templated to use the interface instead, it works as expected:
Describe the bug
Given the following example classes:
And the following template:
Running
mvn quarkus:dev
fails with the following error:If I change the templated to use the interface instead, it works as expected:
mvn version: Apache Maven 3.8.1
java version: build 11.0.10+9
quarkus-plugin.version: 1.13.1.Final
quarkus.platform.version: 1.13.1.Final
The text was updated successfully, but these errors were encountered: