Here I have declared variable with name someVariable and assign default value 10:
<p th:with ="someVariable=10">
<p th:text ="someVariable=${someVariable}+${someVariable}"> </p>
<p th:text ="${someVariable}"> </p>
</p>
After that I am changing value of variable but I am geting error.
How to change value of Variable after declare it in Thymeleaf ?