代码如下:
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());)进入不去。
谢谢!!!!!!!!
------解决思路----------------------
什么意思 你想要到WebApplicationContextUtils.getWebApplicationContext()里面?
这个你可以在到达你刚才断点的时候点击f5 单步进入
也可以在getWebApplicationContext()方法里面打断点
前提是你要导入spring对应包源码。