站内搜索: 请输入搜索关键词

当前页面: 开发资料首页JSP 专题Source not found for ApplicationFilterChain.internalDoFilter(ServletRequest, ServletResponse) 调试j2EE程序时报这种错误

Source not found for ApplicationFilterChain.internalDoFilter(ServletRequest, ServletResponse) 调试j2EE程序时报这种错误

摘要: Source not found for ApplicationFilterChain.internalDoFilter(ServletRequest, ServletResponse) 调试j2EE程序时报这种错误


大家好,我在eclipse3.1.2下通过设置断点调试j2EE程序出现这样异常:Source not found for ApplicationFilterChain.internalDoFilter(ServletRequest, ServletResponse) ,这个是怎么回事呢?
服务端代码:
public DbResInfo[] dbCheck(int conceptId)
{
MyService osfb=new MyService();
try{
return osfb.DbCheck_All_Children(conceptId);
}catch(OntologyInfoException e)
{
e.printStackTrace();
return null;
}
}


MyService osfb=new MyService();
osfb.DbCheck_All_Children(conceptId);
代码放在客户端执行是没有问题的。

请高手指点啊,谢谢!




可能是其他的程序捕获到这个异常,但却没有这部分的源码!


你解决这个问题了没,我也遇到了。


↑返回目录
前一篇: checkbox去掉勾选提交无效问题
后一篇: 怎样判断为空啊