码迷,mamicode.com
首页 > 其他好文 > 详细

doGet() throws NamingException报错

时间:2017-04-23 00:58:04      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:原则   ges   cep   原因   src   练习   ima   类方法   ext   

     做一个通过JNDI查找资源的小练习,Context = new InitialContext(),发现NamingException异常,eclipse编辑器只有catch的提示,没有throws的提示,强行在doGet()方法后throws NamingException会报"Exception NamingException is not compatible with throws clause in HttpServlet.doGet(HttpServletRequest, HttpServletResponse)"。

     原因:查看HttpServlet中的doGet方法源码,

技术分享

根据方法重写的原则,子类重写父类方法时,抛出的异常不能超过父类的范畴,因此在本例中,只能throws ServletException和IOEXception,其他异常必须catch使得编译通过。

 

doGet() throws NamingException报错

标签:原则   ges   cep   原因   src   练习   ima   类方法   ext   

原文地址:http://www.cnblogs.com/gujianzhe/p/6750047.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!