Ram Mokkapaty

Ram holds a master's degree in Machine Design from IT B.H.U. His expertise lies in test driven development and re-factoring. He is passionate about open source technologies and actively blogs on various java and open-source technologies like spring. He works as a principal Engineer in the logistics domain.
  • spring

    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

    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

    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

    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

    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

    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

    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

    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

    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

    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 »
Back to top button