Fix: Allow POST method for db.view form

This commit is contained in:
François-Xavier Thomas
2017-02-09 23:48:12 +01:00
parent 1f1ec26634
commit 6b81f0f6d5
@@ -48,7 +48,7 @@ public class DBController {
@Autowired
private DaoHelper daoHelper;
@RequestMapping(method = RequestMethod.GET)
@RequestMapping(method = { RequestMethod.GET, RequestMethod.POST })
protected ModelAndView handleRequestInternal(HttpServletRequest request, HttpServletResponse response) throws Exception {
Map<String, Object> map = new HashMap<String, Object>();