Liferay 7 JournalArticle在模板处理程序上显示错误

时间:2018-12-26 10:34:44

标签: java nullpointerexception liferay liferay-7

我目前正在使用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());

我该怎么办?

预先感谢

0 个答案:

没有答案