Spring中使用Castor的问题。

发布于 2022-08-23 22:53:16 字数 1281 浏览 26 评论 0

刚用Castor,一段Spring的配置如下

。。。。。//在ContentNegotiatingViewResolver中
                <bean class="org.springframework.web.servlet.view.xml.MarshallingView" >
                    <property name="marshaller">
                        <ref bean="castorMarshaller"/>
                    </property>
                </bean>                
            </list>
        </property>
    </bean>
    <bean id="castorMarshaller" class="org.springframework.oxm.castor.CastorMarshaller" >
        <property name="mappingLocation" value="classpath:castormapping.xml" /> 
    </bean>

三个问题:1 怎么在castormapping.xml中设置list的mapping?如果不设置,默认的tag是array-list。

2 我在castormapping.xml中<class>里设置<map-to xml="dev" /> ,出来后会是
<dev xmlns:xsi="http://www.w3.org/2001/XMLSchema-inst... xsi:type="dev">
怎么才能把xmlns:xsi,xsi:type去掉?

3我用chrome测试,会有提示Resource interpreted as Document but transferred with MIME type application/xml.这是什么情况?

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

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

发布评论

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

评论(2

过气美图社 2022-08-30 22:53:16

昨天看了下Castor的解决方案。对如List的问题,官方给出的方法是新建个类,包上list
例如

class Foo{
List<Bar> list = new ArrayList<Bar>; 
...
}

在 mapping.xml中

<class name="Foo">
       <map-to xml="foo" />
    <field name="list" 
    		collection="arraylist"
			type="Bar">
			<bind-xml name="bar"/>
    </field>
</class>

这样第2个问题也消失了,只有marshall默认的list的时候才会出现一堆xsi:= =
不过第三个问题还是存在 - -

飘落散花 2022-08-30 22:53:16

还是没有用 类容太少了

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