gpt4 book ai didi

java - 使用 P 命名空间配置 Hibernate XML

转载 作者:行者123 更新时间:2023-11-30 04:55:28 25 4
gpt4 key购买 nike

我想使用 p 命名空间重写我的 sessionFactory bean。我了解如何引用一般对象,但我从未处理过列表、 Prop 等。我将如何编写 等等?

<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>

<property name="mappingResources">
<list>
<value>/com/mysite/domain/Object.hbm.xml</value>
</list>
</property>

<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.HSQLDialect</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
</bean>

这是我迄今为止在 p-namespace 中的代码:

<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"
p:dataSource-ref="dataSource"
p:mappingResources-list="/com/mysite/domain/Object.hbm.xml"
p:hibernateProperties-props=""/>

最佳答案

您不能直接执行此操作。不过你可以使用 util:map 。尝试一下

    <util:map id="hibernateConfig" >
<entry key="hibernate.hbm2ddl.auto" value="update" />
<entry key="hibernate.show_sql" value="true" />
<!-- Other properties -->
</util:map>

<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"
p:dataSource-ref="dataSource"
p:mappingResources-list="/com/mysite/domain/Object.hbm.xml"
p:hibernateProperties-ref ="hibernateConfig"/>

检查This有关 p:namespace 的完整帮助

关于java - 使用 P 命名空间配置 Hibernate XML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8707717/

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