I have a module PortalHook that contains :
- my class XCustomJspBag implements CustomJspBag
- my jsp file terms_of_use (custom_jsps/html/portal/terms_of_use.jsp)
I need to use the JournalArticle class in this jsp file but when I add the following import :
<%@ page import="com.liferay.journal.model.JournalArticle" %>
It always get me an error :
Une erreur s'est produite à la ligne: [245] dans le fichier Java généré: [C:\x\bundles\tomcat-9.0.17\work\Catalina\localhost\ROOT\org\apache\jsp\html\portal\terms_005fof_005fuse_jsp.java] Only a type can be imported. com.liferay.journal.model.JournalArticle resolves to a package
Right now i'm stuck here.
(I've imported com.liferay.journal.pai-4.5.2.jar in the pom.xml)