Liferay Custom Contacts Portfolio

I am new to liferay and wondered if it is possible (and how) to create a custom login portlet using the Vaadin framework. thanks

+4
source share
1 answer

There are two ways to do this: 1. In liferay, you can redefine custom jsp pages using hooks , on this redefined jsp page you can specify your vaadin portlet using jsp tags, maybe you should redefine authenticateByScreenName / authenticateByEmailAddress (... ) in UserLocalService (you can also do this with hooks)

2. use sets up a custom action in liferay , this can be done with hooks, I think this is a better idea

+1
source

Source: https://habr.com/ru/post/1398192/


All Articles