代码进入方法了,但是不进断点,什么情况啊
代码如下:
private Object findService(String reqUrl, HttpServletRequest request)
{
reqUrl = "INVO_" + reqUrl.replaceAll("\\/", "_");
System.out.println("reqUrlreqUrlreqUrl"+reqUrl);
ApplicationContext springContext = WebApplicationContextUtils.getWebApplicationContext(request.getSession().getServletContext());
//return bf.getBean("INVO_myReqUrl");
return springContext.getBean("INVO_myReqUrl");
}
问题:
输出语句可以输出,但是下面一句打的断点(ApplicationContext springContext = WebApplicationContextUtils.getWebApplicationContext(request.getSession().getServletContext());)进入不去。
谢谢!!!!!!!!