Hi,
I'm attempting to implement the following use case:
1. User goes to web page and enters email address and password
2. System assigns unique token to this user and sends an email to supplied address. This email contains an activation link that includes the unique token for this user
3. User clicks on link in email and their account is activated
I have seen this done using Spring Security, but would like to know if it is possible (and fairly straightforward) to achieve the same result using standard
java libraries (in other words, i'd like to avoid using 3rd party libraries such as spring-security).
Thanks