尝试将 Spring Data JPA 与 Spring Boot 结合使用时出现无法创建实体管理器的错误

use*_*123 6 java spring spring-data-jpa spring-boot

我目前正在开发一个 POC,以将 Spring Boot 与 Spring Data JPA 结合使用。

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

我收到以下错误

创建名称为“bookRepository”的 bean 时出错:设置 bean 属性“entityManager”时,无法创建 [org.springframework.orm.jpa.SharedEntityManagerCreator] 类型的内部 bean“(inner bean)”;嵌套异常是 org.springframework.beans.factory.BeanCreationException:创建名称为“(inner bean)#2”的 bean 时出错:设置构造函数参数时无法解析对 bean“entityManagerFactory”的引用;嵌套异常是 org.springframework.beans.factory.NoSuchBeanDefinitionException:未定义名为“entityManagerFactory”的 bean

这是我的配置类:

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);
    }

}
Run Code Online (Sandbox Code Playgroud)

下面是我的存储库

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);
}
Run Code Online (Sandbox Code Playgroud)

这是我的控制器

@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();
    }

}
Run Code Online (Sandbox Code Playgroud)

在 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>
Run Code Online (Sandbox Code Playgroud)

请帮我解决这个错误

Dav*_*yer 0

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