I want to construct a system which is responsible for updating my database columns.
It is similar to registration of memberships.We have users and they send a request form of their wishes.First of all , the system inserts all of these information in a table .One column specifies the state of the request.It contains the integer values which refers to some states.
In addition to this , (which I want to do ) When the user send the request form , the system has sent e-mail.I want to change the state according to e-mail which will contain the link with registration-key.When the user clicks the link , the specific column of user updates the information.
How can I do these flow with java.I have currently used the Spring framework and java enterprise edition.
Can anyone help me ?