Skip to content

Commit

Permalink
Merge pull request #43498 from mkouba/qute-value-resolver-priority-docs
Browse files Browse the repository at this point in the history
Qute: improve docs/javadoc about value resolvers ordering
  • Loading branch information
ia3andy authored Sep 26, 2024
2 parents a728715 + 2fe1b11 commit ee69757
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
11 changes: 10 additions & 1 deletion docs/src/main/asciidoc/qute-reference.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ You can learn more about virtual methods in the <<virtual_methods,following sect

[[expression_resolution]]
==== Resolution

When evaluating expressions a list of registered <<value-resolvers,value resolvers>> is used.
The first part of the expression is always resolved against the <<current_context_object,current context object>>.
If no result is found for the first part, it's resolved against the parent context object (if available).
For an expression that starts with a namespace the current context object is found using all the available ``NamespaceResolver``s.
Expand Down Expand Up @@ -1451,6 +1451,11 @@ NOTE: The template rendering is divided in two phases. During the first phase, w
==== Value Resolvers

Value resolvers are used when evaluating expressions.
First the resolvers that apply to the given `EvalContext` are filtered.
Then the resolver with _highest priority_ is used to resolve the data.
If a `io.quarkus.qute.Results.NotFound` object is returned then the next available resolver is used instead.
However, `null` return value is considered a valid result.

A custom `io.quarkus.qute.ValueResolver` can be registered programmatically via `EngineBuilder.addValueResolver()`.

.`ValueResolver` Builder Example
Expand All @@ -1462,6 +1467,10 @@ engineBuilder.addValueResolver(ValueResolver.builder()
.build());
----

TIP: In Quarkus, the <<engine-customization,`@EngineConfiguration`>> annotation can be used to register a `ValueResolver` implemented as a CDI bean.

NOTE: Keep in mind that the reflection-based value resolver has priority `-1` and the max priority value for resolvers generated from <<template_data,`@TemplateData`>> and <<typesafe_expressions,type-safe expressions>> is `10`.

[[template-locator]]
==== Template Locator

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,13 @@
String matchRegex() default "";

/**
* Value resolvers with higher priority take precedence.
* <p>
* Keep in mind that the reflection-based value resolver has priority {@code -1} and the max priority value for
* resolvers generated from {@link TemplateData} and type-safe expressions is {@code 10}.
*
* @return the priority used by the generated value resolver
* @see ValueResolver#getPriority()
*/
int priority() default DEFAULT_PRIORITY;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,26 @@
* Value resolvers are used when evaluating expressions.
* <p>
* First the resolvers that apply to the given {@link EvalContext} are filtered. Then the resolver with highest priority is used
* to resolve the data. If {@link Results#isNotFound(Object)} is returned the next available resolver is tried.
* to resolve the data. If a {@link io.quarkus.qute.Results.NotFound} object is returned then the next available resolver is
* used instead. However,
* {@code null} return value is considered a valid result.
*
* @see EvalContext
* @see EngineBuilder#addValueResolver(ValueResolver)
* @see EngineConfiguration
*/
public interface ValueResolver extends Resolver, WithPriority {

/**
* Value resolvers with higher priority take precedence.
*
* @return the priority value
*/
@Override
default int getPriority() {
return WithPriority.super.getPriority();
}

/**
*
* @param context
Expand Down

0 comments on commit ee69757

Please sign in to comment.