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

Multiple markers at this line @Override的解决方法

时间:2014-06-11 06:47:53      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:eclipse   compiler   

   使用Eclipse 进行项目开发,在实现类中的方法前面如果添加@Override就提示“Multiple markers at this line”的错误,问题描述如下

   Multiple markers at this line
   - The method getStudentByID(String) of type StudentBeanImpl must override a superclass method
   - implements mgr.jc.student.service.IStudentBean.getStudentByID

 

bubuko.com,布布扣
   出现上述问题的原因JDK1.5不支持这种写法。实现接口方法需要重写抽象方法。
   解决上述问题的方法如下:
   方法1.选择Eclipse的Window→Preferences→Java→Compiler,把Compiler compliance level从1.5改成1.6。
bubuko.com,布布扣
 
    方法2.右击project选择最后一个properties选择左侧的java compiler,勾选里面的框框,把java编辑器版本都改成1.6。
bubuko.com,布布扣
 
     方法3.右击project下的 JRE System Library[JavaSE-1.5]→Properties,Execution environment 选择“JavaSE-1.6(JDK1.6.0_10)”,点击确定即可。
bubuko.com,布布扣
 
   上述3种方法都能解决题目中提到的问题,可以根据自己的习惯选择相应的解决方法。

Multiple markers at this line @Override的解决方法,布布扣,bubuko.com

Multiple markers at this line @Override的解决方法

标签:eclipse   compiler   

原文地址:http://blog.csdn.net/mazhaojuan/article/details/28931375

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