gpt4 book ai didi

java - 使用 spring/hibernate 创建持久层

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

我正在尝试创建一个持久性项目,以便我在其上构建的其他一些项目可以重复使用它。也就是说,它将由 Web 服务/spring mvc 项目和执行一些文件处理的独立 jar 使用。

我之前曾将 hibernate 与 spring mvc 一起使用过,但从未将其作为独立的可执行 java jar 使用,因此我已经完成了所有设置和工作(应用程序上下文):

<?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:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">

<!-- Enable annotation style of managing transactions -->
<tx:annotation-driven transaction-manager="transactionManager" />

<!-- Root Context: defines shared resources visible to all other web components -->

<!-- HIBERNATE -->
<bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="classpath:spring.properties" />
</bean>

<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close">
<property name="driverClass" value="${jdbc.driverClassName}" />
<property name="jdbcUrl" value="${jdbc.databaseurl}" />
<property name="user" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
<property name="acquireIncrement" value="5" />
<property name="idleConnectionTestPeriod" value="60"/>
<property name="maxPoolSize" value="100"/>
<property name="maxStatements" value="50"/>
<property name="minPoolSize" value="10"/>
</bean>

<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="mappingResources">
<list> <value>com/project/utility/persistence/mapping/TestProp.hbm.xml</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">${jdbc.dialect}</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
</bean>


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

<!-- END HIBERNATE -->
</beans>

当我从主类测试它时,映射/依赖项看起来一切正常:

public static void main(String[] args) {
ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("appCtx.xml");
}

接下来我想做的是构建一些 dao 类来获取一些数据,并且我将在上面构建一些接口(interface),以便 Web 服务和处理工具可以将其作为 jar(maven 依赖项)重新使用。

为了构建 dao 类,我需要 sessionFactory 始终为 != null 。我该怎么做?

最佳答案

对此有很多方法。我使用的一种解决方案是使用 javax.persistence.PersistenceContext 注释。 Spring 将尊重此注释并将代理注入(inject)到线程本地 EntityManager 中。假设您的 DAO 是由 Spring 创建的,则允许从您的 DAO 内访问实体管理器。

public class DAO {

private EntityManager entityManager;
@PersistenceContext
public void setEntityManager(EntityManager entityManager) {
this.entityManager = entityManager;
}

}

关于java - 使用 spring/hibernate 创建持久层,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7727649/

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