gpt4 book ai didi

java - Spring 对 vs 给出的@Controller 的支持

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:05:08 28 4
gpt4 key购买 nike

我一直在研究使用 mvc:annotation-driven 标记时我们有哪些额外的功能,但我很难理解结果,尤其是关于 @Controller 注释。我知道这与 this question 非常相似但请听我说完。

根据Spring docs

The basic purpose of the @Controller annotation is to act as a stereotype for the annotated class, indicating its role. The dispatcher will scan such annotated classes for mapped methods, detecting @RequestMapping annotations (see the next section).

然后文档继续显示 context:component-scan 标签提供了这种支持。所以这一切都很好,但后来我在看什么 mvc:annotation-driven 给了我们,以及前面提到的 stackoverflow question提供以下答案

mvc:annotation-driven declares explicit support for annotation-driven MVC controllers (i.e. @RequestMapping, @Controller, although support for those is the default behaviour), as well as adding support for declrative validation via @Valid and message body marshalling with @RequestBody/ResponseBody.

这对我来说似乎有点多余。也许我不明白这种明确的支持是什么。再次,回到官方Spring documentation我们得到以下内容

[mvc:annotation-driven] registers the DefaultAnnotationHandlerMapping and AnnotationMethodHandlerAdapter beans that are required for Spring MVC to dispatch requests to @Controllers.

这听起来与我在文档中提供的最后一个示例非常相似。如果有人可以提供一些示例,说明我们仅使用 context:component-scan 标记可以使用 @Controller 注释做什么,有哪些限制,那么我们在添加 mvc:annotation-driven 时获得的附加功能标签,我认为这会很有帮助。预先感谢对此的任何支持。

最佳答案

这两个元素的用途完全不同。

<context:component-scan />顾名思义,就是用于组件扫描。默认情况下,它会扫描所有带有 @Component 的 bean。注释(或“子”注释,如 @Controller@Service 等)。它只会在应用程序上下文中将这些类的实例注册为 beans。就是这样。

<mvc:annotation-driven />用于引导 Spring MVC,它注册了一个 RequestMappingHandlerMapping。和 RequestMappingHandlerAdapter .第一个链接请求到某个方法(@RequestMapping 注释类中方法的 @Controller 注释)。最后一个知道如何执行用 @RequestMaping 注释的方法.

现在<mvc:annotation-driven />对扫描或检测没有任何作用 @Controllers如果应用程序上下文中没有,则不会进行请求映射。现在您有几种方法可以在应用程序上下文中注册这些 bean,其中之一就是前面提到的 <context:component-scan />。 .

基本上是一个@Controller没有<mvc:annotation-driven />嗯,非常无用,因为它除了占用内存外什么都不做。它不会绑定(bind)到传入的请求,它只是在应用程序上下文中徘徊。与所有其他 bean 一样,它只是另一个 bean,没有对它做任何特别的事情。 (最近但已弃用的 Spring 版本注册了处理 DefaultAnnotationHandlerMapping@Controller,但已弃用)。

关于java - Spring 对 <context :component-scan/> vs <mvc:annotation-driven> 给出的@Controller 的支持,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20551217/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com