}
@RequestMapping(value = "/search/{archive}/vocabulary", method = RequestMethod.GET)
public String vocabularyPage(@ModelAttribute("userBean") UserBean userBean, @ModelAttribute("confBean") ConfBean confBean, @PathVariable String archive, ModelMap modelMap, HttpServletRequest request, HttpServletResponse response) throws Exception {
common(confBean, userBean, archive, modelMap, request, response);
VocabolarioMultiCommand vocabolarioMultiCommand = new VocabolarioMultiCommand(request.getParameterMap(), modelMap);
vocabolarioMultiCommand.execute();
if (MyRequest.getParameter("isExport", request.getParameterMap()).equalsIgnoreCase("true")) {
return "search/vocabularyTxt";
}
if (!MyRequest.getParameter("jspOutPut", request.getParameterMap()).equalsIgnoreCase("")) {
return "search/" + StringUtils.remove(MyRequest.getParameter("jspOutPut", request.getParameterMap()), ".jsp");