gpt4 book ai didi

java - 使用 jar 中的@entity 时,Spring Data Jpa Repository 不工作

转载 作者:搜寻专家 更新时间:2023-10-31 19:32:11 25 4
gpt4 key购买 nike

我有一个新的 SpringBoot 应用程序来公开一些与存在于 jar 中的实体相关的服务(作为依赖项包含在 POM 中)。对于数据访问,我计划使用 SpringData,这样我就可以使用很棒的 JpaRepository 而不是手动编写 DAO。

从代码中可以看到 jar,因此一切都可以正常编译,但是当 Spring 开始连接 bean 时,它会抛出异常:

Caused by: java.lang.IllegalArgumentException: Not a managed type: class com.companyName.common.countrytype.Country
at org.hibernate.jpa.internal.metamodel.MetamodelImpl.managedType(MetamodelImpl.java:210) ~[hibernate-entitymanager-5.0.11.Final.jar:5.0.11.Final]
at org.springframework.data.jpa.repository.support.JpaMetamodelEntityInformation.<init>(JpaMetamodelEntityInformation.java:70) ~[spring-data-jpa-1.10.3.RELEASE.jar:na]

我尝试添加@EnableJpaRepositories 指向扩展JpaRepository 的接口(interface)的包,但仍然没有成功。

但是,如果我使用粘贴到我的新项目中的@Entity 的副本,一切都会很好。 (而不是使用 jar 中的实体)

您是否看到我在将 SpringData/JpaEntity 与在 jar 中声明的 @Entity 一起使用时遗漏了什么?你做过类似的事情吗?

这是我的代码:

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>com.mycompany</groupId>
<artifactId>country-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>country-service</name>
<description>Spring Boot country-service</description>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.1.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</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-ws</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-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.mycompany</groupId>
<artifactId>mycompany-core</artifactId>
<version>1.1.20</version>
</dependency>
</dependencies>

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

入口点:

package com.mycompany.admin.api;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;

@SpringBootApplication
@EnableJpaRepositories(basePackages={"com.mycompany.admin.api"}) //tried this but does not work
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}

存储库:

package com.mycompany.admin.api;

import java.util.List;
import org.springframework.data.jpa.repository.JpaRepository;
import com.mycompany.common.countrytype.Country; //This is located in a jar included as dependency in the pom

public interface CountryRepository extends JpaRepository<Country, Long> {

}

要测试的简单 Controller :

package com.mycompany.admin.api;

import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import com.mycompany.common.countrytype.Country;

@Controller
public class CountryController {

@Autowired
private CountryRepository repo;

@RequestMapping("/")
@ResponseBody
public String greeting() {
return "Hello";
}


@RequestMapping("/countries")
@ResponseBody
public String listCountry() {
List<Country> countries;
try {
countries = repo.findAll();
} catch (Exception e) {
System.out.println(e.getMessage());
return e.getMessage();
}
if (countries.isEmpty()) {
String errorMst = "no countries found";
System.out.println(errorMst);
return errorMst;
} else {
return "size:" + countries.size();
}
}
}

实体:

package com.mycompany.admin.api;

import static javax.persistence.GenerationType.IDENTITY;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.persistence.UniqueConstraint;

@Entity
@Table(name = "country", uniqueConstraints = { @UniqueConstraint(columnNames = "code"), @UniqueConstraint(columnNames = "name") })
public class Country {
protected Long id;
private String code;
private String name;

protected Country() {
}

public Country(Long id, String code, String name) {
this.id = id;
this.code = code;
this.name = name;
}

@Id
@GeneratedValue(strategy = IDENTITY)
@Column(name = "id", unique = true, nullable = false)
public Long getId() {
return this.id;
}

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

@Column(name = "code", unique = true, nullable = false, length = 2)
public String getCode() {
return this.code;
}

public void setCode(String code) {
this.code = code;
}

@Column(name = "name", unique = true, nullable = false, length = 100)
public String getName() {
return this.name;
}

public void setName(String name) {
this.name = name;
}

@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
if (!super.equals(o)) {
return false;
}

Country country = (Country) o;

if (!code.equals(country.code)) {
return false;
}
if (!name.equals(country.name)) {
return false;
}

return true;
}

@Override
public int hashCode() {
int result = super.hashCode();
result = 31 * result + code.hashCode();
result = 31 * result + name.hashCode();
return result;
}

}

奇怪的是,如果我删除行“import com.mycompany.common.countrytype.Country;”在我的 Repository 和 Controller 类中,因此代码使用了它的克隆版本,该版本存储在新的引导项目中,这可以正常工作。 所以只有在使用 jar 中的 Country 实体时才会出现此问题。

非常感谢您给我的任何提示或建议。

提前致谢!

最佳答案

使用@EntityScan("your.lib.package.with.entities")

关于java - 使用 jar 中的@entity 时,Spring Data Jpa Repository 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40144301/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com