'The problem of not being able to send the method to the interface
friends I can't send my methods in UserService to IUserService with @Override.I'm getting the error in the picture, if you can help I would be very grateful.enter image description here
Solution 1:[1]
You haven't specified that your UserService implements the IUserService interface.
You need to change your class signature to the following:
public class UserService implements IUserService
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Shahzad |
