在SpringMVC和glassfish中找不到jsp

时间:2013-03-15 09:15:49

标签: jsp spring-mvc glassfish-3

我正在研究项目。我做了一些简单的更改,现在我遇到了错误。

SEVERE: PWC6117: File "D%3A%5CProjects%5CSampradan%5CGV+UI%5Cui%5CGVUI%5Cbuild%5Cweb%5Cjsp%5Cbarcode%5Csearch.jsp" not found

因此。我从jsp中删除了所有代码,但仍然出现错误。

我的jsp位于/jsp/module/search.jsp

我的控制器

@RequestMapping(value = "/search", method = RequestMethod.GET)
    public ModelAndView searchBCGenRequest(HttpServletRequest hsr1, HttpServletResponse hsr2, HttpSession session) {


        ModelAndView mv = new ModelAndView();
        mv.setViewName("/module/search");
        System.out.println(mv.getViewName());
        return mv;
    }

它是打印/模块/搜索,但在它给我跟随错误。

SEVERE: PWC6117: File "D%3A%5CProjects%5CSampradan%5CGV+UI%5Cui%5CGVUI%5Cbuild%5Cweb%5Cjsp%5Cbarcode%5Csearch.jsp" not found

0 个答案:

没有答案