java - 尝试将 Spring Data JPA 与 Spring Boot 结合使用时出现无法创建 entityManager 的错误

标签 java spring spring-data-jpa spring-boot

我目前正在研究将 Spring Boot 与 Spring Data JPA 结合使用的 POC。

我想使用 Spring Data JPA 从数据库中获取记录。

我收到以下错误

Error creating bean with name 'bookRepository': Cannot create inner bean '(inner bean)' of type [org.springframework.orm.jpa.SharedEntityManagerCreator] while setting bean property 'entityManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name '(inner bean)#2': Cannot resolve reference to bean 'entityManagerFactory' while setting constructor argument; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'entityManagerFactory' is defined

这是我的配置类:

package com.boot.configration;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;

@EnableAutoConfiguration
@ComponentScan
@EnableJpaRepositories
public class ApplicationStarter {
    public static void main (String[] args) {
        SpringApplication.run(ApplicationStarter.class, args);
    }

}

下面是我的仓库

package com.boot.configration;

import org.springframework.data.jpa.repository.JpaRepository;

import org.springframework.data.repository.query.Param;
import org.springframework.stereotype.Repository;

@Repository
public interface BookRepository extends JpaRepository<Book, String> {
    public Iterable<Book> findBooksByAuthor(@Param("author") String author);
}

这是我的 Controller

@RestController
public class BookController {
    @Autowired
    protected BookRepository bookRepository;

    @RequestMapping(value = "/isbn")
    @ResponseBody
    public String book() {
        Book book = bookRepository.findOne("2222222");
        return "Book Name is = " + book.getTitle()+ " "  + "Author is = " + book.getAuthor();
    }

}

在 POM.xml 中,我有以下依赖项:

<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>BOOT</groupId>
    <artifactId>SpringBootProject</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.0.0.RC1</version>
    </parent>
    <repositories>
        <repository>
            <id>spring-snapshots</id>
            <url>http://repo.spring.io/snapshot</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
        <repository>
            <id>spring-milestones</id>
            <url>http://repo.spring.io/milestone</url>
        </repository>
    </repositories>
    <pluginRepositories>
        <pluginRepository>
            <id>spring-snapshots</id>
            <url>http://repo.spring.io/snapshot</url>
        </pluginRepository>
        <pluginRepository>
            <id>spring-milestones</id>
            <url>http://repo.spring.io/milestone</url>
        </pluginRepository>
    </pluginRepositories>
    <name>SpringBootProject</name>
    <url>http://maven.apache.org</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
    </dependencies>
</project>

请帮我解决这个错误

最佳答案

您可以尝试使用 spring-boot 1.0.2.RELEASE 吗?

关于java - 尝试将 Spring Data JPA 与 Spring Boot 结合使用时出现无法创建 entityManager 的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23364297/

相关文章:

Spring Cache - 仅当 API 响应成功时才清除缓存

java - Spring http 出站网关 - 如何返回带有正文的 ResponseEntity

java - Spring jpa native 查询排序添加前缀以按字段名称排序

java - 当我使用spring data保存实体时,Repository返回空指针异常

java - 这段代码的复杂度是 O(n^2) 还是 O(n^2 * n^(1/2))?

java - Maven jersey-multipart 缺少对 javax.ws.rs.core.Response 的依赖

java - 使用 Java DB 和 Derby 之间有什么区别吗?

java - 复制具有条目限制的 java 列表

spring - 如何在Spring表单内的 map 内填充 map ?

spring - Spring Data中具有不同返回值的相同查询方法和参数