JEXL – Get current date and time

3.9k Views Asked by At

I have to use JEXL expression and I need to get current year and month using JEXL. Is it possible?

1

There are 1 best solutions below

2
On BEST ANSWER

You can use JETT which allow to invoke static methods in JEXL code:

ETT extends JEXL to allow references to static methods directly in JEXL Expressions

Then you can call (Java 8) LocalDateTime.now method to get current date and time:

${java.time.LocalDateTime.now()}