SlideShare a Scribd company logo
Liferay Platform 
A new and exciting vision 
Jorge Ferrer 
Vice President Engineering
Liferay DevCon 2014: Lliferay Platform - A new and exciting vision
Liferay's goal is not be 
well positioned but to 
add value?
How can a portal 
platform provide the 
most value today? 
And in the future?
A year of great innovation for Liferay
Three trends for 
a new vision
Image Credit & Copyright: Brandon Goforth 
1Mobile development 
has been a hurricane 
of innovation
When was the 
last time 
you did this? 
By tuttletree @flickr
How are these apps 
By pedromourapinheiro @flickr 
being built?
Image credits: myshadesofgray.wordpress.com
How about the 
backend?
Hmm, anyone 
knows Java? 
Ruby on Rails? 
Django?
Don't let the backend be 
an after thought!
Developing the backend of 
a mobile App 
from scratch is rarely a 
good option
Do you really want to 
implement user 
management once again?
How about... 
? 
File storage 
Localized content 
Social Meta-Data 
Search 
Relationships 
Authentication 
Workflow 
Comments 
Tagging 
Categorization
Liferay offers many 
reusable services for 
building Apps 
μ μ 
μ μ 
Reusable Services 
Identity 
User Management 
Permissions 
Content Management 
Document Management 
Dynamic Forms 
...
Some of you are already doing this 
Forums App Blog reader Blogs, Agenda, Content
But it requires knowing Liferay 
really well... 
Right?
Liferay Screens 
Create Native Apps 
backed by Liferay in a 
fraction of the time 
Screen UI 
Screen Local
How long does it take 
to build an App? 
(Including the backend)
How about 1 minute?
Characteristics 
✓Fully functional 
Screenlets backed by a 
Liferay server 
✓100% themable 
✓Compatible with iOS/ 
Android SDKs 
✓Open Source 
Juan 
JM
That's much better. Just for Mobile Phones? 
#LRNAS2014
By nepaltibet2005 @flickr
Image credits: control4.com 
Will be a $300 billion market by 2020
#LRNAS2014 
Perfect! 
Bruno
The Web is a better 
platform than ever 
before 
2
Much better browsers.... 
... for desktop & mobile
The JavaScript revolution 
New Standards, Frameworks and techniques 
SPA
New frontend development workflow 
Multi-browser test automation 
Resource Optimization 
Fast dev environment (watch) 
Zeno
How can we leverage this 
within Liferay?
Think beyond Portlets...
Portlets are great.... as widgets 
Site Admin 
✓ I can add portlets 
whenever I want 
Frontend Developer 
x So many limitations
Full Page Apps within a Liferay Site 
I own the 
page! 
I'm free!
Standalone Apps backed by Liferay
Independent Web Apps leveraging Liferay 
Angular JS Application 
Intranet for persons with disabilities
Supporting Standalone Apps 
Liferay Core JS 
Remote APIs 
HTTP 2.0 
Web Sockets 
Reusable services 
SSO • Theming • Permissions 
Local 
APIs 
Native mobile OS UI 
Mobile Device 
Wearable, IoT 
Native App 
Mobile SDK Client 
Eduardo
And developers got all the freedom 
back :)
To use any frontend tool 
v4 to be based on jQuery 
Web 
Components
"Real Time" Applications 
Server Push & Async Requests 
Updates 
+ Servlet 3.1 
Igor Iliyan
These new ways of 
leveraging Liferay 
demand an even 
better platform
Fine grained 
Modularity and 
Extensibility 
Author: Mike Richard / Source: vagabondish.com 
3
Goal 1 
Use just the pieces of 
Liferay you really need
Maintainable & Scalable 
Breaking down 
the monolith 
Author: Mike Richard / Source: vagabondish.com
Modular Platform 
Breaking the platform and reusable services into 
OSGi modules yields many benefits 
F Only deploy needed modules. 
B Uses standard OSGi extension points. 
New! 
A Dependencies are declared. 
Scale indiv. C modules separately. 
D True hot deployment. 
Blogs 
μ μ 
μ μ E μservices
Dependency Management 
MANIFEST 
Import-Package: 
com.liferay.polls, 
com.liferay.blogs, 
com.liferay.users 
Export-Package: 
com.liferay.messageboards 
Can be autogenerated with bnd 
Fixes the class loading hell in a very elegant way 
Miguel 
Ray
Goal 2 
Extensibility built to last
OSGi Extensions 
Instead of 
auto.login.hooks=com.liferay.samples.MyAutoLogin 
Use an annotation 
@Component 
public class MyAutoLogin implements AutoLogin { 
... 
} 
Using OSGi Declarative Services
Make any custom class 
extensible 
@Component 
public class MyMenuClass { 
... 
@Reference 
public void setMenuRenderer(MenuRenderer mr) { 
_menuRenderer = mr; 
} 
} 
Using OSGi Declarative Services
Make any custom class 
extensible 
@Component 
public class MyMenuClass { 
... 
@Reference( 
cardinality = ReferenceCardinality.MULTIPLE, 
policy = ReferencePolicy.DYNAMIC, 
... 
) 
public void addMenuItem(MenuItem mi) { 
_menuItems.add(mi); 
} 
} 
Using OSGi Declarative Services
@Component 
public class MyMenuItem implements MenuItem { 
... 
} 
Make any custom class 
extensible
Audience Targeting 
A great example 
1 App 
made of 
30+ 
modules 
Highly 
Extensible 
Julio Eduardo Eudaldo
Better ways to develop 
UI Extensions 
Granularity + Maintainability 
No more need for 
JSP overrides! 
Carlos
Big focus on APIs and 
efficient protocols
Semantic Versioning 
Version each module independently 
Standard to differentiate breaking 
changes 
Automatic compatibility checks 
semver.org 
✓Dependencies on 
specific modules and 
versions, not a big 
Liferay version
Goal 3 
Work less, do more
Autogenerated conf UI 
Strongly Typed 
You can even define custom 
types
Autogenerated conf UI
Autogenerated conf UI 
1. Injected in your service 
@Activate 
protected void activate(AmazonRankingsConfiguration conf) { 
String rankingsId = conf.amazonRankingsId(); 
... 
} 
2. Fully dynamic 
Change the configuration at any time 
Draft API 
Ray
State of the art dev tooling 
Embrace and contribute to best of breed applications 
instead of building our own 
+
It's a exciting time to be a 
Liferay Developer
You can reuse your 
knowledge to do 
more than ever before
Mobile Apps/IoT 
Native, Hybrid, Web, ... 
Amazing sites & portals 
Which keep getting better 
Innovative Web Apps 
With any technology 
Liferay Platform 
More modular and extensible
The Liferay Way 
Open Source 
Following Standards 
Using state-of-the-art tools
Don't stand still while so 
many new things are 
happening
Get involved early 
Develop Apps with Screens 
Use the new dev tools 
Try out the Liferay 7 milestones
Look for these guys! 
Zeno Bruno Miguel Carlos 
Eduardo 
Ray JM Juan 
Julio Eduardo Eudaldo
Enjoy 
Thanks! 
@jorgeferrer
Don't forget to vote!

More Related Content

PDF
Making a decision between Liferay and Drupal
PDF
Liferay Portal Introduction
PPT
Liferay overview
PDF
Creating Better Customer and Employee Experiences with Liferay Portal and Cra...
PPTX
Liferay on docker
PPTX
Liferay Configuration and Customization
PPTX
Liferay
PPTX
Liferay DXP Training
Making a decision between Liferay and Drupal
Liferay Portal Introduction
Liferay overview
Creating Better Customer and Employee Experiences with Liferay Portal and Cra...
Liferay on docker
Liferay Configuration and Customization
Liferay
Liferay DXP Training

What's hot (20)

ODP
Liferay with xebia
PDF
Liferay Portal Customizing to Business Needs
PDF
EclipseCon Europe 2015 - liferay modularity patterns using OSGi -Rafik Harabi
PDF
01/2009 - Portral development with liferay
PDF
Liferay Italy Symposium 2015 Liferay Mobile SDK and Liferay Screens
PPTX
Liferay v. Drupal: Pound for Pound @ Liferay Symposium 2014 - Findings from t...
PDF
2014 Liferay Roadshow Ambientia Finland
PPTX
Liferay 7
PDF
[DevDay2018] Liferay DXP – A powerful Enterprise Solution - By Vy Bui, Develo...
PDF
Moved to https://slidr.io/azzazzel/leveraging-osgi-to-create-extensible-plugi...
PPTX
Liferay as solution for legacy applications
PPTX
Liferay portal – moving beyond content management
PPTX
Liferay portal advantages
PPTX
Portlet Framework: the Liferay way
PPTX
Liferay dxp – the good, the bad and the ugly
PPTX
Benefits of using liferay
PPT
Liferay Developer Best Practices for a Successful Deployment
ODP
Liferay and Cloud
PDF
Introduction to Portlets using Liferay Portal (Part 2)
PDF
Why choose-liferay
Liferay with xebia
Liferay Portal Customizing to Business Needs
EclipseCon Europe 2015 - liferay modularity patterns using OSGi -Rafik Harabi
01/2009 - Portral development with liferay
Liferay Italy Symposium 2015 Liferay Mobile SDK and Liferay Screens
Liferay v. Drupal: Pound for Pound @ Liferay Symposium 2014 - Findings from t...
2014 Liferay Roadshow Ambientia Finland
Liferay 7
[DevDay2018] Liferay DXP – A powerful Enterprise Solution - By Vy Bui, Develo...
Moved to https://slidr.io/azzazzel/leveraging-osgi-to-create-extensible-plugi...
Liferay as solution for legacy applications
Liferay portal – moving beyond content management
Liferay portal advantages
Portlet Framework: the Liferay way
Liferay dxp – the good, the bad and the ugly
Benefits of using liferay
Liferay Developer Best Practices for a Successful Deployment
Liferay and Cloud
Introduction to Portlets using Liferay Portal (Part 2)
Why choose-liferay
Ad

Similar to Liferay DevCon 2014: Lliferay Platform - A new and exciting vision (20)

PPTX
Intro to tech stacks bonny
PDF
2011 07 Malaysia Open Source Conference
PDF
Top Cross Platform Mobile App Development Frameworks
PDF
Your Ultimate Toolkit: Top Cross-Platform App Development Frameworks for 2024
PPTX
web development ppt by prakash bedage
PPTX
web development project prakash.pptx
PDF
Best Android Frameworks For App Development In 2023.pdf
PDF
Which Tools Are The Best For Symfony Projects_.pdf
PDF
Which Tools Are The Best For Symfony Projects_.pdf
PDF
What is hybrid mobile app development? | Nitor Infotech
PPTX
Micro Front Ends : Divided We Rule by Parth Ghiya - AhmedabadJS
PDF
Why is Flutter now Trendsetter in mobile app development .
PDF
Ionic vs flutter best platform for hybrid app development
PDF
Best android frameworks for app development in 2023.pdf
PPTX
Best Practices for Cross-Platform Native Applications
PDF
Top 10 python frameworks for web development in 2020
PPTX
Top 10 Front End Development Technologies to Focus in 2018
PPTX
Hybrid App Development Frameworks for 2025 A Complete Guide.pptx
PDF
Top 11 Front-End Web Development Tools To Consider in 2020
PPTX
[KZ] Web Ecosystem with Multimodality of Gemini.pptx
Intro to tech stacks bonny
2011 07 Malaysia Open Source Conference
Top Cross Platform Mobile App Development Frameworks
Your Ultimate Toolkit: Top Cross-Platform App Development Frameworks for 2024
web development ppt by prakash bedage
web development project prakash.pptx
Best Android Frameworks For App Development In 2023.pdf
Which Tools Are The Best For Symfony Projects_.pdf
Which Tools Are The Best For Symfony Projects_.pdf
What is hybrid mobile app development? | Nitor Infotech
Micro Front Ends : Divided We Rule by Parth Ghiya - AhmedabadJS
Why is Flutter now Trendsetter in mobile app development .
Ionic vs flutter best platform for hybrid app development
Best android frameworks for app development in 2023.pdf
Best Practices for Cross-Platform Native Applications
Top 10 python frameworks for web development in 2020
Top 10 Front End Development Technologies to Focus in 2018
Hybrid App Development Frameworks for 2025 A Complete Guide.pptx
Top 11 Front-End Web Development Tools To Consider in 2020
[KZ] Web Ecosystem with Multimodality of Gemini.pptx
Ad

Recently uploaded (20)

PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PPTX
Transform Your Business with a Software ERP System
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
Understanding Forklifts - TECH EHS Solution
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
Digital Strategies for Manufacturing Companies
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PPTX
Reimagine Home Health with the Power of Agentic AI​
PPTX
history of c programming in notes for students .pptx
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
System and Network Administraation Chapter 3
PDF
How Creative Agencies Leverage Project Management Software.pdf
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Transform Your Business with a Software ERP System
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
Upgrade and Innovation Strategies for SAP ERP Customers
CHAPTER 2 - PM Management and IT Context
Understanding Forklifts - TECH EHS Solution
Odoo Companies in India – Driving Business Transformation.pdf
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
wealthsignaloriginal-com-DS-text-... (1).pdf
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Digital Strategies for Manufacturing Companies
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Design an Analysis of Algorithms I-SECS-1021-03
Reimagine Home Health with the Power of Agentic AI​
history of c programming in notes for students .pptx
How to Migrate SBCGlobal Email to Yahoo Easily
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
System and Network Administraation Chapter 3
How Creative Agencies Leverage Project Management Software.pdf
Internet Downloader Manager (IDM) Crack 6.42 Build 41

Liferay DevCon 2014: Lliferay Platform - A new and exciting vision