gpt4 book ai didi

java - 我怎样才能使用util :list in spring configuration file

转载 作者:行者123 更新时间:2023-12-01 13:19:23 28 4
gpt4 key购买 nike

我正在尝试使用 spring 的 unmarshaller 自动将请求正文从 xml 解码到对象。但我未能收到错误 util prfeix 解除绑定(bind)。你能告诉我如何使用 util:list在哪里可以找到 util:list 的引用资料.

我确实发现官方文档遗漏了结束语 ></property我在我的配置中更正了这一点。

我发现配置比只编写代码更令人沮丧。

<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
<property name="messageConverters">
<util:list id="beanList">
<ref bean="stringHttpMessageConverter"/>
<ref bean="marshallingHttpMessageConverter"/>
</util:list>
</property
</bean>

<bean id="stringHttpMessageConverter"
class="org.springframework.http.converter.StringHttpMessageConverter"/>

<bean id="marshallingHttpMessageConverter"
class="org.springframework.http.converter.xml.MarshallingHttpMessageConverter">
<property name="marshaller" ref="castorMarshaller" />
<property name="unmarshaller" ref="castorMarshaller" />
</bean>

<bean id="castorMarshaller" class="org.springframework.oxm.castor.CastorMarshaller"/>

最佳答案

需要声明到util命名空间;例如:

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd">

关于java - 我怎样才能使用util :list in spring configuration file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22165821/

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