The method getByName(String) of type UserServiceImpl must override or implement a supertype method
时间:2020-02-01 19:18:13
收藏:0
阅读:100
The method getByName(String) of type UserServiceImpl must override or implement a supertype method
翻译:UserServiceImpl类型的getByName(String)方法必须覆盖或实现超类型方法
小白我来解释一下,出现这个错误警告是因为没有实现父类的方法
解决的方法
1.刚刚的UserServiceI接口忘记保存了
2.接口中的方法没有完全实现
评论(0)