返されたモデルとビューページ(jsp)を新しいウィンドウまたはタブで作成したい。私のコードが添付されています..
@RequestMapping(value = "processDetails")
public ModelAndView getProcessDetails(HttpServletRequest request, HttpServletResponse response) {
String resourceId = request.getParameter("resourceId");
System.out.println("====resourceId:" + resourceId);
ModelAndView mv = new ModelAndView("inventory/processDetails");
List<SoftwareRunning> list4 = inventoryService.getSoftwaresRunning(resourceId);
mv.addObject("ProcessDetails", list4);
return mv;
}