如何在没有 finder-column 的情况下使用 service-builder liferay 创建 finder
how to create finder with service-builder liferay without finder-column
如何创建没有 finder-column 的方法 getAll
在 service.xml 中写
因为我需要在没有输入参数的情况下获取 table 省的所有数据。
当运行 liferay:build-服务应计异常:
元素类型"finder"内容不全,必须匹配"(finder-column)
鉴于实体(阅读 table)称为 Foo。
我认为您可以将 getAll
方法手动添加到 FooLocalServiceImpl
并重新运行服务生成器。这应该可以解决问题。
类似于:
public List<Foo> getAll() {
return FooLocalServiceUtil.get(QueryUtil.AllPos, QueryUtil.AllPos);
}
如何创建没有 finder-column 的方法 getAll 在 service.xml 中写
因为我需要在没有输入参数的情况下获取 table 省的所有数据。
当运行 liferay:build-服务应计异常: 元素类型"finder"内容不全,必须匹配"(finder-column)
鉴于实体(阅读 table)称为 Foo。
我认为您可以将 getAll
方法手动添加到 FooLocalServiceImpl
并重新运行服务生成器。这应该可以解决问题。
类似于:
public List<Foo> getAll() {
return FooLocalServiceUtil.get(QueryUtil.AllPos, QueryUtil.AllPos);
}