Re: how to implement tokens
try this: boolean tokenValid = isTokenValid(request); if(tokenValid){ resetToken(request); return true; } else{ saveToken(request); return false; } i use it for control the user double click on botton
how to implement tokens
hai, Thanks for give this idea. I implemented in my action class like this if(isTokenValid(request)) resetToken(request) --- --- saveToken(request).. but no effect on this gomes