我们可以在春季互换@Controller和@Service吗?

问题描述 投票:0回答:1

我们可以在春季互换@Controller和@Service吗?我尝试了,它正在工作。它们如何在内部实现?

spring spring-boot spring-mvc spring-annotations
1个回答
0
投票

@ Controller和@Service是@Component的特殊形式。 Spring允许您互换使用它,但不建议那样做。例如,@ Controller用于MVC上的Controller所服务的类。另外,spring调度程序servlet将在使用@Controller注释的类上扫描@RequestMapping。

© www.soinside.com 2019 - 2024. All rights reserved.