我正在寻找一种在 POJO/model 类中没有注释的情况下使用 jersey/resteasy 创建 web 服务的方法。我使用jooq生成模型类,并且每次在数据库中进行更改时都会生成模型类。
我发现了两个与我的问题相关的主题:here和here,但我想知道是否有其他解决方案,而不是使用另一个库/实现。
有小费吗?技术?主意?
非常感谢!
编辑:我添加了一些代码。我有一个名为“蘑菇”的模型类,它由 3 个字段组成:蘑菇 ID、标题、描述。
我想要一个看起来像这样的 JSON 表示:
{
mushroom: {
mushroom_id: 12,
title: "pied de mouton",
description: "très bon champignon!"
}
}
为此,使用 Resteasy,我需要一个带有以下注释的蘑菇类:
@XmlRootElement(name = "mushroom")
public class Mushroom {
private Integer mushroomId;
private String title;
private String description
// for each field I need a getter
// with the XmlElement annotations.
// for 'description' for instance:
@XmlElement
public String getDescription() {
return description;
}
}
但是,jooq 用我的表 Mushroom 生成的 Mushroom 类/实体看起来像:
@javax.annotation.Generated(value = { "http://www.jooq.org", "3.2.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Mushrooms extends org.jooq.impl.TableImpl<com.spanier.db.tables.records.MushroomsRecord> {
private static final long serialVersionUID = -539518621;
/**
* The singleton instance of <code>public.mushrooms</code>
*/
public static final com.spanier.db.tables.Mushrooms MUSHROOMS = new com.spanier.db.tables.Mushrooms();
/**
* The class holding records for this type
*/
@Override
public java.lang.Class<com.spanier.db.tables.records.MushroomsRecord> getRecordType() {
return com.spanier.db.tables.records.MushroomsRecord.class;
}
/**
* The column <code>public.mushrooms.mushrooms_id</code>.
*/
public final org.jooq.TableField<com.spanier.db.tables.records.MushroomsRecord, java.lang.Integer> MUSHROOMS_ID = createField("mushrooms_id", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this);
/**
* The column <code>public.mushrooms.name</code>.
*/
public final org.jooq.TableField<com.spanier.db.tables.records.MushroomsRecord, java.lang.String> NAME = createField("name", org.jooq.impl.SQLDataType.CHAR.length(50).nullable(false), this);
/**
* The column <code>public.mushrooms.description</code>.
*/
public final org.jooq.TableField<com.spanier.db.tables.records.MushroomsRecord, java.lang.String> DESCRIPTION = createField("description", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* Create a <code>public.mushrooms</code> table reference
*/
public Mushrooms() {
super("mushrooms", com.spanier.db.Public.PUBLIC);
}
/**
* Create an aliased <code>public.mushrooms</code> table reference
*/
public Mushrooms(java.lang.String alias) {
super(alias, com.spanier.db.Public.PUBLIC, com.spanier.db.tables.Mushrooms.MUSHROOMS);
}
/**
* {@inheritDoc}
*/
@Override
public org.jooq.Identity<com.spanier.db.tables.records.MushroomsRecord, java.lang.Integer> getIdentity() {
return com.spanier.db.Keys.IDENTITY_MUSHROOMS;
}
/**
* {@inheritDoc}
*/
@Override
public org.jooq.UniqueKey<com.spanier.db.tables.records.MushroomsRecord> getPrimaryKey() {
return com.spanier.db.Keys.MUSHROOMS_PKEY;
}
/**
* {@inheritDoc}
*/
@Override
public java.util.List<org.jooq.UniqueKey<com.spanier.db.tables.records.MushroomsRecord>> getKeys() {
return java.util.Arrays.<org.jooq.UniqueKey<com.spanier.db.tables.records.MushroomsRecord>>asList(com.spanier.db.Keys.MUSHROOMS_PKEY);
}
/**
* {@inheritDoc}
*/
@Override
public com.spanier.db.tables.Mushrooms as(java.lang.String alias) {
return new com.spanier.db.tables.Mushrooms(alias);
}
}
如您所见,jooq 生成的类是: 1. 已经填充了注解,如果我添加新注解,很容易“读取”类 2. 因为每次我在Mushroom table 我将丢失我的注释(json 表示的注释),我需要再次编辑 jooq 类。
因此,我正在寻找一种将蘑菇生成类的 Resteasy 注释(json 表示)添加到另一个类/另一个文件中的方法。