What is a data stream or event stream? A data stream is an abstraction representing an unbounded dataset. Unbounded that data is infinite and it grows over time as the new record keep getting added to the dataset. The data contained in the events or the number of events per second. The data differs fromContinue reading “What Is Stream Processing ?”
Tag Archives: rest api in java
REST API – 4 Best Practices
1. Statelessness In a very simple word, each request should be sufficient in itself to be understood by the server. In other words, the action to a request should not depend on information provided by any prior request. Each request should be an atomic operation. But why statelessness is a constraint? Because It enables usContinue reading “REST API – 4 Best Practices”
Dropwizard : Write Data Into Database Using Hibernate
Please follow the first two part of the tutorial before starting this: Introduction To Dropwizard Read Data From Database Using Dropwizard Modify InfoDao To Persist Data Add a method to persist data This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file inContinue reading “Dropwizard : Write Data Into Database Using Hibernate”
Dropwizard – Tutorial to write APIs to read/write from database using hibernate
Please go through the first part of this tutorial to set up your dropwizard project. For this project, we will assume you have a working dropwizard project. Add dependency to your pom.xml Please add dependency of hibernate and mySQL-connector to your pom.xml This file contains bidirectional Unicode text that may be interpreted or compiled differentlyContinue reading “Dropwizard – Tutorial to write APIs to read/write from database using hibernate”
REST APIs using Dropwizard – Introductory Tutorial
Dropwizard is a popular java framework for restful service. It provides out of the box support for configuration, application metrics, logging and operational tools so the developers focus more on writing business logic and not on set ups. Agenda This tutorial should help you set up your dropwizard project and few APIs. Let’s start! CreateContinue reading “REST APIs using Dropwizard – Introductory Tutorial”