Ram Mokkapaty, Author at Java Code Geeks (original) (raw)

Spring Data JPA Example

In this article we will see some examples of the Spring Data JPA. The goal of Spring Data repository abstraction…
Read More »

Spring Data Elasticsearch Example

Elasticsearch is a highly scalable open-source which can be used for data store, text search and analytics engine. Every instance of ElasticSearch is called…
Read More »

Spring Data Redis Example

Redis is an in-memory key/value store. It is used as a database, cache and message broker. In this article, we…
Read More »

Spring Data MongoDB Example

In this article, we will see a simple Java application demonstrating the CRUD operation (Create, retrieve, update and delete) using…
Read More »

JMS QueueBrowser Example

A point-to-point messaging queue contains messages to be consumed by clients interested in the specific destination queue. If one wants…
Read More »

JMS TextMessage Example

JMS defines several types of messages that can be posted by an application. They all extend the Message interface. This…
Read More »

JMS MessageListener Example

A message can be sent either through point-to-point or publish-and-subscribe messaging styles. In both the ways, the producer and consumer…
Read More »

Spring Framework JMSTemplate Example

In order to send or receive messages through JMS, we need a connection to JMS provider, obtain session, create destination…
Read More »

JMS Client Example

The term “JMS client” refers to Java components or applications that use the JMS API and a JMS provider to…
Read More »

JMS Topic Example

When a publisher sends a message, there may be more than one customer interested in such messages. Publisher broadcasts the…
Read More »