我目前正在使用liferay 7.1版本。
我正在获得期刊文章(BO中的Web内容)。我想关联期刊文章显示。
在liferay 6.2中,我使用了:
JournalArticleDisplay journalDisplay = JournalContentUtil.getDisplay(journalArticle.getGroupId(), journalArticle.getArticleId(), "", locale.getLanguage(), themeDisplay);
现在,在liferay 7.1中,它不起作用,我使用了:
JournalArticleLocalServiceUtil.getArticleDisplay(journalArticle.getGroupId(), journalArticle.getArticleId(), "", locale.getLanguage(), themeDisplay);
但是此代码在以下行的JournalUtil.transform中返回了NullPointerException:
TemplateHandler templateHandler = TemplateHandlerRegistryUtil.getTemplateHandler(JournalArticle.class.getName());
我该怎么办?
预先感谢