Technology

Docker for Dummies

What are Docker Containers? Docker containers provide a consistent environment throughout the whole Software Development Life Cycle SDLC. Docker is a tool designed to create, deploy and run applications by using containers. It allows a developer package an application with all the libraries and dependencies it needs. It ensures your application work seamlessly in any… Continue reading Docker for Dummies

Technology

A definitive guide for Web Services development – II

REST API PART -II Table of contents What is REST?Creating a Students APICreating a resourceSetting up databaseJDBC connectivityAdding to the resource class Creating a RepositoryTesting the API In this tutorial, we will deep dive into the basics of creating a Java Rest API using JAX-RS and MySQL. Hoping that you have read my previous post… Continue reading A definitive guide for Web Services development – II

Technology

A definitive guide for Web Services development – I

PART - I The Environment Setup The scope of this tutorial is to set up a basic environment for your application to run. For building a REST API from scratch, please go to Part -2 of this post. Table of Contents Install homebrewInstalling JavaDownload Eclipse IDESetting up Apache Tomcat serverCreating a dynamic web projectConfiguring JAVAX… Continue reading A definitive guide for Web Services development – I