I am trying to get the "registo" value from the folowing url:
http://localhost:83/spring/login?registo=sucesso
in my jsp file.
What I have tried so far:
<c:if test="${not empty request.getAttribute('registo')}"> ....</c:if><c:if test="${not empty registo}"> ...</c:if>
and some more that I don't remember.
Any advice?