java.lang.IllegalArgumentException: не управляемый тип: classTestEntity - PullRequest
0 голосов
/ 26 ноября 2018

Я пытаюсь получить данные с использованием Spring JPA из двух таблиц в базе данных:

enter image description here

И есть исключение:

nested exception is java.lang.IllegalArgumentException: Not an managed type: class com.entity.Product

Сущность продукта:

@Entity
@Table(name = "PRODUCT")
@Getter
@Setter
public class Product {
    @Id
    @Column(name = "id", unique = true, nullable = false)
    private int id;

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

    @OneToMany(mappedBy = "productService", fetch = FetchType.EAGER)
    private List<ProductService> productService;

    @ManyToOne(targetEntity = ProductStatus.class, optional = false)
    @JoinColumn(name = "PRODUCT_STATUS_ID")
    private ProductStatus status;
}

Репозиторий

public interface CaKeyRepository extends JpaRepository<Product, Integer> {

}

Попытка загрузки с помощью findAll ();

public HashMap<String, Key> loadProduct() throws Exception {
    List<Product> products = caKeyRepository.findAll();

Также я использую WildFly12. Сервер приложений.

Реализация проекта с зависимостями:

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-beans</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-tx</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
    </dependency>
    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-entitymanager</artifactId>
        <exclusions>
            <exclusion>
                <groupId>javax.transaction</groupId>
                <artifactId>jta</artifactId>
            </exclusion>
            <exclusion>
                <groupId>org.hibernate.javax.persistence</groupId>
                <artifactId>hibernate-jpa-2.0-api</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
    <dependency>
        <groupId>org.springframework.data</groupId>
        <artifactId>spring-data-jpa</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-aspects</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-orm</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.hibernate.common</groupId>
        <artifactId>hibernate-commons-annotations</artifactId>
    </dependency>
    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-validator</artifactId>
    </dependency>
    <dependency>
        <groupId>com.atomikos</groupId>
        <artifactId>transactions-hibernate4</artifactId>
    </dependency>

Все предоставляются

  • Версия Spring - 4.3.10.RELEASE
  • Версия данных Spring - 1.11.6.RELEASE
  • Версия Hibernate-entitymanager - 4.3.11.Final
  • Версия Hibernate-validator - 5.1.3.Final
  • Версия Atomikos- 4,0,4

1 Ответ

0 голосов
/ 26 ноября 2018

Похоже, ваша сущность не сканируется в спящем режиме.

Если вы настроили JPA / Hibernate через persistence.xml: <class>com.entity.Product</class>

, если через Spring-ORM, то в вашем LocalContainerEntityManagerFactoryBean установите пакет в методе packagesToScan.

...