I am trying to save data to a database through spring MVC. when I click the "Save" button, it redirects me to a page where the error looks like this:
The requested URL / save was not found on this server.
The same code works on DEV on localhost, I think there is a problem with standalone
In Controller.java :
@RequestMapping(value="/save", params="save") public ModelAndView save(@RequestParam("save") String save) {.....}
Saved pages update / delete data from the database
source share