(String viewName)
| 82 | } |
| 83 | |
| 84 | private String getResolvedViewName(String viewName) { |
| 85 | return getServletContext().getRealPath("/WEB-INF/views") +"/"+viewName+".jsp"; |
| 86 | } |
| 87 | |
| 88 | private void render(Model model, String viewName, HttpServletResponse response) throws IOException { |
| 89 | String result = ""; |