我正在尝试创建一个持久性项目,以便它可以被我正在构建的其他一些项目重用。即它将由web服务/ spring mvc项目和独立jar使用,它可以进行一些文件处理。
我之前使用过带有spring mvc的hibernate,但从来没有作为独立的可执行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类,这些类将获得一些数据,并且我将构建一些接口,因此它可以被web服务和处理工具重用为jar(maven依赖)。
为了构建dao类,我需要sessionFactory为!= null。我该怎么做?
答案 0 :(得分:1)
有很多方法可以解决这个问题。我使用的一个解决方案是使用javax.persistence.PersistenceContext
注释。 Spring将尊重此注释并向本地线程EntityManager
注入代理。如果您的DAO由Spring创建,则允许从DAO中访问实体管理器。
public class DAO {
private EntityManager entityManager;
@PersistenceContext
public void setEntityManager(EntityManager entityManager) {
this.entityManager = entityManager;
}
}
答案 1 :(得分:1)
@Repository
public class MyDAO {
@Autowired
private SessionFactory sessionFactory;
// ...
}
并将MyDAO bean添加到上下文XML文件中,或者只是将以下行添加到此文件中:
<context:annotation-config />
<context:component-scan base-package="one.of.the.parent.packages.of.your.dao" />