Latest News

Wednesday 1 October 2014

Liferay and AngularJS Made Simple: Connecting AngularJS to a Backend with REST and JSON


 

Introduction

Liferay is the leading Open Source Enterprise Portal. One may asked what an enterprise portal is and this question is very valid as it has been asked on every single Liferay project that I have worked. This blog post is not about defining what an enterprise portal is but it wouldn't be a crime if we provided a brief definition:
An enterprise portal is a web application which provides services required by an enterprise such as: user management, authentication and authorisation services, ability to connect to third party applications and provide a single point of access to multiple applications, hence the "portal".
The above is my own definition and it could be extended to encompass web content management, content management system (CMS) and single sign on (SSO). This post is about Liferay and the use of its web content management system (WCMS) to create single page applications using AngularJS. The motivation to create portlets using AngularJS instead of Java is as:
  • Portlet development using Java is very expensive
  • Not many Java developers with portlet experience
  • Java portlets development requires heavy duty tools such as build tools, IDE and JVM
  • Portlet developers need to be familiar with the Portlet API, lifecycle and framework
We will focus on Liferay available RESTful web services API but do remember that you can create your own custom web services using Liferay service builder SDK.

 

Liferay RESTFul API and Security

Liferay ReSTFul and SOAP API implement the same security as the core library:
  • API can be secured so that only authenticated users can access them (AUTHENTICATION)
  • API can be secured so that only users with the right roles can executed certain API calls (AUTHORIZATION)
When creating your own custom API, Liferay Services Builder will create the necessary permission for the web services API.
For a list of API available in Liferay, point your browser to the following
http://<your-server-address>:<your-server-port>/api/jsonws
Liferay will provide a means of testing the services calls when the above URL is loaded. Most services execution will require authentication or a secured token to be passed on with the calls. This level of a security is required in an enterprise environment. It is possible to stop Liferay from checking for the secured token in portal-ext.properties as
Auth.token.check.enabled=false
Software developments should promote code reuse, therefore by separating the business logic from the portlet code, developers can share the business logic with third party applications.

 

Why Use AngularJS to Create Web Applications (Not Portlets)?

This is not a tutorial on AngularJS. Developers should use the same approach for developing any AngularJS application to developing Liferay web applications.
AngularJS is a popular JavaScript framework promoting Object Oriented Development (OOD) and Model View Controller (MVC) to the JavaScript community. Java developers are already custom with the methodology through the use of Spring MVC and JSF for front end developments. Developers familiar with Google Web toolkit (GWT) should find themselves in familiar territory. Now to answer the question of why use AngularJS to create web applications on Liferay?
AngularJS is JavaScript and therefore can be executed in the browser without recompilation and redeployment. Liferay Web Content Management System (WCMS) provides an HTML editor and content versioning. Liferay JSONWS API runs on the same server and can be accessed through the JavaScript written in the WCMS. AngularJS modules can be written in a third party editor such Notepad++ and uploaded to Liferay Content Management System (CMS). The Liferay CMS provides a link to the latest version of the file which can be referenced in the HTML/ JavaScript code. By creating the web services in Java through Liferay Services Builder, the java developer can focus on the business logic – including testing. The front end developer can utilise his skills in HTML and JavaScript to develop the user interfaces and any necessary interactions with the backend through the ReSTFul services. There is a clear separation of work and accountability. The learning curve for the Java developers to create the services will be minimal. To preview the live code, the frontend developer only has to save the content (WCMS) and refresh the page to see the latest changes.
Here is a quick example:


 <div ng-app="" ng-controller="companiesController">  
   <ul>  
    <li ng-repeat="x in data">{{'title: ' +x.title + ', group Id: ' + x.groupId }}</li>  
   </ul>  
 </div>  
 <script>  
   function companiesController($scope,$http) {  
    $http.post("http://localhost:8080/api/jsonws/assetentry/get-company-entries/company-id/10157/start/0/end/5?p_auth=cbSXanJ2")  
    .success(function(response) {$scope.data = response;});  
   }  
   companiesController.$inject = ['$scope', '$http'];  
 </script><script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script>  




You can copy the above in a new web content article and see the result displayed on the page. Make sure to change red bold values to your system specific:
  • Company id: for ease of testing, you can retrieve that value from the control panel
  • P_auth: this value can be looked up programmatically as it will change every time the user logs into the portal
Traditionally, the simple code above would require a JavaServer page or JSF application which is slow for rapid prototyping. In software testing, portlets controller are one of the most complex components to test. By creating a clear separation between components, testers and automated tools can test each components individually. The sample code pulls information from Liferay REST web services and displays a list of registered companies on the page.

 

Conclusion

Liferay has a rich set of features which allows developers to create enterprise components and applications. When working with ReSTFul services, Liferay Web Content Management editor can act as an Integrated Development Environment in the browser. AngularJS is approaching maturity and it is very popular with web developers. Liferay 7 (next release as of writing ) will be introducing single page portlets but this is already possible with AngularJS and ReSTFul web services API. Needless to say that you can use any web browser to create content in Liferay CMS and debug your code in real time using tools such as Firebug.
  • Blogger Comments
  • Facebook Comments

25 comments :

  1. Hello
    how do you get the current p_auth from javascript?

    ReplyDelete
  2. nemco.com.au
    Hire AngularJS developer | AngularJS Development Company – Nemco
    Nemco is a top level AngularJS Development Company based in sydney, Australia. provide supreme AngularJS development service. Hire angularjs developers from Nemco
    angularjs development| angularjs development company

    ReplyDelete
  3. I wanted to thank you for this excellent read!! I definitely loved every little bit of it. I have bookmarked your web site to check out the latest stuff you post.
    hire AngularJS developer

    ReplyDelete
  4. I admire you for making this valuable and important information available here. This might turn out to be gainful for many seekers who are finding AngularJS Web Application Development Company.

    ReplyDelete
  5. This comment has been removed by the author.

    ReplyDelete
  6. This comment has been removed by the author.

    ReplyDelete
  7. Hello, This post is about Liferay and the use of its web content management system (WCMS) to create single page applications using AngularJS. Content of this blog is very helpful for me, Thank you so much for sharing this blog.
    Hire Angularjs Developer

    ReplyDelete
  8. This comment has been removed by the author.

    ReplyDelete
  9. Thanks for sharing this information! I totally agree with you. Your information is very interesting and important. I really like this information.

    Wordpress Development Company
    Mobile App Ideas
    Web App Ideas

    ReplyDelete
  10. Thanks for Sharing this info, it will helps a lot.

    Web Development Company In India

    ReplyDelete
  11. Wohh just what I was looking for, regards for posting.
    ข้อดีUFASLOT

    ReplyDelete
  12. With all this hype around blockchain, it's worth taking a look at where development really stands and how we can bridge the gap between today's blockchain development landscape and tomorrow's bright future. Also, the average blockchain developer salary stands at 30,00,000 LPA, which is huge.

    ReplyDelete
  13. (x-Force keygen) для всех продуктов autocad 2021 Avid Sibelius 8 Camtasia Studio 8 Crack is trustful software which records your computer XForce Keygen Download

    ReplyDelete
  14. Avid Sibelius Ultimate 2022 Crack is a fantastic playback of your scores with its powerful music tools. It can add and modify notes easily.Avid Sibelius Ultimate 2023.10 Crack

    ReplyDelete
  15. Super article. Liferay a d'excellentes fonctionnalités et vous pouvez développer des applications étonnantes à l'aide de Liferay. Nous sommes Liferay Spécialistes Maroc. Contactez-nous pour obtenir des détails sur les services.

    ReplyDelete
  16. This comment has been removed by the author.

    ReplyDelete
  17. hey nice source for us, thanks for sharing the amazing information of Connecting AngularJS to a Backend with REST and JSON and this information really helpful for me and these pics that you are posting in the blog is very nice and provide the good ideas ofLiferay RESTFul API and Security.
    Restaurant data scraping

    ReplyDelete
  18. Your writing is like a captivating melody; it resonates long after the last word is read. Your ability to craft such immersive narratives is a gift. Thank you for sharing your storytelling magic with us!

    Same Day Delivery Services in Las Vegas

    ReplyDelete
  19. Connecting AngularJS to a backend with REST and JSON in Liferay simplifies the development process, enabling seamless communication between the frontend AngularJS framework and the backend server, facilitating efficient data exchange and interaction within the application and visit CMOLDS a web development company dubai offering complete services and most authentic in the domain of web and app development and design services.

    ReplyDelete

Item Reviewed: Liferay and AngularJS Made Simple: Connecting AngularJS to a Backend with REST and JSON Description: The motivation to create portlets using AngularJS instead of Java is as: Portlet development using Java is very expensive Not many Java developers with portlet experience Java portlets development requires heavy duty tools such as build tools, IDE and JVM Portlet developers need to be familiar with the Portlet API, lifecycle and framework Rating: 5 Reviewed By: Unknown
Scroll to Top