您的位置:首页 > 其它

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

2016-03-02 12:27 218 查看
使用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种方法都能解决题目中提到的问题,可以根据自己的习惯选择相应的解决方法。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: