Попробуйте определить bean-компонент типа «javax.persistence.EntityManager» в вашей конфигурации. - PullRequest
0 голосов
/ 19 апреля 2020

Я новичок в весне. Итак, сейчас я начинаю изучать весеннюю загрузку и создавать этот простой проект, но когда я запустил его, я получил эту ошибку "Поле entityManager в sagala.rest.boot.remade.dao.EmployeeDaoImpl требовал bean-компонента типа 'javax.persistence. EntityManager ', который не может быть найден. "

Вот мой класс контроллера

package sagala.rest.boot.remade.controller;

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import sagala.rest.boot.remade.entity.Employee;
import sagala.rest.boot.remade.service.EmployeeService;


@RestController
@RequestMapping("/api")
public class MainController {

@Autowired
private EmployeeService employeeService;

@GetMapping("/employees")
public List<Employee> findAll() {
    return employeeService.findAll();
}

}

Вот класс обслуживания

package sagala.rest.boot.remade.service;

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import sagala.rest.boot.remade.dao.EmployeeDao;
import sagala.rest.boot.remade.entity.Employee;

@Service
public class EmployeeServiceImpl implements EmployeeService {

@Autowired
private EmployeeDao employeeDao;

@Override
@Transactional
public List<Employee> findAll() {

    return employeeDao.findAll();
}

}

Вот класс DAO

package sagala.rest.boot.remade.dao;

import java.util.List;

import javax.persistence.EntityManager;

import org.hibernate.Session;
import org.hibernate.query.Query;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;

import sagala.rest.boot.remade.entity.Employee;

@Repository
public class EmployeeDaoImpl implements EmployeeDao {

@Autowired
private EntityManager entityManager;

@Override
public List<Employee> findAll() {
    Session session =entityManager.unwrap(Session.class);
    Query<Employee> query =session.createQuery("from Employee", Employee.class);
    List<Employee> employees =query.getResultList();
    return employees;
}

}

Вот класс сущности

package sagala.rest.boot.remade.entity;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;

@Entity
@Table(name="employee")
public class Employee {

@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
@Column(name="id")
private int id;

@Column(name="first_name")
private String firstName;

@Column(name="last_name")
private String lastName;

@Column(name="email")
private String email;

public Employee() {

}

public Employee(String firstName, String lastName, String email) {
    this.firstName = firstName;
    this.lastName = lastName;
    this.email = email;
}

public int getId() {
    return id;
}

public void setId(int id) {
    this.id = id;
}

public String getFirstName() {
    return firstName;
}

public void setFirstName(String firstName) {
    this.firstName = firstName;
}

public String getLastName() {
    return lastName;
}

public void setLastName(String lastName) {
    this.lastName = lastName;
}

public String getEmail() {
    return email;
}

public void setEmail(String email) {
    this.email = email;
}

}

Вот файл POM

<?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 
https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.2.6.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>sagala</groupId>
<artifactId>rest.boot.remade</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>rest.boot.remade</name>
<description>Demo project for Spring Boot</description>

<properties>
    <java.version>1.8</java.version>
    <maven-jar-plugin.version>3.1.1</maven-jar-plugin.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-web</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <scope>runtime</scope>
        <optional>true</optional>
    </dependency>
    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <scope>runtime</scope>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
        <exclusions>
            <exclusion>
                <groupId>org.junit.vintage</groupId>
                <artifactId>junit-vintage-engine</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
</dependencies>

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

</project>

Вот свойства приложения

spring.datasource.url = jdb c: mysql: // localhost: 3306 / employee_directory? useSSL = false & serverTimezone = UTC spring.datasource.username = spring ******* spring.datasource.password = spring *******

Если любой может мне помочь. Спасибо

1 Ответ

0 голосов
/ 19 апреля 2020

Я поменял весеннюю загрузочную версию с 2.2.6 на 2.1.13 и все работает отлично. Похоже, javax.persistence.EntityManager поврежден в новой версии весенней загрузки. Несмотря на то, что я несколько раз удалял репо, я все еще не мог найти интерфейс JpaRepository при попытке расширить его как еще одну альтернативную реализацию dao.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...