Is Spring annotation @Controller same as @Service?
No, they are pretty different from each other. Both are different specializations of @Component annotation (in practice, they’re two different implementations of the same interface) so both can be discovered by the classpath scanning (if you declare it in your XML configuration) @Service annotation is used in your service layer and annotates classes that perform … Read more