{"id":76120,"date":"2018-04-20T13:00:44","date_gmt":"2018-04-20T10:00:44","guid":{"rendered":"https:\/\/www.javacodegeeks.com\/?p=76120"},"modified":"2018-04-20T10:25:22","modified_gmt":"2018-04-20T07:25:22","slug":"get-to-know-json-binding-overview-series","status":"publish","type":"post","link":"https:\/\/www.javacodegeeks.com\/2018\/04\/get-to-know-json-binding-overview-series.html","title":{"rendered":"Get to Know JSON Binding: Overview Series"},"content":{"rendered":"<p>The Java API for JSON Binding (JSON-B) 1.0 strengthens the Java EE platform\u2019s overall support for the JSON data interchange format. Already, the <a href=\"https:\/\/www.javacodegeeks.com\/2018\/04\/get-to-know-json-pointer-json-p-1-1-overview-series.html\">Java API for JSON Processing (JSON-P) 1.1<\/a> has proved popular and together they form the perfect partners that fill a long-standing shortcoming in Java EE\u2019s JSON capacity.<\/p>\n<blockquote>\n<p><strong>Next article<\/strong> in this series covers the customization of JSON Binding operations.<\/p>\n<\/blockquote>\n<p>The JSON-B specification <strong>codifies industry practices<\/strong> and methodologies that have become commonplace. It makes heavy use of annotations to mark classes and fields with <strong>mapping semantics<\/strong> and provides the extensibility that is so often needed when dealing with complex data structures.<\/p>\n<p>Out of the box, it provides default mappings for <strong>serialization<\/strong> and <strong>deserialization<\/strong> that meet reasonable expectations. The default customizations are overridable with two customization methodologies:<\/p>\n<ol>\n<li><b>compile <\/b>time annotations and<\/li>\n<li>a <b>runtime <\/b>configuration builder.<\/li>\n<\/ol>\n<p>For advanced customizations, the API provides <strong>adapters and serializers\/deserializers<\/strong> for times when the runtime builder and mapping annotations are not sufficient.<\/p>\n<h2>Headline Features<\/h2>\n<p>The primary feature of this API is the provision of <b>binding support <\/b>between Java classes and JSON documents in an intuitive and easy to use manner, such that a developer, with no prior knowledge of JSON, should be able to develop effectively with the API. For those with prior experience of other JSON de\/serialization libraries such as GSON and Jackson, it will feel very familiar.<div style=\"display:inline-block; margin: 15px 0;\"> <div id=\"adngin-JavaCodeGeeks_incontent_video-0\" style=\"display:inline-block;\"><\/div> <\/div><\/p>\n<p>The JSON-B API provides two entry point interfaces: <em><b>Jsonb<\/b><\/em><em>\u00a0<\/em>and <em><b>JsonbBuilder<\/b><\/em>. The <em>Jsonb\u00a0<\/em>interface provides the serialization and deserialization functionality via the methods <em>toJson()<\/em> and <em>fromJson()<\/em>, and the <em>JsonbBuilder<\/em> interface provides the client an access point to a <em>Jsonb\u00a0<\/em>instance. It builds the instance based on a set of optional configurations.<\/p>\n<h2>Simple Example<\/h2>\n<p>Let\u2019s jump in with a simple example that does a round-trip conversion of an instance of the <em>Book.class<\/em>.<\/p>\n<p>To start a serialization or deserialization you need an instance of <em>Jsonb<\/em>. You create this by calling the static factory method <em>create()<\/em> on the <em>JsonBuilder<\/em> interface. With this instance you can perform all the serialization and deserialization operations you require by selecting the appropriate overloaded <em>toJson()<\/em> or <em>fromJson()<\/em> method.<\/p>\n<p>In this code snippet, I call the simplest <em>toJson()<\/em> method and passed it a <em>book<\/em> object.<\/p>\n<pre class=\"brush:java\">Book book = new Book(\"SHDUJ-4532\", \"Fun with Java\", \"Alex Theedom\");\r\nString bookJson = JsonbBuilder.create().toJson(book);<\/pre>\n<p>The return value of this method is a <em>String<\/em> that is the JSON data representation of the object passed to the <em>toJson()<\/em> method.<\/p>\n<p>Now let\u2019s turn our attention to the deserialization operation. It is just as simple as serialization and also requires an instance of <em>Jsonb<\/em>. In the code snippet, I call the simplest <em>fromJson()<\/em> method and pass it the JSON String generated by the previous example, this is the JSON data I want to deserialize, and it\u2019s target type as a class type.<\/p>\n<pre class=\"brush:java\">String json = \"{\\\"author\\\":\\\"Alex Theedom\\\",\" +\r\n               \"\\\"id\\\":\\\"SHDUJ-4532\\\",\" +\r\n               \"\\\"title\\\":\\\"Fun with Java\\\"}\";\r\nBook book = JsonbBuilder.create().fromJson(json, Book.class);<\/pre>\n<p>In these examples, I have used the simplest <em>toJson()<\/em> and <em>fromJson()<\/em> method\u2019s from the range of overloaded method available on the <em>Jsonb<\/em> interface. Now let\u2019s dive a little deeper and look at how to customize the serialization and deserialization process.<\/p>\n<p>Now that wraps up this introduction of the JSON Binding API, there is plenty more to know about the JSON-B.<\/p>\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td>Published on Java Code Geeks with permission by Alex Theedom, partner at our <a href=\"\/\/www.javacodegeeks.com\/join-us\/jcg\/\" target=\"_blank\" rel=\"noopener\">JCG program<\/a>. See the original article here: <a href=\"https:\/\/readlearncode.com\/java-ee\/get-to-know-json-binding-overview-series\/\" target=\"_blank\" rel=\"noopener\">Get to Know JSON Binding: Overview Series<\/a><\/p>\n<p>Opinions expressed by Java Code Geeks contributors are their own.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>The Java API for JSON Binding (JSON-B) 1.0 strengthens the Java EE platform\u2019s overall support for the JSON data interchange format. Already, the Java API for JSON Processing (JSON-P) 1.1 has proved popular and together they form the perfect partners that fill a long-standing shortcoming in Java EE\u2019s JSON capacity. Next article in this series &hellip;<\/p>\n","protected":false},"author":500,"featured_media":175,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[69],"class_list":["post-76120","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-enterprise-java","tag-json"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Get to Know JSON Binding: Overview Series - Java Code Geeks<\/title>\n<meta name=\"description\" content=\"The Java API for JSON Binding (JSON-B) 1.0 strengthens the Java EE platform\u2019s overall support for the JSON data interchange format. Already, the Java API\" \/>\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\/2018\/04\/get-to-know-json-binding-overview-series.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Get to Know JSON Binding: Overview Series - Java Code Geeks\" \/>\n<meta property=\"og:description\" content=\"The Java API for JSON Binding (JSON-B) 1.0 strengthens the Java EE platform\u2019s overall support for the JSON data interchange format. Already, the Java API\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.javacodegeeks.com\/2018\/04\/get-to-know-json-binding-overview-series.html\" \/>\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:author\" content=\"http:\/\/www.facebook.com\/alex.theedom.j2ee\" \/>\n<meta property=\"article:published_time\" content=\"2018-04-20T10:00:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/json-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Alex Theedom\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@alextheedom\" \/>\n<meta name=\"twitter:site\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Alex Theedom\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/get-to-know-json-binding-overview-series.html#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/get-to-know-json-binding-overview-series.html\"},\"author\":{\"name\":\"Alex Theedom\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/person\\\/39c928afe0429ad2d2742a8b79ec8bce\"},\"headline\":\"Get to Know JSON Binding: Overview Series\",\"datePublished\":\"2018-04-20T10:00:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/get-to-know-json-binding-overview-series.html\"},\"wordCount\":556,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/get-to-know-json-binding-overview-series.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/json-logo.jpg\",\"keywords\":[\"JSON\"],\"articleSection\":[\"Enterprise Java\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/get-to-know-json-binding-overview-series.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/get-to-know-json-binding-overview-series.html\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/get-to-know-json-binding-overview-series.html\",\"name\":\"Get to Know JSON Binding: Overview Series - Java Code Geeks\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/get-to-know-json-binding-overview-series.html#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/get-to-know-json-binding-overview-series.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/json-logo.jpg\",\"datePublished\":\"2018-04-20T10:00:44+00:00\",\"description\":\"The Java API for JSON Binding (JSON-B) 1.0 strengthens the Java EE platform\u2019s overall support for the JSON data interchange format. Already, the Java API\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/get-to-know-json-binding-overview-series.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/get-to-know-json-binding-overview-series.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/get-to-know-json-binding-overview-series.html#primaryimage\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/json-logo.jpg\",\"contentUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/json-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/get-to-know-json-binding-overview-series.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java\",\"item\":\"https:\\\/\\\/www.javacodegeeks.com\\\/category\\\/java\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Enterprise Java\",\"item\":\"https:\\\/\\\/www.javacodegeeks.com\\\/category\\\/java\\\/enterprise-java\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Get to Know JSON Binding: Overview Series\"}]},{\"@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\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/person\\\/39c928afe0429ad2d2742a8b79ec8bce\",\"name\":\"Alex Theedom\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6d875f8b02b9be72e4dcae0e790c2edc5416eac63cad6e1474d370f884605062?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6d875f8b02b9be72e4dcae0e790c2edc5416eac63cad6e1474d370f884605062?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6d875f8b02b9be72e4dcae0e790c2edc5416eac63cad6e1474d370f884605062?s=96&d=mm&r=g\",\"caption\":\"Alex Theedom\"},\"description\":\"Alex Theedom is a Senior Java Developer and has recently played a pivotal role in the architectural design and development of a microservice based, custom built lottery and instant win game platform. Alex has experience of Java web application development in a diverse range of fields including finance, e-learning, lottery and software development. He is the co-author of Professional Java EE Design Patterns and many articles.\",\"sameAs\":[\"https:\\\/\\\/readlearncode.com\\\/\",\"http:\\\/\\\/www.facebook.com\\\/alex.theedom.j2ee\",\"http:\\\/\\\/www.linkedin.com\\\/pub\\\/alex-theedom\\\/42\\\/90b\\\/910\",\"https:\\\/\\\/x.com\\\/alextheedom\"],\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/author\\\/alex-theedom\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Get to Know JSON Binding: Overview Series - Java Code Geeks","description":"The Java API for JSON Binding (JSON-B) 1.0 strengthens the Java EE platform\u2019s overall support for the JSON data interchange format. Already, the Java API","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\/2018\/04\/get-to-know-json-binding-overview-series.html","og_locale":"en_US","og_type":"article","og_title":"Get to Know JSON Binding: Overview Series - Java Code Geeks","og_description":"The Java API for JSON Binding (JSON-B) 1.0 strengthens the Java EE platform\u2019s overall support for the JSON data interchange format. Already, the Java API","og_url":"https:\/\/www.javacodegeeks.com\/2018\/04\/get-to-know-json-binding-overview-series.html","og_site_name":"Java Code Geeks","article_publisher":"https:\/\/www.facebook.com\/javacodegeeks","article_author":"http:\/\/www.facebook.com\/alex.theedom.j2ee","article_published_time":"2018-04-20T10:00:44+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/json-logo.jpg","type":"image\/jpeg"}],"author":"Alex Theedom","twitter_card":"summary_large_image","twitter_creator":"@alextheedom","twitter_site":"@javacodegeeks","twitter_misc":{"Written by":"Alex Theedom","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/get-to-know-json-binding-overview-series.html#article","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/get-to-know-json-binding-overview-series.html"},"author":{"name":"Alex Theedom","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/person\/39c928afe0429ad2d2742a8b79ec8bce"},"headline":"Get to Know JSON Binding: Overview Series","datePublished":"2018-04-20T10:00:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/get-to-know-json-binding-overview-series.html"},"wordCount":556,"commentCount":0,"publisher":{"@id":"https:\/\/www.javacodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/get-to-know-json-binding-overview-series.html#primaryimage"},"thumbnailUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/json-logo.jpg","keywords":["JSON"],"articleSection":["Enterprise Java"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.javacodegeeks.com\/2018\/04\/get-to-know-json-binding-overview-series.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/get-to-know-json-binding-overview-series.html","url":"https:\/\/www.javacodegeeks.com\/2018\/04\/get-to-know-json-binding-overview-series.html","name":"Get to Know JSON Binding: Overview Series - Java Code Geeks","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/get-to-know-json-binding-overview-series.html#primaryimage"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/get-to-know-json-binding-overview-series.html#primaryimage"},"thumbnailUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/json-logo.jpg","datePublished":"2018-04-20T10:00:44+00:00","description":"The Java API for JSON Binding (JSON-B) 1.0 strengthens the Java EE platform\u2019s overall support for the JSON data interchange format. Already, the Java API","breadcrumb":{"@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/get-to-know-json-binding-overview-series.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.javacodegeeks.com\/2018\/04\/get-to-know-json-binding-overview-series.html"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/get-to-know-json-binding-overview-series.html#primaryimage","url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/json-logo.jpg","contentUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/json-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/get-to-know-json-binding-overview-series.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.javacodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Java","item":"https:\/\/www.javacodegeeks.com\/category\/java"},{"@type":"ListItem","position":3,"name":"Enterprise Java","item":"https:\/\/www.javacodegeeks.com\/category\/java\/enterprise-java"},{"@type":"ListItem","position":4,"name":"Get to Know JSON Binding: Overview Series"}]},{"@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"]},{"@type":"Person","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/person\/39c928afe0429ad2d2742a8b79ec8bce","name":"Alex Theedom","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/6d875f8b02b9be72e4dcae0e790c2edc5416eac63cad6e1474d370f884605062?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/6d875f8b02b9be72e4dcae0e790c2edc5416eac63cad6e1474d370f884605062?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6d875f8b02b9be72e4dcae0e790c2edc5416eac63cad6e1474d370f884605062?s=96&d=mm&r=g","caption":"Alex Theedom"},"description":"Alex Theedom is a Senior Java Developer and has recently played a pivotal role in the architectural design and development of a microservice based, custom built lottery and instant win game platform. Alex has experience of Java web application development in a diverse range of fields including finance, e-learning, lottery and software development. He is the co-author of Professional Java EE Design Patterns and many articles.","sameAs":["https:\/\/readlearncode.com\/","http:\/\/www.facebook.com\/alex.theedom.j2ee","http:\/\/www.linkedin.com\/pub\/alex-theedom\/42\/90b\/910","https:\/\/x.com\/alextheedom"],"url":"https:\/\/www.javacodegeeks.com\/author\/alex-theedom"}]}},"_links":{"self":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/76120","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/users\/500"}],"replies":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/comments?post=76120"}],"version-history":[{"count":0,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/76120\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media\/175"}],"wp:attachment":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media?parent=76120"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/categories?post=76120"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/tags?post=76120"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}