我有Liferay文章(在他们的最新版本),并希望得到他们的friendlyUrl。我知道friendlyUrl在Layout表中,但我不知道如何在那里映射我的文章。
互联网和Liferay的文档似乎没有帮助
答案 0 :(得分:1)
对于每个布局,请获取friendlyUrl
List<Long> layoutIds = JournalContentSearchLocalServiceUtil.getLayoutIds(groupId, false, articleId); // all the layoutIds
Layout layout = LayoutLocalServiceUtil.getLayout(groupId, false, layoutId.get(x));
layout.getFriendlyURL();