What is a spring service annotation? [duplicate]
@Service, @Controller, @Repository = {@Component + some more special functionality} Click the below link for more details What’s the difference between @Component, @Repository & @Service annotations in Spring? The @Component annotation marks a java class as a bean so the component-scanning mechanism of spring can pick it up and pull it into the application context. … Read more