如何在Spring Boot中从不同的微服务中实现两个实体之间的关系?

时间:2017-09-13 09:26:15

标签: spring-boot spring-data spring-data-jpa microservices

我正在尝试使用微服务架构创建一个简单的 Spring Boot Web应用。

我有两个微服务,其实体定义如下:

Microservice 1 :

@Entity
public class Article {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;

    private String title;

    private String Content;

}

Microservice 2 :

@Entity
public class Tag {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;

    private String title;
}

现在,我想在网关中的这两个实体之间建立多对多关系。

我曾试图使用假装客户端,如下所示:

Gateway :

@FeignClient(value = "article-service")
public interface ArticleClient {

    @RequestMapping(value = "/articles/", method = RequestMethod.GET)
    Set<Article> getArticleById(@RequestParam("id") Long id);

}

@FeignClient(value = "tag-service")
public interface TagClient {

    @RequestMapping(value = "/tags/", method = RequestMethod.GET)
    Tag getTagById(@RequestParam("id") Long id);

}

在我的网关中定义文章代码实体,如下所示:

Gateway :

@JsonIgnoreProperties(ignoreUnknown = true)
public class Entry {

    private Long id;

    private String title;

    private String Content;

    @ManyToMany(cascade = CascadeType.ALL)
    @JoinTable(name = "article_tag",
        joinColumns = @JoinColumn(name = "article_id", referencedColumnName = "id"),
        inverseJoinColumns = @JoinColumn(name = "tag_id",
                referencedColumnName = "id"))
    private Set<Tag> tags;
}


@JsonIgnoreProperties(ignoreUnknown = true)
public class Tag {
    private Long id;

    private String title;

    @ManyToMany(mappedBy = "tags")
    private Set<Article> articles;
}

我的数据库中有一个名为 article_tag 的表格( Postgres )。

现在如何在网关中定义我的存储库? 如何编写getArticlesByTagId()或getTagsByArticleId()函数? 我尽我所能使这种关系发挥作用,但我认为他们不会相互相处:)

1 个答案:

答案 0 :(得分:1)

你想要的只是不可能,你有2个不同的应用程序,每个实体在其上下文中都有自己的生命。想象一下服务失败的情况,你会怎么做?

如果微服务与另一个微服务紧密相关,则应修改您的体系结构。

要解决此类问题,请在每个实体中添加标识符以标识哪个标记属于条目,反之亦然,您可以使用这些标识符请求您的数据。