XML 内的列表标签。我不明白它的作用

发布于 2025-01-08 22:35:38 字数 484 浏览 0 评论 0原文

这是一个与Spring MVC相关的问题。我在 XML 文件中有这样的条目。

<bean class="org.springframework.web...DefaultAnotationHandlerMapping">
    <property name="interceptors">
        <list>
          <bean class="rewardsonline.AuditInterceptor"/>
          <bean class="rewardsonline.PerformanceInterceptor"/>
        </list>
    </property>
</bean>

现在,我知道名为拦截器的属性是 DefaultAnnotationHandlerMapping 类的实例变量。但是,我无法理解列表标签。这说明什么?

This is a question related to Spring MVC. I have entries in an XML file like this.

<bean class="org.springframework.web...DefaultAnotationHandlerMapping">
    <property name="interceptors">
        <list>
          <bean class="rewardsonline.AuditInterceptor"/>
          <bean class="rewardsonline.PerformanceInterceptor"/>
        </list>
    </property>
</bean>

Now, I understand that the property called interceptors is an instance variable of the class DefaultAnnotationHandlerMapping. But, I cannot make sense of the list tag. What does that indicate?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寂寞清仓 2025-01-15 22:35:38

4.4.2.4收藏

中> 元素,设置 Java Collection 类型 ListSetMap 的属性和参数和属性,分别。

您的 XML 片段正在构造一个 java.util.List 并将其注入到 DefaultAnotationHandlerMapping 对象的 interceptors 属性中。

4.4.2.4 Collections

In the <list/>, <set/>, <map/>, and <props/> elements, you set the properties and arguments of the Java Collection types List, Set, Map, and Properties, respectively.

Your XML fragment is constructing a java.util.List and injecting it ino the interceptors property of the DefaultAnotationHandlerMapping object.

当梦初醒 2025-01-15 22:35:38

AbstractHandlerMapping 类有一个称为拦截器的属性,它是一个列表。 XML 中的 List 元素列出了在初始化时应添加到 AbstractHandlerMapping 上的拦截器列表中的拦截器。

The AbstractHandlerMapping class has a property called interceptors which is a List. The List element in the XML lists the interceptors which should be added to the interceptor list on AbstractHandlerMapping when it's initialized.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文