How can I do the following (java):
for(int i = 0; i < 81 ; i+=20){ //Should loop through 5 times! }
in Thymeleaf?
I\'ve tried thi
The 1st value is the beginning of count, the 2nd is the maximum value and the 3rd is the incremental value
${#numbers.sequence( 1, 4, 1)}