I want to know how can I create new account using servlets in post method?
I'm currently following MVC design pattern, and I want to know if I pass the required data to register new account from JSP page, then how can I get that data in post method? As request.getParameter() method returning me null
. How can I know that post method is calling to create new account?
How can I pass all the relevant user information from servlets to model class for registering data to the database table?