gpt4 book ai didi

java - 如何将 hibernate.cfg.xml 配置为 applicationContext.xml 作为数据源?

转载 作者:行者123 更新时间:2023-11-29 07:40:36 25 4
gpt4 key购买 nike

我的 java 根目录中有 hibernate.cfg.xml 文件。

这是我的 applicationContext.xml 文件。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:jpa="http://www.springframework.org/schema/data/jpa" xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd
http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.1.xsd">

<context:component-scan base-package="com.nought">
<context:exclude-filter type="annotation"
expression="org.springframework.stereotype.Controller" />
</context:component-scan>

<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>

<tx:annotation-driven transaction-manager="transactionManager" />

<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="persistenceUnitName" value="persistenceUnit" />
<property name="dataSource" ref="dataSource" />
</bean>

<jpa:repositories base-package="com.nought.repository"></jpa:repositories>

</beans>

如何使用 hibernate.cfg.xml 文件将数据源添加到 applicationContext.xml。

另外,我想在 applicationContext.xml 中实现一个包含 org.springframework.orm.hibernate4.LocalSessionFactoryBean 的 bean“sessionFactory”吗??

如果是的话,我想做什么改变?

有人可以帮我吗?

最佳答案

这里是 hibernate.cfg.xml 以及如何使用它配置 sessionFactory 的示例。

cfg.xml

<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
<session-factory>
<property name="connection.datasource">java:comp/env/jdbc/oracle</property>
<property name="dialect">
org.hibernate.dialect.Oracle9iDialect
</property>

.. other config goes here.....
</session-factory>
</hibernate-configuration>

将此添加到您的 applicationContext.xml。

<bean name="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">

<property name="configLocation" value="classpath:hibernate.cfg.xml" />
<property name="mappingResources">
<list>
<value>...your hbm file location...</value>
</list>
</property>
</bean>

关于java - 如何将 hibernate.cfg.xml 配置为 applicationContext.xml 作为数据源?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29197292/

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