@RequestMapping(value = "/editing/{archive}/{srcArchive}/preInsert")
public String preInsertPageLookup(@ModelAttribute("userBean") UserBean userBean, @ModelAttribute("confBean") ConfBean confBean, @PathVariable String archive, @PathVariable String srcArchive, ModelMap modelMap, HttpServletRequest request, HttpServletResponse response) throws Exception {
common(confBean, userBean, archive, modelMap, request, response);
modelMap.addAttribute("srcArchive", srcArchive);
PreInsertPageCommand preInsertPageCommand = new PreInsertPageCommand(request.getParameterMap(), modelMap);
preInsertPageCommand.execute();
return "editing/preInsert";
}