我正在寻找一种动态方法来控制使用查询参数从请求返回的响应对象。
我使用Jersey 2.x和Hibernate 4来管理实体以及一些Spring用于安全性等。问题是Jersey不是序列化附加实体而只是序列化基本实体。我目前正在使用com.fasterxml.jackson.datatype.hibernate4
。这给了我一些灵活性来处理如何使用JPA fetch = Eager等加载子实体和父实体。但是我真的想让它变得动态。
我尝试通过指定?with=<someentity>
来指定要附加的实体来进行简单的动态加载。在获取实体时,我使用反射来调用getter以获得某些实体,并且它成功地附加了实体,但是当发送实体时它并没有序列化附加的实体。
这是我想要做的一个非常简单的例子。这真的只是一个分开的部分,但这个想法就在那里。问题是当我从服务器返回Campaign对象时,它没有通过调用loadEntity来序列化附加的实体。
@Path("campaign")
public class CampaignResource {
@GET
@Path("{entity_id}")
public Campaign find(@PathParam("entity_id") final Long id, @QueryParam("with") final String with) {
T entity = repository.findOne(id);
load(entity, with);
return entity;
}
/**
* This is used to attach entities that are requested via the api.
*
* @param entity
* @param with
*/
@SuppressWarnings("unused")
protected void loadWithEntities(T entity, final String with) {
String[] withFields;
if (with.contains(",")) {
// Split the with clause into separate values
withFields = with.split(",");
} else {
// Single with clause
withFields = new String[] { with };
}
for (String field : withFields) {
final String getterMethodName = getMethodGetterForField(field);
Method method = null;
try {
method = entityClass.getMethod(getterMethodName);
if (method != null) {
logger.info("Loading entity " + getterMethodName);
// Some odd reason we have to assign the variable so that it
// is attached.
final Object attached = method.invoke(entity);
}
} catch (Exception e) {
logger.error("Unable to find method name %s ", getterMethodName, e);
}
}
}
}
答案 0 :(得分:1)
Jersey有Entity Data Filtering来处理这个用例。希望你使用更高版本的泽西岛,因为直到(2.14 :-)和2.16之间不支持杰克逊。懒得检查什么时候。我猜你正在使用jersey-media-json-jackson
。如果它引入jersey-entity-filtering
依赖项,您将知道是否支持该版本。您无需添加任何其他内容。
您只需要配置三件事:
SelectableEntityFilteringFeature
。配置查询参数名称。
.property(SelectableEntityFilteringFeature.QUERY_PARAM_NAME, "with")
有不同类型的过滤功能,但这里是section on query param filtering。信息不多,因为没有太多信息可讲。您真正需要知道的是如何配置,并且它按预期工作,即?with=prop1,prop2,prop3