{"id":74542,"date":"2018-03-09T13:00:15","date_gmt":"2018-03-09T11:00:15","guid":{"rendered":"https:\/\/www.javacodegeeks.com\/?p=74542"},"modified":"2018-03-09T10:36:33","modified_gmt":"2018-03-09T08:36:33","slug":"maven-eclipse-and-java-9","status":"publish","type":"post","link":"https:\/\/www.javacodegeeks.com\/2018\/03\/maven-eclipse-and-java-9.html","title":{"rendered":"Maven, Eclipse and Java 9"},"content":{"rendered":"<p>Anyone that uses the M2E(maven-to-eclipse) plugin in eclipse knows the issue where you have run a build, then update maven on your project only to have it reset the JRE and throw up a wall of project errors! I noticed the issue in the post I made on running <a href=\"https:\/\/www.javabullets.com\/java-9-on-java-ee-8-using-eclipse-and-open-liberty\/\">Java EE 8 with Java 9 using Open Liberty<\/a><\/p>\n<p>The solution is to ensure the compiler is running the correct version you require, so<\/p>\n<pre class=\"brush:xml\">&lt;properties&gt;\r\n   &lt;maven.compiler.source&gt;1.8&lt;\/maven.compiler.source&gt;\r\n   &lt;maven.compiler.target&gt;1.8&lt;\/maven.compiler.target&gt;\r\n   &lt;failOnMissingWebXml&gt;false&lt;\/failOnMissingWebXml&gt;\r\n&lt;\/properties&gt;<\/pre>\n<p>Or \u2013<\/p>\n<pre class=\"brush:xml\">\u00a0&lt;build&gt;\r\n  &lt;plugins&gt;\r\n   &lt;plugin&gt;\r\n    &lt;groupId&gt;org.apache.maven.plugins&lt;\/groupId&gt;\r\n    &lt;artifactId&gt;maven-compiler-plugin&lt;\/artifactId&gt;\r\n    &lt;version&gt;3.7.0&lt;\/version&gt;\r\n    &lt;configuration&gt;\r\n     &lt;source&gt;1.8&lt;\/source&gt;\r\n     &lt;target&gt;1.8&lt;\/target&gt;\r\n    &lt;\/configuration&gt;\r\n   &lt;\/plugin&gt;\r\n  &lt;\/plugins&gt;\r\n &lt;\/build&gt;<\/pre>\n<p>There is a further point worth noting if you are using Java 9 or later, as the version number format is different. So while Java 8 has a version of 1.8, Java 9 has a version of 9<div style=\"display:inline-block; margin: 15px 0;\"> <div id=\"adngin-JavaCodeGeeks_incontent_video-0\" style=\"display:inline-block;\"><\/div> <\/div><\/p>\n<p><figure id=\"attachment_74547\" aria-describedby=\"caption-attachment-74547\" style=\"width: 300px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2018\/03\/j9j8cmd.png\"><img decoding=\"async\" class=\"wp-image-74547 size-full\" src=\"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2018\/03\/j9j8cmd.png\" alt=\"\" width=\"300\" height=\"158\" \/><\/a><figcaption id=\"caption-attachment-74547\" class=\"wp-caption-text\">Java 9 vs Java 8 versions<\/figcaption><\/figure><\/p>\n<p>This means you need to state the version in your pom as<\/p>\n<pre class=\"brush:xml\">&lt;properties&gt;\r\n   &lt;maven.compiler.source&gt;9&lt;\/maven.compiler.source&gt;\r\n   &lt;maven.compiler.target&gt;9&lt;\/maven.compiler.target&gt;\r\n   &lt;failOnMissingWebXml&gt;false&lt;\/failOnMissingWebXml&gt;\r\n &lt;\/properties&gt;<\/pre>\n<p>Or using the full version in my JavaEE8 project(https:\/\/github.com\/farrelmr\/javaee8\/blob\/master\/pom.xml) this would be stated as \u2013<\/p>\n<pre class=\"brush:xml\">&lt;project \r\n xmlns=\"http:\/\/maven.apache.org\/POM\/4.0.0\" \r\n xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\"\r\n xsi:schemaLocation=\"http:\/\/maven.apache.org\/POM\/4.0.0 http:\/\/maven.apache.org\/xsd\/maven-4.0.0.xsd\"&gt;\r\n &lt;modelVersion&gt;4.0.0&lt;\/modelVersion&gt;\r\n &lt;groupId&gt;com.javabullets.javaee8&lt;\/groupId&gt;\r\n &lt;artifactId&gt;javaee8&lt;\/artifactId&gt;\r\n &lt;version&gt;1.0-SNAPSHOT&lt;\/version&gt;\r\n &lt;packaging&gt;war&lt;\/packaging&gt;\r\n &lt;dependencies&gt;\r\n  &lt;dependency&gt;\r\n   &lt;groupId&gt;javax&lt;\/groupId&gt;\r\n   &lt;artifactId&gt;javaee-api&lt;\/artifactId&gt;\r\n   &lt;version&gt;8.0&lt;\/version&gt;\r\n   &lt;scope&gt;provided&lt;\/scope&gt;\r\n  &lt;\/dependency&gt;\r\n &lt;\/dependencies&gt;\r\n &lt;build&gt;\r\n  &lt;finalName&gt;javaee8&lt;\/finalName&gt;\r\n &lt;\/build&gt;\r\n &lt;properties&gt;\r\n  &lt;maven.compiler.source&gt;9&lt;\/maven.compiler.source&gt;\r\n  &lt;maven.compiler.target&gt;9&lt;\/maven.compiler.target&gt;\r\n  &lt;failOnMissingWebXml&gt;false&lt;\/failOnMissingWebXml&gt;\r\n &lt;\/properties&gt;\r\n&lt;\/project&gt;<\/pre>\n<p>This will prevent the problem in eclipse<\/p>\n<p>This post may seem obvious \u2013 but it is worth stating that the change in version number for Java 9 means you must check you are using the correct version number in maven<\/p>\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td>Published on Java Code Geeks with permission by Martin Farrell, 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:\/\/www.javabullets.com\/maven-eclipse-and-java-9\/\" target=\"_blank\" rel=\"noopener\">Maven, Eclipse and Java 9<\/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>Anyone that uses the M2E(maven-to-eclipse) plugin in eclipse knows the issue where you have run a build, then update maven on your project only to have it reset the JRE and throw up a wall of project errors! I noticed the issue in the post I made on running Java EE 8 with Java 9 &hellip;<\/p>\n","protected":false},"author":5562,"featured_media":110,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[29,670],"class_list":["post-74542","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-enterprise-java","tag-eclipse","tag-maven"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Maven, Eclipse and Java 9 - Java Code Geeks<\/title>\n<meta name=\"description\" content=\"Anyone that uses the M2E(maven-to-eclipse) plugin in eclipse knows the issue where you have run a build, then update maven on your project only to have it\" \/>\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\/03\/maven-eclipse-and-java-9.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Maven, Eclipse and Java 9 - Java Code Geeks\" \/>\n<meta property=\"og:description\" content=\"Anyone that uses the M2E(maven-to-eclipse) plugin in eclipse knows the issue where you have run a build, then update maven on your project only to have it\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.javacodegeeks.com\/2018\/03\/maven-eclipse-and-java-9.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:published_time\" content=\"2018-03-09T11:00:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/eclipse-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=\"Martin Farrell\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Martin Farrell\" \/>\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\\\/03\\\/maven-eclipse-and-java-9.html#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/03\\\/maven-eclipse-and-java-9.html\"},\"author\":{\"name\":\"Martin Farrell\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/person\\\/0e817b754d2970d24f9f5232b4353e06\"},\"headline\":\"Maven, Eclipse and Java 9\",\"datePublished\":\"2018-03-09T11:00:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/03\\\/maven-eclipse-and-java-9.html\"},\"wordCount\":229,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/03\\\/maven-eclipse-and-java-9.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/eclipse-logo.jpg\",\"keywords\":[\"Eclipse\",\"Maven\"],\"articleSection\":[\"Enterprise Java\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/03\\\/maven-eclipse-and-java-9.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/03\\\/maven-eclipse-and-java-9.html\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/03\\\/maven-eclipse-and-java-9.html\",\"name\":\"Maven, Eclipse and Java 9 - Java Code Geeks\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/03\\\/maven-eclipse-and-java-9.html#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/03\\\/maven-eclipse-and-java-9.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/eclipse-logo.jpg\",\"datePublished\":\"2018-03-09T11:00:15+00:00\",\"description\":\"Anyone that uses the M2E(maven-to-eclipse) plugin in eclipse knows the issue where you have run a build, then update maven on your project only to have it\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/03\\\/maven-eclipse-and-java-9.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/03\\\/maven-eclipse-and-java-9.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/03\\\/maven-eclipse-and-java-9.html#primaryimage\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/eclipse-logo.jpg\",\"contentUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/eclipse-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/03\\\/maven-eclipse-and-java-9.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\":\"Maven, Eclipse and Java 9\"}]},{\"@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\\\/0e817b754d2970d24f9f5232b4353e06\",\"name\":\"Martin Farrell\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0a1dc2247a0d7672d7918eddfbfaaa7d0d14b432a3aec5d926f00a16bf75ad70?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0a1dc2247a0d7672d7918eddfbfaaa7d0d14b432a3aec5d926f00a16bf75ad70?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0a1dc2247a0d7672d7918eddfbfaaa7d0d14b432a3aec5d926f00a16bf75ad70?s=96&d=mm&r=g\",\"caption\":\"Martin Farrell\"},\"description\":\"Martin is a Software Developer and Consultant specializing in Java and the Spring Framework. When not coding he spends time with his wife and two children, or cycling his bike.\",\"sameAs\":[\"http:\\\/\\\/www.javabullets.com\"],\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/author\\\/martin-farrell\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Maven, Eclipse and Java 9 - Java Code Geeks","description":"Anyone that uses the M2E(maven-to-eclipse) plugin in eclipse knows the issue where you have run a build, then update maven on your project only to have it","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\/03\/maven-eclipse-and-java-9.html","og_locale":"en_US","og_type":"article","og_title":"Maven, Eclipse and Java 9 - Java Code Geeks","og_description":"Anyone that uses the M2E(maven-to-eclipse) plugin in eclipse knows the issue where you have run a build, then update maven on your project only to have it","og_url":"https:\/\/www.javacodegeeks.com\/2018\/03\/maven-eclipse-and-java-9.html","og_site_name":"Java Code Geeks","article_publisher":"https:\/\/www.facebook.com\/javacodegeeks","article_published_time":"2018-03-09T11:00:15+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/eclipse-logo.jpg","type":"image\/jpeg"}],"author":"Martin Farrell","twitter_card":"summary_large_image","twitter_creator":"@javacodegeeks","twitter_site":"@javacodegeeks","twitter_misc":{"Written by":"Martin Farrell","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.javacodegeeks.com\/2018\/03\/maven-eclipse-and-java-9.html#article","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/2018\/03\/maven-eclipse-and-java-9.html"},"author":{"name":"Martin Farrell","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/person\/0e817b754d2970d24f9f5232b4353e06"},"headline":"Maven, Eclipse and Java 9","datePublished":"2018-03-09T11:00:15+00:00","mainEntityOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/2018\/03\/maven-eclipse-and-java-9.html"},"wordCount":229,"commentCount":0,"publisher":{"@id":"https:\/\/www.javacodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/2018\/03\/maven-eclipse-and-java-9.html#primaryimage"},"thumbnailUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/eclipse-logo.jpg","keywords":["Eclipse","Maven"],"articleSection":["Enterprise Java"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.javacodegeeks.com\/2018\/03\/maven-eclipse-and-java-9.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.javacodegeeks.com\/2018\/03\/maven-eclipse-and-java-9.html","url":"https:\/\/www.javacodegeeks.com\/2018\/03\/maven-eclipse-and-java-9.html","name":"Maven, Eclipse and Java 9 - Java Code Geeks","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/2018\/03\/maven-eclipse-and-java-9.html#primaryimage"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/2018\/03\/maven-eclipse-and-java-9.html#primaryimage"},"thumbnailUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/eclipse-logo.jpg","datePublished":"2018-03-09T11:00:15+00:00","description":"Anyone that uses the M2E(maven-to-eclipse) plugin in eclipse knows the issue where you have run a build, then update maven on your project only to have it","breadcrumb":{"@id":"https:\/\/www.javacodegeeks.com\/2018\/03\/maven-eclipse-and-java-9.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.javacodegeeks.com\/2018\/03\/maven-eclipse-and-java-9.html"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.javacodegeeks.com\/2018\/03\/maven-eclipse-and-java-9.html#primaryimage","url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/eclipse-logo.jpg","contentUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/eclipse-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.javacodegeeks.com\/2018\/03\/maven-eclipse-and-java-9.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":"Maven, Eclipse and Java 9"}]},{"@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\/0e817b754d2970d24f9f5232b4353e06","name":"Martin Farrell","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0a1dc2247a0d7672d7918eddfbfaaa7d0d14b432a3aec5d926f00a16bf75ad70?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0a1dc2247a0d7672d7918eddfbfaaa7d0d14b432a3aec5d926f00a16bf75ad70?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0a1dc2247a0d7672d7918eddfbfaaa7d0d14b432a3aec5d926f00a16bf75ad70?s=96&d=mm&r=g","caption":"Martin Farrell"},"description":"Martin is a Software Developer and Consultant specializing in Java and the Spring Framework. When not coding he spends time with his wife and two children, or cycling his bike.","sameAs":["http:\/\/www.javabullets.com"],"url":"https:\/\/www.javacodegeeks.com\/author\/martin-farrell"}]}},"_links":{"self":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/74542","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\/5562"}],"replies":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/comments?post=74542"}],"version-history":[{"count":0,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/74542\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media\/110"}],"wp:attachment":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media?parent=74542"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/categories?post=74542"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/tags?post=74542"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}