Задача
Я не могу определить правильный бин sessionFactory
в моем проекте и не удается инициализировать веб-приложение.
Выход журнала
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'webServiceTest' defined in ServletContext resource [/WEB-INF/
classes/appcontext-spring.xml]: Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: 'sessionFactory' or 'hibernateTemplate
' is required
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1336)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:471)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
at java.security.AccessController.doPrivileged(Native Method)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:220)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:269)
... 50 more
Caused by: java.lang.IllegalArgumentException: 'sessionFactory' or 'hibernateTemplate' is required
at org.springframework.orm.hibernate3.support.HibernateDaoSupport.checkDaoConfig(HibernateDaoSupport.java:117)
at org.springframework.dao.support.DaoSupport.afterPropertiesSet(DaoSupport.java:44)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1367)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1333)
... 60 more
Я создал библиотеку ORM с maven, используя xml отображения и pojos.
Я импортировал в свой проект и не могу настроить доступ к DDBB.
- jdbc.properties файл хорошо определен с подключением DDBB (
db.url
, db.properties
и т. Д.).
- Все POJO в библиотеке расширяются HibernateDaoSupport и реализуют базовый интерфейс операций (CRUD). Я использую сервис webServiceTest , который расширяет DaoBase для проведения теста.
- Я провел JUnit тестов в ORM-библиотеке с хорошими результатами.
Вот dataSource
, sessionFactory
и т. Д. Определения из appcontext-persistance.xml file:
<!-- PERSISTENCE SETUP -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="driverClassName">
<value>${db.driver}</value>
</property>
<property name="url">
<value>${db.url}</value>
</property>
<property name="username">
<value>${db.username}</value>
</property>
<property name="password">
<value>${db.password}</value>
</property>
<property name="maxActive">
<value>${db.maxActive}</value>
</property>
<!-- Maximum number of idle dB connections to retain in pool. Set
to 0 for no limit -->
<property name="maxIdle">
<value>${db.maxIdle}</value>
</property>
<!-- Maximum time to wait for a dB connection to become available
in ms, in this example 10 seconds. An Exception is thrown if this timeout
is exceeded. Set to -1 to wait indefinitely. -->
<property name="maxWait">
<value>${db.maxWait}</value>
</property>
<!-- Autocommit setting. This setting is required to make Hibernate
work. Or you can remove calls to commit(). -->
<property name="defaultAutoCommit">
<value>true</value>
</property>
<!-- Recover abandoned connections -->
<property name="removeAbandoned">
<value>true</value>
</property>
<!-- Set the number of seconds a dB connection has been idle before
it is considered abandoned. -->
<property name="removeAbandonedTimeout">
<value>11</value>
</property>
<!-- Log a stack trace of the code which abandoned the dB connection
resources. -->
<property name="logAbandoned">
<value>true</value>
</property>
</bean>
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref local="sessionFactory" />
</property>
</bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="lobHandler">
<ref bean="oracleLobHandler" />
</property>
<property name="dataSource" ref="dataSource" />
<!-- configura la fuente de los mappings -->
<property name="configLocation" value="classpath:hibernate.cfg.xml" />
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.Oracle9iDialect</prop>
<prop key="hibernate.generate_statistics">true</prop>
</props>
</property>
</bean>
Вопросы:
- Конфигурация Spring должна загрузить hibernate.cfg.xml из ORM jar? Как я могу это сделать?
- Как загрузить конфигурацию из проекта Spring ORM в другой?
- Я определяю сопоставления в ORM, но у меня нет контекста приложения, определенного в ORM, для включения в jar.