{"id":80634,"date":"2018-08-17T15:20:47","date_gmt":"2018-08-17T12:20:47","guid":{"rendered":"http:\/\/www.javacodegeeks.com\/?page_id=80634"},"modified":"2023-03-06T16:35:13","modified_gmt":"2023-03-06T14:35:13","slug":"spring-integration-tutorials","status":"publish","type":"page","link":"https:\/\/www.javacodegeeks.com\/spring-integration-tutorials","title":{"rendered":"Spring Integration Tutorials"},"content":{"rendered":"<p><a href=\"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/spring-logo-horizontal.png\"><img decoding=\"async\" class=\"aligncenter wp-image-51568 size-full\" style=\"border: none;\" src=\"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/spring-logo-horizontal.png\" alt=\"Spring Integration Tutorials\" width=\"645\" height=\"192\" srcset=\"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/spring-logo-horizontal.png 645w, https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/spring-logo-horizontal-300x89.png 300w\" sizes=\"(max-width: 645px) 100vw, 645px\" \/><\/a><\/p>\n<p>In this detailed Resource page, we feature an abundance of <strong>Spring Integration Tutorials<\/strong>!<\/p>\n<p><a href=\"https:\/\/en.wikipedia.org\/wiki\/Spring_Integration\">Spring Integration<\/a> is an open source framework for enterprise application integration. It is a lightweight framework that builds upon the core Spring framework. It is designed to enable the development of integration solutions typical of event-driven architectures and messaging-centric architectures.<\/p>\n<p>Spring Integration extends the Spring programming model to support the well-known Enterprise Integration Patterns. Enables lightweight messaging within Spring-based applications and supports integration with external systems via declarative adapters. Those adapters provide a higher-level of abstraction over Spring\u2019s support for remoting, messaging, and scheduling.<\/p>\n<p>Using the Spring Framework encourages developers to code using interfaces and use dependency injection (DI) to provide a Plain Old Java Object (POJO) with the dependencies it needs to perform its tasks. Spring Integration takes this concept one step further, where POJOs are wired together using a messaging paradigm and individual components may not be aware of other components in the application. Such an application is built by assembling fine-grained reusable components to form a higher level of functionality. With careful design, these flows can be modularized and also reused at an even higher level.<\/p>\n<p>In addition to wiring together fine-grained components, Spring Integration provides a wide selection of channel adapters and gateways to communicate with external systems. Channel Adapters are used for one-way integration (send or receive); gateways are used for request\/reply scenarios (inbound or outbound). For a full list of adapters and gateways, refer to the reference documentation.<\/p>\n<p>The Spring Cloud Stream project builds on Spring Integration, where Spring Integration is used as an engine for message-driven microservices.<\/p>\n<div class=\"tip\"><strong>Note<\/strong><br \/>\nIf you wish to build up your Spring Integration knowledge first, check out our <a href=\"https:\/\/www.javacodegeeks.com\/2015\/09\/spring-integration-for-eai.html\">Spring Integration Tutorial for EAI<\/a>.<\/div>\n<p>[ulp id=&#8217;oiCtu6x3AwpaVNPI&#8217;]<\/p>\n<h2>Spring Integration Tutorials \u2013 Getting Started<\/h2>\n<h4>Simple examples on Spring Integration fundamentals and how to use its components so that you can develop your own applications<\/h4>\n<ul>\n<li><a href=\"https:\/\/www.javacodegeeks.com\/2015\/09\/introduction-to-enterprise-application-integration.html\">Introduction to Enterprise Application Integration<\/a><br \/>\nThis part introduces you to what enterprise integration patterns are and how different strategies can be applied to design integration solutions. The reason behind why you should acquire a basic knowledge of these patterns in this course is because the Spring Integration project was designed upon these patterns.<\/li>\n<li><a href=\"https:\/\/www.javacodegeeks.com\/2015\/09\/spring-integration-fundamentals.html\">Spring Integration Fundamentals<\/a><br \/>\nYou will learn the basic concepts that form the core of Spring Integration, how different types of communication (asynchronous and synchronous) are supported by Spring Integration, and how this decision can affect your design.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/spring\/integration\/spring-integration-adapter-example\/\">Spring Integration Adapter Example<\/a><br \/>\nAdapter is the most important component for enterprise application integration. Adapter acts as a bridge between the integration framework and the external components.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/spring\/integration\/spring-integration-aggregator-example\/\">Spring Integration Aggregator Example<\/a><br \/>\nIn this article we will be discussing about a useful Spring Integration component called Aggregator. Enterprise applications with large datasets may need to process lot of information and sending an entire dataset to one location for processing, would be inefficient. Thus we need to partition data by splitting into smaller pieces. This is achieved by a Spring Integration component called Splitter.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/spring\/integration\/spring-integration-splitter-example\/\">Spring Integration Splitter Example<\/a><br \/>\nSpring Integration provides many components for processing messages before they reach their end point. Splitter is the component that breaks down a message into multiple messages based on specific criteria. The benefit is that after splitting, the system can apply separate business logic on each part.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/spring\/integration\/spring-integration-database-polling-example\/\">Spring Integration Database Polling Example<\/a><br \/>\nSpring Integration provides JDBC channel adapters that connect a channel to a database. In the case of the inbound adapter, a database is the source on which an SQL query can be run and the complete result set is available as a message with a Java List payload.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/spring\/integration\/spring-integration-control-bus-example\/\">Spring Integration Control Bus Example<\/a><br \/>\nControl bus is a useful Spring Integration component that accepts messages on the input channel similar to Service Activator, Adapter or Transformer but the key difference is that the payload of the message that is received indicates an invocable action or operation on a bean.<\/li>\n<li><a href=\"https:\/\/www.javacodegeeks.com\/2015\/09\/spring-integration-full-example.html\">Spring Integration Full Example<\/a><br \/>\nThis tutorial will go through a complete example of an application that uses several of the components provided by Spring Integration in order to provide a service to its users. This service consists of a system prompting the user to choose among different theaters. After his selection, the system will make a request to the external system of the chosen theater and return the list of its available films.<\/li>\n<\/ul>\n<h2>Spring Integration Tutorials \u2013 Web Services<\/h2>\n<h4>Learn integration with external web services<\/h4>\n<ul>\n<li><a href=\"https:\/\/www.javacodegeeks.com\/2015\/09\/spring-integration-and-web-services.html\">Spring Integration and Web Services<\/a><br \/>\nIn this tutorial you are going to see the first example of an application enhanced with Spring Integration. In order to accomplish it, this example will focus on the integration with external web services.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/spring\/integration\/spring-integration-kafka-tutorial\/\">Spring Integration Kafka Tutorial<\/a><br \/>\nSpring for Apache Kafka is a project that applies Spring concepts like dependency injection, annotations and listener containers to help develop messaging systems using Apache Kafka. Leveraging this project, the Spring Integration Kafka module provides two components: Outbound Channel Adapter and Message Driven Channel Adapter.<\/li>\n<li><a title=\"Permalink to Spring Hibernate Integration Example \u2013 Mysql and Maven Showcase\" href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/spring\/jpaorm\/spring-hibernate-mysql-and-maven-showcase\/\" rel=\"bookmark\">Spring Hibernate Integration Example \u2013 Mysql and Maven Showcase<\/a><br \/>\nIn this tutorial we shall show you how to create a simple Spring Hibernate MySql example. The Spring Framework supports integration with Hibernate for resource management, data access object (DAO) implementations and transaction strategies.<\/li>\n<\/ul>\n<h2>Spring Integration Tutorials \u2013 Messaging<\/h2>\n<h4>Integrate your application with messaging<\/h4>\n<ul>\n<li><a href=\"https:\/\/www.javacodegeeks.com\/2015\/09\/enterprise-messaging.html\">Enterprise Messaging<\/a><br \/>\nThis tutorial is focused on explaining how we can integrate our application with Spring Integration and JMS messaging. For this purpose, I will first show you how to install Active MQ, which will be our broker during this tutorial. Next sections will show examples of sending and receiving JMS messages by using the Spring Integration JMS channel adapters.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/spring\/integration\/spring-boot-integration-activemq-example\/\">Spring Boot Integration ActiveMQ Example<\/a><br \/>\nIn this article we will be discussing the integration of Spring Boot with ActiveMQ. We will be using ActiveMQ as a message broker and create a sample application with JMS Queue and channel adapters integrated with Spring Boot to implement asynchronous messaging service.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/spring\/integration\/spring-integration-http-gateway-example\/\">Spring Integration Http Gateway Example<\/a><br \/>\nIn Spring Integration, the Messaging Gateway pattern is implemented in the gateway component, which is used to provide an entry \/ exit system between the application and an external system.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/spring\/integration\/spring-integration-ftp-gateway-example\/\">Spring Integration FTP Gateway Example<\/a><br \/>\nSpring Integration provides gateways and adapters as a means to connect to external endpoints. In many real-life integration scenarios, data is received from other systems as files sent to a FTP server. Spring Integration provides FTP inbound and outbound channel adapters as well as gateways to interact with a FTP server.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/spring\/integration\/spring-integration-custom-transformer-example\/\">Spring Integration Custom Transformer Example<\/a><br \/>\nSpring Integration provides a transformer mechanism to convert message payloads from one form to another between two channels. In this article, we will see how to implement a simple custom transformer.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/spring\/integration\/spring-integration-directchannel-example\/\">Spring Integration DirectChannel Example<\/a><br \/>\nThis article discusses the implementation of Spring Integration Direct Channel in a Spring Boot application. Spring Integration supports Enterprise Integration patterns, of which the message channel pattern decouples the producer and consumer endpoints and is agnostic to the message payload.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/enterprise-java\/spring\/integration\/spring-integration-chain-example\/\">Spring Integration Chain Example<\/a><br \/>\nSpring Integration provides a way to group set of elements into one transaction and its referred as chaining. In this post we will look at MessageHandlerChain that is an implementation of MessageHandler and it can be configured as a single message endpoint while actually delegating to a chain of handlers like Filters,Transformers etc.<\/li>\n<li><a href=\"https:\/\/www.javacodegeeks.com\/2015\/09\/monitoring-and-management.html\">Monitoring and Management<\/a><br \/>\nAfter having experimented with the main components provided by Spring Integration and seen how it integrates well with other systems like JMS queues or web services, this chapter finishes the course by showing different mechanisms of monitoring or gathering more information about what is going on within the messaging system.<\/li>\n<\/ul>\n<p>[undereg]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this detailed Resource page, we feature an abundance of Spring Integration Tutorials! Spring Integration is an open source framework for enterprise application integration. It is a lightweight framework that builds upon the core Spring framework. It is designed to enable the development of integration solutions typical of event-driven architectures and messaging-centric architectures. Spring Integration &hellip;<\/p>\n","protected":false},"author":1340,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-80634","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>Spring Integration Tutorials - Java Code Geeks<\/title>\n<meta name=\"description\" content=\"Interested to learn more about Spring? Then check out our detailed Spring Integration Tutorials! You can also download our FREE Spring Programming Cookbook!\" \/>\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\/spring-integration-tutorials\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Spring Integration Tutorials - Java Code Geeks\" \/>\n<meta property=\"og:description\" content=\"Interested to learn more about Spring? Then check out our detailed Spring Integration Tutorials! You can also download our FREE Spring Programming Cookbook!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.javacodegeeks.com\/spring-integration-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:35:13+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/spring-logo-horizontal.png\" \/>\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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/spring-integration-tutorials\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/spring-integration-tutorials\",\"name\":\"Spring Integration Tutorials - Java Code Geeks\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/spring-integration-tutorials#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/spring-integration-tutorials#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2016\\\/01\\\/spring-logo-horizontal.png\",\"datePublished\":\"2018-08-17T12:20:47+00:00\",\"dateModified\":\"2023-03-06T14:35:13+00:00\",\"description\":\"Interested to learn more about Spring? Then check out our detailed Spring Integration Tutorials! You can also download our FREE Spring Programming Cookbook!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/spring-integration-tutorials#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/spring-integration-tutorials\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/spring-integration-tutorials#primaryimage\",\"url\":\"http:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2016\\\/01\\\/spring-logo-horizontal.png\",\"contentUrl\":\"http:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2016\\\/01\\\/spring-logo-horizontal.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/spring-integration-tutorials#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Spring Integration 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":"Spring Integration Tutorials - Java Code Geeks","description":"Interested to learn more about Spring? Then check out our detailed Spring Integration Tutorials! You can also download our FREE Spring Programming Cookbook!","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\/spring-integration-tutorials","og_locale":"en_US","og_type":"article","og_title":"Spring Integration Tutorials - Java Code Geeks","og_description":"Interested to learn more about Spring? Then check out our detailed Spring Integration Tutorials! You can also download our FREE Spring Programming Cookbook!","og_url":"https:\/\/www.javacodegeeks.com\/spring-integration-tutorials","og_site_name":"Java Code Geeks","article_publisher":"https:\/\/www.facebook.com\/javacodegeeks","article_modified_time":"2023-03-06T14:35:13+00:00","og_image":[{"url":"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/spring-logo-horizontal.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_site":"@javacodegeeks","twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.javacodegeeks.com\/spring-integration-tutorials","url":"https:\/\/www.javacodegeeks.com\/spring-integration-tutorials","name":"Spring Integration Tutorials - Java Code Geeks","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/spring-integration-tutorials#primaryimage"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/spring-integration-tutorials#primaryimage"},"thumbnailUrl":"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/spring-logo-horizontal.png","datePublished":"2018-08-17T12:20:47+00:00","dateModified":"2023-03-06T14:35:13+00:00","description":"Interested to learn more about Spring? Then check out our detailed Spring Integration Tutorials! You can also download our FREE Spring Programming Cookbook!","breadcrumb":{"@id":"https:\/\/www.javacodegeeks.com\/spring-integration-tutorials#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.javacodegeeks.com\/spring-integration-tutorials"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.javacodegeeks.com\/spring-integration-tutorials#primaryimage","url":"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/spring-logo-horizontal.png","contentUrl":"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2016\/01\/spring-logo-horizontal.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.javacodegeeks.com\/spring-integration-tutorials#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.javacodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Spring Integration 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\/80634","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\/1340"}],"replies":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/comments?post=80634"}],"version-history":[{"count":0,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/pages\/80634\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media?parent=80634"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}