Не удается разрешить класс для Hibernate4
На самом деле я пытаюсь импортировать внешний dao и внешнее постоянство в новое приложение Spring Boot. Я никогда не делал этого раньше, и, согласно объяснениям других разработчиков, я создал:
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"
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.xsd">
<context:annotation-config />
<import resource="classpath:/daos.xml" />
<import resource="classpath:/spring-datasource-config.xml" />
<import resource="classpath:/spring-hibernate-config.xml" />
<bean class="org.springframework.context.support.PropertySourcesPlaceholderConfigurer"/>
</beans>
затем Spring-hibernate-config.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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="mappingResources">
<list>
<value>mapping/JItem.xml</value>
</list>
</property>
<property name="dataSource" ref="dataSource"/>
Проблема в том, что он не может найти "org.springframework.orm.hibernate4.LocalSessionFactoryBean"
Я что-то забыл?