Reputation: 830
I'm playing with Spring Boot developing portlets to Liferay portal. I was able to create a portlet with a vanilla Spring setup (without Spring Boot), the project is available in https://github.com/tmoreira2020/spring-boot-liferay-portlet. When I add Spring Boot setup it stops to work. Basically what happens is that the user gets a blank page after the invocation of a action phase. Looks like that I'm missing something but what? Any advice is welcome.
Upvotes: 1
Views: 5778
Reputation: 830
I found the solution on this documentation Deploying a WAR in an Old (Servlet 2.5) Container from Spring. The solution is implemented on commit 36c0f68.
Upvotes: 3