@RequestMapping(
     value = {"/workspace/general/list-another-application"},
     method = RequestMethod.GET)
 public String listAnotherApplicationGeneralPage(ModelMap modelMap, Principal principal) {
   modelMap.addAttribute("listApplication", applicationService.applicationEntityList());
   if (null != principal) {
     modelMap.addAttribute("userId", userService.findByUsername(principal.getName()).getIdUser());
   }
   return "pages/general/another-application/index";
 }