1、问题

实现接口的时候,遇到这样的错,
The method getStudent(Integer) of type StudentServiceImpl must override a superclass method

 

2、原因

jdk版本1.5以下的会出现这种问题,一般都是再maven项目中,因为maven项目默认jdk版本就是1.5

 

3、解决办法

右键点击项目属性properties

Java-web——The method getStudent(Integer) of type StudentServiceImpl must override a superclass method (报错)_maven项目

Java-web——The method getStudent(Integer) of type StudentServiceImpl must override a superclass method (报错)_maven项目_02