{"id":86057,"date":"2019-01-11T16:38:56","date_gmt":"2019-01-11T14:38:56","guid":{"rendered":"http:\/\/www.javacodegeeks.com\/?page_id=86057"},"modified":"2023-03-06T16:29:03","modified_gmt":"2023-03-06T14:29:03","slug":"jms-tutorials","status":"publish","type":"page","link":"https:\/\/www.javacodegeeks.com\/jms-tutorials","title":{"rendered":"JMS Tutorials"},"content":{"rendered":"<p><img decoding=\"async\" class=\"aligncenter wp-image-62\" style=\"border: none;\" src=\"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/enterprise-java-logo.jpg\" alt=\"JMS Tutorials\" width=\"300\" height=\"300\"><\/p>\n<p>In this detailed Resource page, we feature an abundance of <strong>JMS Tutorials<\/strong>!<\/p>\n<p>The Java Message Service (<a href=\"https:\/\/en.wikipedia.org\/wiki\/Java_Message_Service\">JMS<\/a>) API is a Java message-oriented middleware API for sending messages between two or more clients. It is an implementation to handle the producer\u2013consumer problem. JMS is a part of the Java Platform, Enterprise Edition (Java EE), and was defined by a specification developed at Sun Microsystems, but which has since been guided by the Java Community Process. It is a messaging standard that allows application components based on Java EE to create, send, receive, and read messages. It allows the communication between different components of a distributed application to be loosely coupled, reliable, and asynchronous.<\/p>\n<h3><span id=\"Elements\" class=\"mw-headline\">Elements<\/span><\/h3>\n<p>The following are JMS elements:<sup id=\"cite_ref-oraclejms_3-1\" class=\"reference\"><\/sup><\/p>\n<ul>\n<li><strong>JMS provider<\/strong><br \/>\nAn implementation of the JMS interface for message-oriented middleware (MOM). Providers are implemented as either a Java JMS implementation or an adapter to a non-Java MOM.<\/li>\n<li><strong>JMS client<\/strong><br \/>\nAn application or process that produces and\/or receives messages.<\/li>\n<li><strong>JMS producer\/publisher<\/strong><br \/>\nA JMS client that creates and sends messages.<\/li>\n<li><strong>JMS consumer\/subscriber<\/strong><br \/>\nA JMS client that receives messages.<\/li>\n<li><strong>JMS message<\/strong><br \/>\nAn object that contains the data being transferred between JMS clients.<\/li>\n<li>J<strong>MS queue<\/strong><br \/>\nA staging area that contains messages that have been sent and are waiting to be read (by only one consumer). Contrary to what the name <i>queue<\/i> suggests, messages don&#8217;t have to be received in the order in which they were sent. A JMS queue only guarantees that each message is processed only once.<\/li>\n<li><strong>JMS topic<\/strong><br \/>\nA distribution mechanism for publishing messages that are delivered to multiple subscribers.<\/li>\n<\/ul>\n<h3><span id=\"Models\" class=\"mw-headline\">Models<\/span><\/h3>\n<p>The JMS API supports two distinct models:<\/p>\n<ul>\n<li>Point-to-point<\/li>\n<li>Publish-and-subscribe<\/li>\n<\/ul>\n<h3>Provider implementations<\/h3>\n<p>To use JMS, one must have a JMS provider that can manage the sessions, queues and topics. Starting from Java EE version 1.4, a JMS provider has to be contained in <i>all<\/i> Java EE application servers. This can be implemented using the message inflow management of the Java EE Connector Architecture, which was first made available in that version.<\/p>\n<p>The following is a list of common JMS providers:<\/p>\n<ul>\n<li>Amazon SQS&#8217;s Java Messaging Library<\/li>\n<li>Apache ActiveMQ<\/li>\n<li>Apache Qpid, using AMQP<sup id=\"cite_ref-17\" class=\"reference\"><\/sup><\/li>\n<li>IBM MQ (formerly MQSeries, then WebSphere MQ)<\/li>\n<li>IBM WebSphere Application Server&#8217;s Service Integration Bus (SIBus)<sup id=\"cite_ref-18\" class=\"reference\"><\/sup><\/li>\n<li>JBoss Messaging and HornetQ from JBoss<\/li>\n<li>JORAM from the OW2 Consortium<\/li>\n<li>Open Message Queue from Oracle<\/li>\n<li>OpenJMS from the OpenJMS Group<\/li>\n<li>Oracle WebLogic Server and Oracle AQ<\/li>\n<li>RabbitMQ from Pivotal Software<\/li>\n<\/ul>\n<div class=\"tip\"><strong>Note<\/strong><br \/>\nIf you wish to build up your JMS knowledge first, check out our <a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/activemq-tutorial-beginners\/\">Apache ActiveMQ Tutorial for beginners<\/a>.<\/div>\n<div>\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;[ulp id='lGy8ZbGvNK3jkh44']&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\">[ulp id=&#8217;lGy8ZbGvNK3jkh44&#8242;]<\/span><\/p>\n<\/div>\n<h2>JMS Tutorials \u2013 Getting Started<\/h2>\n<h3>Simple examples based on various JMS providers<\/h3>\n<p><strong>Apache ActiveMQ<\/strong><\/p>\n<ul>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/apache-activemq-hello-world-example\/\">Apache ActiveMQ &#8220;Hello World&#8221; Example<\/a><br \/>\nIn this example, we shall show you how to make use of ActiveMQ as a message broker for exchanging messages between applications connected via a network.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/apache-activemq-best-practices-tutorial\/\">Apache ActiveMQ Best Practices Tutorial<\/a><br \/>\nIn this tutorial, you will learn how to develop a few Java applications which integrate ActiveMQ to send and receive messages to and from destinations. If you already know how to install and configure ActiveMQ, you can skip the first four chapters.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/apache-activemq-ssl-example\/\">Apache ActiveMQ SSL Example<\/a><br \/>\nIn this example, I will demonstrate how to configure an AMQ broker to support SSL and how to create a simple Java application which connects to it securely.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/apache-activemq-file-transfer-example\/\">Apache ActiveMQ File Transfer Example<\/a><br \/>\nIn this example, I will build two simple AMQ applications which will transfer files from one location to another<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/apache-activemq-distributed-queue-tutorial\/\">Apache ActiveMQ Distributed Queue Tutorial<\/a><br \/>\nIn this article, I will demonstrate how to utilize a distributed queue within a group of AMQ brokers.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/apache-activemq-monitoring-tutorial\/\">Apache ActiveMQ Monitoring Tutorial<\/a><br \/>\nIn this example, I will explain how to monitor an AMQ server.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/apache-activemq-failover-example\/\">Apache ActiveMQ Failover Example<\/a><br \/>\nIn this example, I will demonstrate how to configure a group of AMQ brokers to make the system fault-tolerant.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/apache-activemq-load-balancing-example\/\">Apache ActiveMQ Load Balancing Example<\/a><br \/>\nIn this example, we will demonstrate how to build a load-balanced AMQ client application.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/apache-activemq-brokerservice-example\/\">Apache ActiveMQ BrokerService Example<\/a><br \/>\nIn this example, we will see how we embed a broker inside a connection and the usage of ActiveMQ BrokerService API.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/apache-activemq-advisory-example\/\">Apache ActiveMQ Advisory Example<\/a><br \/>\nIn this tutorial we will see how a consumer gets notified whenever a message is consumed.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/jms-textmessage-example\/\">JMS TextMessage Example<\/a><br \/>\nIn this article, we will look into examples of simple as well as XML based TextMessage.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/jms-queuebrowser-example\/\">JMS QueueBrowser Example<\/a><br \/>\nIn this article, we will see an examples of QueueBrowser object.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/jms-client-example\/\">JMS Client Example<\/a><br \/>\nIn this article, we will see several examples of JMS Clients.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/jms-topic-example\/\">JMS Topic Example<\/a><br \/>\nIn this article, we will see some examples of JMS Topic.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/jms-queue-example\/\">JMS Queue Example<\/a><br \/>\nIn this article, we will see some examples of JMS Queue.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/jms-messagelistener-example\/\">JMS MessageListener Example<\/a><br \/>\nIn this article, we will see what is a MessageListener and how we can use it to receive messages.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/jms-message-types-example\/\">JMS Message Types Example<\/a><br \/>\nIn this example we are using activeMq so our pom.xml will have dependencies related to spring as well as activeMq.<\/li>\n<\/ul>\n<p><strong>JBOSS<\/strong><\/p>\n<ul>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/java-jms-helloworld-on-jboss-example\/\">Java JMS &#8220;HelloWorld&#8221; on JBoss Example<\/a><br \/>\nIn this article, I am going to show a simple \u201cHello World\u201d example using JBoss Messaging.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/jms\/simple-jms-example-on-jboss-5-1\/\">Simple JMS example on JBoss 5.1<\/a><br \/>\nIn this example we shall show you how to create a simple hello World example in JMS, using JBoss 5.1. JMS is a very popular API standard for messaging, and most messaging systems provide a JMS API.<\/li>\n<\/ul>\n<h2>JMS Tutorials \u2013 Integrations<\/h2>\n<h3>Learn how to use JMS with Spring Framework<strong><br \/>\n<\/strong><\/h3>\n<ul>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/spring\/batch\/spring-batch-jmsitemreader-example\/\">Spring Batch JmsItemReader Example<\/a><br \/>\nThis article is a tutorial about Spring Batch with JMSItemReader. We will use Spring Boot to speed our development process.<\/li>\n<\/ul>\n<p>[undereg]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this detailed Resource page, we feature an abundance of JMS Tutorials! The Java Message Service (JMS) API is a Java message-oriented middleware API for sending messages between two or more clients. It is an implementation to handle the producer\u2013consumer problem. JMS is a part of the Java Platform, Enterprise Edition (Java EE), and was &hellip;<\/p>\n","protected":false},"author":34987,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-86057","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>JMS Tutorials - Java Code Geeks<\/title>\n<meta name=\"description\" content=\"In this detailed Resource page, we feature an abundance of JMS Tutorials! The Java Message Service (JMS) API is a Java message-oriented middleware API for\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.javacodegeeks.com\/jms-tutorials\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"JMS Tutorials - Java Code Geeks\" \/>\n<meta property=\"og:description\" content=\"In this detailed Resource page, we feature an abundance of JMS Tutorials! The Java Message Service (JMS) API is a Java message-oriented middleware API for\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.javacodegeeks.com\/jms-tutorials\" \/>\n<meta property=\"og:site_name\" content=\"Java Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/javacodegeeks\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-06T14:29:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/enterprise-java-logo.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/jms-tutorials\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/jms-tutorials\",\"name\":\"JMS Tutorials - Java Code Geeks\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/jms-tutorials#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/jms-tutorials#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/enterprise-java-logo.jpg\",\"datePublished\":\"2019-01-11T14:38:56+00:00\",\"dateModified\":\"2023-03-06T14:29:03+00:00\",\"description\":\"In this detailed Resource page, we feature an abundance of JMS Tutorials! The Java Message Service (JMS) API is a Java message-oriented middleware API for\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/jms-tutorials#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/jms-tutorials\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/jms-tutorials#primaryimage\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/enterprise-java-logo.jpg\",\"contentUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/enterprise-java-logo.jpg\",\"width\":150,\"height\":150,\"caption\":\"java-interview-questions-answers\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/jms-tutorials#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JMS Tutorials\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#website\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\",\"name\":\"Java Code Geeks\",\"description\":\"Java Developers Resource Center\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\"},\"alternateName\":\"JCG\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.javacodegeeks.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/exelixis-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/javacodegeeks\",\"https:\\\/\\\/x.com\\\/javacodegeeks\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"JMS Tutorials - Java Code Geeks","description":"In this detailed Resource page, we feature an abundance of JMS Tutorials! The Java Message Service (JMS) API is a Java message-oriented middleware API for","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.javacodegeeks.com\/jms-tutorials","og_locale":"en_US","og_type":"article","og_title":"JMS Tutorials - Java Code Geeks","og_description":"In this detailed Resource page, we feature an abundance of JMS Tutorials! The Java Message Service (JMS) API is a Java message-oriented middleware API for","og_url":"https:\/\/www.javacodegeeks.com\/jms-tutorials","og_site_name":"Java Code Geeks","article_publisher":"https:\/\/www.facebook.com\/javacodegeeks","article_modified_time":"2023-03-06T14:29:03+00:00","og_image":[{"url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/enterprise-java-logo.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_site":"@javacodegeeks","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.javacodegeeks.com\/jms-tutorials","url":"https:\/\/www.javacodegeeks.com\/jms-tutorials","name":"JMS Tutorials - Java Code Geeks","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/jms-tutorials#primaryimage"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/jms-tutorials#primaryimage"},"thumbnailUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/enterprise-java-logo.jpg","datePublished":"2019-01-11T14:38:56+00:00","dateModified":"2023-03-06T14:29:03+00:00","description":"In this detailed Resource page, we feature an abundance of JMS Tutorials! The Java Message Service (JMS) API is a Java message-oriented middleware API for","breadcrumb":{"@id":"https:\/\/www.javacodegeeks.com\/jms-tutorials#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.javacodegeeks.com\/jms-tutorials"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.javacodegeeks.com\/jms-tutorials#primaryimage","url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/enterprise-java-logo.jpg","contentUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/enterprise-java-logo.jpg","width":150,"height":150,"caption":"java-interview-questions-answers"},{"@type":"BreadcrumbList","@id":"https:\/\/www.javacodegeeks.com\/jms-tutorials#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.javacodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"JMS Tutorials"}]},{"@type":"WebSite","@id":"https:\/\/www.javacodegeeks.com\/#website","url":"https:\/\/www.javacodegeeks.com\/","name":"Java Code Geeks","description":"Java Developers Resource Center","publisher":{"@id":"https:\/\/www.javacodegeeks.com\/#organization"},"alternateName":"JCG","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.javacodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.javacodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.javacodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/javacodegeeks","https:\/\/x.com\/javacodegeeks"]}]}},"_links":{"self":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/pages\/86057","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/users\/34987"}],"replies":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/comments?post=86057"}],"version-history":[{"count":0,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/pages\/86057\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media?parent=86057"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}