I created my first spring controller without many problems and everything works as I expect except for one item. When I call:
I expect that the URL in my browser would change from login.html to home. The page displays just fine, its just the URL that doesn't change. Does it only change when you use another urlMapping?
Well the "view" you return is just a string, it isn't a URL. The String is used by a ViewResolver, to resolve that String to a real view, which might or might not be an html, htm, jsp, Servlet, or any other view technology. So "home" is not necessarily even going to be in the URL.
The URL of the new page doesn't show up in the browser because the new page is being sent as the response of the first page's request. The solution to this problem is usually known under the term "redirect after post".
You'll either need to explicitly use a RedirectView or in the controller's bean definition, prepend the successView property with "redirect:". I also think you'll have to use the actual URL and not just a mapping name here.
-Nate
Write once, run anywhere, because there's nowhere to hide! - /. A.C.