Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
org.springframework.stereotype;
或者
org.springframework.web.servlet.mvc;
我一直在使用刻板印象,但只是注意到我还有另一种选择?
org.springframework.stereotype.Controller
是注解。它表明带注释的类是控制器以及自动检测的候选者(如@Component)。这是您要使用的注释。
org.springframework.web.servlet.mvc.Controller
是实现控制器的接口。在大多数简单的情况下,您可能不想使用它。