微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Blaze Persistence EntityView 继承映射

如何解决Blaze Persistence EntityView 继承映射

我目前正在将 Quarkus 与 Blaze Persistence 结合用于我的微服务。我有以下实体模型:

@Entity
public class Content extends BaseEntity {
    private boolean deleted;
    private boolean published;
}

@Entity
public class WebContent extends Content {
    private String webpage;
}

我已将实体映射到以下实体视图:

@EntityView(Content.class)
@EntityViewInheritance
@CreatableEntityView
@UpdatableEntityView
public interface ContentUpdateView {
    @IdMapping
    Long getId();
    boolean isPublished();
    void setPublished(boolean published);
}

@EntityView(WebContent.class)
@CreatableEntityView
@UpdatableEntityView
public interface WebContentUpdateView extends ContentUpdateView {
    String getWebpage();
    void setWebpage(String webpage);
}

我的 ContentsResource 中有以下方法

@POST
public ContentUpdateView save(ContentUpdateView content) {
    return contentsService.save(content);
}

当我调用 post 操作时,我只得到基本的 ContentUpdateView 而不是 WebContentUpdateView。有什么配置要做吗? (对于 Jackson,我在实体上使用 @JsonTypeInfo 和 @JsonSubType 注释来完成此操作)。

谢谢 欧盟

解决方法

我使用 Jackson 注释让它工作。这是基类:

@EntityView(Content.class)
@EntityViewInheritance
@JsonTypeInfo(
        use = JsonTypeInfo.Id.NAME,property = "type")
@JsonSubTypes({
        @JsonSubTypes.Type(value = DescriptiveContentView.class,name = "descriptive"),@JsonSubTypes.Type(value = MediaContentView.class,name = "media"),@JsonSubTypes.Type(value = WebContentView.class,name = "web")
})
@JsonTypeName("content")
public abstract class ContentView {
    @IdMapping
    public abstract Long getId();
    public abstract boolean isPublished();
}

这是一个子类:

@EntityView(DescriptiveContent.class)
@JsonTypeName("descriptive")
public abstract class DescriptiveContentView extends ContentView {
    public abstract Set<LocalizedParagraphView> getLocalizedParagraphs();
}

我将抽象类用于其他目的,但它也适用于接口。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。