I am a newbie to spring. I just tried a Hello World and it worked fine. I am turing the same app into form handling. A simple login and password application where-in i would hit the server with a post method. My Current setup is as below.
Dispatcher
servlet
login.jsp
When I hit
http://localhost:8080/myapp/welcome i am being taken to welcome page... What needs to be done on the server to handle a form's post method? Do I need another controller or same will do... i read about modelAttributes, do I need them? Any help thanks.!