“xxxDAOImpl”中的字段会话需要类型为“org.hibernate.SessionFactory”的Bean,但找不到该Bean

ax6ht2ek  于 2022-12-13  发布在  其他
关注(0)|答案(3)|浏览(125)

我得到以下错误(从我相信,道层-但我可能是阅读错了)。
我有一个Sping Boot 应用程序,现在,创建一个DB架构。表正在正确创建,但当我尝试添加Dao和DaoImpl文件时,它崩溃并显示以下错误消息:

***************************
APPLICATION FAILED TO START
***************************

Description:

Field session in xx.dao.ParkingSpaceDaoImpl required a bean of type 'org.hibernate.SessionFactory' that could not be found.

Action:

Consider defining a bean of type 'org.hibernate.SessionFactory' in your configuration.

在我的DaoImpl文件中,我有:

@Repository 
public class xxDaoImpl implements xxDao {
    @Autowired
    private SessionFactory session;

下面是我的POM.xml文件的外观:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>xx.xx</groupId>
    <artifactId>xxx</artifactId>
    <version>1.0</version>
    <packaging>jar</packaging>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.4.1.RELEASE</version>
        <relativePath/> 
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-jdbc</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.9</version>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

有人知道我怎么解决这个问题吗?请告诉我,谢谢。

lpwwtiir

lpwwtiir1#

所以我找到了一个适合我的解决方案。如果您使用的是configuration .xml文件,Mathias可能是对的。但是对于使用www.example.com文件的用户application.properties,您需要将下面这行代码添加到配置类或主应用程序类中:

@Bean  
public SessionFactory sessionFactory(HibernateEntityManagerFactory hemf){  
    return hemf.getSessionFactory();  
}

完成后,将此行添加到application.properties文件中:

spring.jpa.properties.hibernate.current_session_context_class=org.springframework.orm.hibernate4.SpringSessionContext

这个解决方案对我很有效。下面是我能够利用的其他参考资料:
http://www.ekiras.com/2016/02/how-to-use-configure-session-factory-bean-springboot.html
Spring Boot - Handle to Hibernate SessionFactory

kdfy810k

kdfy810k2#

首先,确保Hibernate依赖项位于类路径上。
如果是,则应在Spring应用程序上下文中定义SessionFactory。
在使用Hibernate 4的情况下,配置必须如下所示:

<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
    <property name="dataSource" ref="dataSource" />
    <property name="hibernateProperties">
        <props>
            <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
            <prop key="hibernate.dialect">${hibernate.dialect}</prop>
            <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
            <prop key="hibernate.format_sql">${hibernate.format_sql}</prop>
        </props>
    </property>

    <property name="packagesToScan">
        <list>
            <value>com.gya.model</value>
        </list>
    </property>
</bean>

此定义允许您连接到DB,如果没有找到有效的SessionFactory,Spring将导致异常。

qlzsbp2j

qlzsbp2j3#

我有一个Spring Boot 项目,我想添加会话工厂来管理会话。类似的问题,我的解决方法如下
1.从会话工厂中删除@自动连线
1.添加实体管理器
1.使用@PersistenceContext对其进行注解
如下图

@PersistenceContext
private EntityManager entityManger;

private  SessionFactory sessionFactory;

相关问题