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

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

时间:2015-10-17 10:48:47      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:项目开发   method   编辑器   java   

使用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

 


技术分享

   出现上述问题的原因JDK1.5不支持这种写法。实现接口方法需要重写抽象方法。

   解决上述问题的方法如下:

   方法1.选择Eclipse的Window→Preferences→Java→Compiler,把Compiler compliance level从1.5改成1.6。

技术分享

 

    方法2.右击project选择最后一个properties选择左侧的java compiler,勾选里面的框框,把java编辑器版本都改成1.6。

技术分享

 

     方法3.右击project下的 JRE System Library[JavaSE-1.5]→Properties,Execution environment 选择“JavaSE-1.6(JDK1.6.0_10)”,点击确定即可。

技术分享

 

   上述3种方法都能解决题目中提到的问题,可以根据自己的习惯选择相应的解决方法。


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

标签:项目开发   method   编辑器   java   

原文地址:http://jerry1104.blog.51cto.com/5514059/1703721

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