pug4j
pug4j copied to clipboard
Support for Java records?
The example does not work with a record:
public record Book(String name, double price, boolean available) {}
I guess the reason is, that the record accessor methods are named name()
, price()
, ... and not getName()
, getPrice()
?
Seems to work with book.name() instead of book.name. Is this issue in apache jexl?