Posts

Building a Polyglot GraphQL Server

This week I got an opportunity to present in   Oracle Code One 2018  on leveraging Kuberenets ecosystem for building polyglot GraphQL server.  Link to the session that I had for Oracle Code One is available here: https://oracle.rainfocus.com/widget/oracle/oow18/catalogcodeone18?search=DEV6113  . You can download the slides used for the presentation by navigating to the above page. Source code for the demo used for this session is available here for you to try out:  https://github.com/jobinesh/oracle-code-one More posts around this topics will be coming soon, please stay tuned :)

Happy New Year 2018 !

We can't go back and change the beginning, but we always can start where we are and change the ending. Believe in yourself and you will be unstoppable! Wishing you and your family a very happy new year 2018 !!!

Speaking at JavaOne 2017

I am speaking at JavaOne 2017 after a few years gap. I was in power saving mode during these days, and bored of being so lazy ;) http://bit.ly/2wcIZLm

Browserify

I always wondered how the browserify tool works. Here is good tutorial from Ben: https://benclinkinbeard.com/posts/how-browserify-works/

Happy New Year 2017 !

Image
Have a wonderful, prosperous New Year 2017 ! New Year has brought another chance for us to set things right. Carry all leanings from the past and make a new beginning !!! It has been a while since I blogged. Was busy with few personal stuff (and also got in to bit lazy mood). New Year has brought another chance for me to set things right. I will keep this space active in 2017 with posts on new technologies and latest trends. This is my new year resolution 😊  Have a great year ahead !

'RESTful Java Web Services - Second Edition' is published !

Image
My book on RESTful Java Web Services - Second Edition  is published in Sep 2015. Title: RESTful Java Web Services - Second Edition Publisher:  Packt Publishing ISBN-10:  1784399094 ISBN-13:  978-1784399092 More details here: https://www.packtpub.com/application-development/restful-java-web-services-second-edition Who This Book Is For ? If you are a web developer with a basic understanding of the REST concepts but are new to the idea of designing and developing RESTful web services, this is the book for you. As all the code samples for the book are written in Java, proficiency in Java is a must. About This Book A step-by-step guide packed with many real-life use-cases to help you build efficient and secure RESTful web APIs in Java Table of Contents Chapter 1, Introducing the REST Architectural Style , covers the REST software architectural style and core architectural elements that form a RESTful system. Chapter 2, Java APIs for JSON Processi...

Configuring JNDI Data Source connecting to Oracle DB in GlassFish Server

Image
This post shows how to configure JNDI data source connecting to Oracle database in GlassFish server.  Although this post is written to help readers of   RESTful Java Web Services - Second Edition   to run the examples shipped along with the book, the steps discussed here are generic in nature and applicable for any Maven based project that you want to run from NetBeans IDE. NetBeans  is a free IDE  for developing and running Java applications, including enterprise applications(Java EE). NetBeans comes with an integrated GlassFish Server to deploy and run your Java EE web applications. If you are building a Java EE web application from scratch using NetBeans, the IDE will automatically deploys the data source used in the application(if any) to GlassFish server, and thereby freeing you from the responsibilities of  defining the data source in the target server. What if  you want to run a Java EE example, shipped by third party,  from NetBeans...