{"id":6761,"date":"2013-01-10T13:00:03","date_gmt":"2013-01-10T11:00:03","guid":{"rendered":"http:\/\/www.javacodegeeks.com\/?p=6761"},"modified":"2013-01-10T06:41:57","modified_gmt":"2013-01-10T04:41:57","slug":"spring-selenium-tests-with-annotations","status":"publish","type":"post","link":"https:\/\/www.javacodegeeks.com\/2013\/01\/spring-selenium-tests-with-annotations.html","title":{"rendered":"Spring Selenium Tests With Annotations"},"content":{"rendered":"<p>This post describes how to implement Selenium tests in Java. It is inspired from the post by<a href=\"http:\/\/www.alexecollins.com\/?q=content\/tutorial-integration-testing-selenium-part-1\" target=\"_blank\"> Alex Collins<\/a>, with annotations. The code is available on<a href=\"https:\/\/github.com\/JVerstry\/Web-Related-Examples\" target=\"_blank\"> GitHub<\/a> in the Spring-Selenium-Test directory. Some alternative and much<a href=\"http:\/\/tshikatshikaaa.blogspot.nl\/2012\/09\/spring-mvc-controller-junit-testing.html\"> lighter techniques are available<\/a> to unit test a Spring MVC application. To unit test services, see<a href=\"http:\/\/tshikatshikaaa.blogspot.nl\/2012\/09\/junit-testing-spring-service-and-dao.html\"> here<\/a>.<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<\/p>\n<h2> Page, Configuration &amp; Controller<\/h2>\n<p>We create a simple page with &#8216;Hello World&#8217;:<\/p>\n<pre class=\" brush:xml\">&lt;!doctype html&gt;\r\n&lt;html lang='en'&gt;\r\n&lt;head&gt;\r\n  &lt;meta charset='utf-8'&gt;\r\n  &lt;title&gt;Welcome !!!&lt;\/title&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n  &lt;h1&gt;\r\n   Hello World !\r\n  &lt;\/h1&gt;\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p>We keep our controller very simple:<div style=\"display:inline-block; margin: 15px 0;\"> <div id=\"adngin-JavaCodeGeeks_incontent_video-0\" style=\"display:inline-block;\"><\/div> <\/div><\/p>\n<pre class=\" brush:java\">@EnableWebMvc\r\n@Configuration\r\n@ComponentScan(basePackages = 'com.jverstry')\r\npublic class WebConfig extends WebMvcConfigurerAdapter {\r\n\r\n    @Bean\r\n    public ViewResolver getViewResolver() {\r\n        InternalResourceViewResolver resolver = new InternalResourceViewResolver();\r\n        resolver.setPrefix('WEB-INF\/pages\/');\r\n        resolver.setSuffix('.jsp');\r\n        return resolver;\r\n    }\r\n\r\n}<\/pre>\n<p>and our controller too:<\/p>\n<pre class=\" brush:java\">@Controller\r\npublic class MyController {\r\n\r\n    @RequestMapping(value = '\/')\r\n    public String home() {\r\n        return 'index';\r\n    }\r\n\r\n}<\/pre>\n<h2> For Selenium Testing<\/h2>\n<p>We create a configuration for testing. It provides the URL to open the application locally. The application is opened with Firefox:<\/p>\n<pre class=\" brush:java\">@Configuration\r\npublic class TestConfig {\r\n\r\n    @Bean\r\n    public URI getSiteBase() throws URISyntaxException {\r\n        return new URI('http:\/\/localhost:10001\/spring-selenium-test-1.0.0');\r\n    }\r\n\r\n    @Bean(destroyMethod='quit')\r\n    public FirefoxDriver getDrv() {\r\n        return new FirefoxDriver();\r\n    }\r\n\r\n}<\/pre>\n<p>We also define an abstract class as a basis for all tests. It automatically closes Firefox after the test:<\/p>\n<pre class=\" brush:java\">@RunWith(SpringJUnit4ClassRunner.class)\r\n@ContextConfiguration(classes={ TestConfig.class })\r\npublic abstract class AbstractTestIT {\r\n\r\n    @Autowired\r\n    protected URI siteBase;\r\n\r\n    @Autowired\r\n    protected WebDriver drv;\r\n\r\n    {\r\n        Runtime.getRuntime().addShutdownHook(new Thread() {\r\n           @Override\r\n           public void run() {\r\n                drv.close();\r\n           }\r\n        });\r\n    }\r\n\r\n}<\/pre>\n<p>And we implement a selenium test where we make sure our page contains &#8216;Hello World&#8217;:<\/p>\n<pre class=\" brush:java\">public class SeleniumTestIT extends AbstractTestIT {\r\n\r\n    @Test\r\n    public void testWeSeeHelloWorld() {\r\n        drv.get(siteBase.toString());\r\n        assertTrue(drv.getPageSource().contains('Hello World'));\r\n    }\r\n\r\n}<\/pre>\n<p>The maven dependencies are the same as those described in <a href=\"http:\/\/www.alexecollins.com\/?q=content\/tutorial-integration-testing-selenium-part-1\" target=\"_blank\">Alex Collins<\/a>&#8216;s post.<\/p>\n<h2> Building The Application<\/h2>\n<p>f you build the application, it will open and close firefox automatically. The test will be successful.<br \/>\n&nbsp;<\/p>\n<p><strong><em>Reference: <\/em><\/strong><a href=\"http:\/\/tshikatshikaaa.blogspot.gr\/2013\/01\/spring-selenium-tests-with-annotations.html\">Spring Selenium Tests With Annotations <\/a> from our <a href=\"http:\/\/www.javacodegeeks.com\/p\/jcg.html\">JCG partner<\/a> Jerome Versrynge at the <a href=\"http:\/\/tshikatshikaaa.blogspot.gr\/\">Technical Notes<\/a> blog.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This post describes how to implement Selenium tests in Java. It is inspired from the post by Alex Collins, with annotations. The code is available on GitHub in the Spring-Selenium-Test directory. Some alternative and much lighter techniques are available to unit test a Spring MVC application. To unit test services, see here. &nbsp; &nbsp; &nbsp; &hellip;<\/p>\n","protected":false},"author":294,"featured_media":231,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[287,273],"class_list":["post-6761","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-enterprise-java","tag-selenium","tag-testing"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Spring Selenium Tests With Annotations<\/title>\n<meta name=\"description\" content=\"This post describes how to implement Selenium tests in Java. It is inspired from the post by Alex Collins, with annotations. The code is available on\" \/>\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\/2013\/01\/spring-selenium-tests-with-annotations.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Spring Selenium Tests With Annotations\" \/>\n<meta property=\"og:description\" content=\"This post describes how to implement Selenium tests in Java. It is inspired from the post by Alex Collins, with annotations. The code is available on\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.javacodegeeks.com\/2013\/01\/spring-selenium-tests-with-annotations.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=\"2013-01-10T11:00:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/selenium-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=\"Jerome Versrynge\" \/>\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=\"Jerome Versrynge\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/01\\\/spring-selenium-tests-with-annotations.html#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/01\\\/spring-selenium-tests-with-annotations.html\"},\"author\":{\"name\":\"Jerome Versrynge\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/person\\\/658bd5fb8f00ed062406092ea069e948\"},\"headline\":\"Spring Selenium Tests With Annotations\",\"datePublished\":\"2013-01-10T11:00:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/01\\\/spring-selenium-tests-with-annotations.html\"},\"wordCount\":196,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/01\\\/spring-selenium-tests-with-annotations.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/selenium-logo.jpg\",\"keywords\":[\"Selenium\",\"Testing\"],\"articleSection\":[\"Enterprise Java\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/01\\\/spring-selenium-tests-with-annotations.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/01\\\/spring-selenium-tests-with-annotations.html\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/01\\\/spring-selenium-tests-with-annotations.html\",\"name\":\"Spring Selenium Tests With Annotations\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/01\\\/spring-selenium-tests-with-annotations.html#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/01\\\/spring-selenium-tests-with-annotations.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/selenium-logo.jpg\",\"datePublished\":\"2013-01-10T11:00:03+00:00\",\"description\":\"This post describes how to implement Selenium tests in Java. It is inspired from the post by Alex Collins, with annotations. The code is available on\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/01\\\/spring-selenium-tests-with-annotations.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/01\\\/spring-selenium-tests-with-annotations.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/01\\\/spring-selenium-tests-with-annotations.html#primaryimage\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/selenium-logo.jpg\",\"contentUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/selenium-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2013\\\/01\\\/spring-selenium-tests-with-annotations.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\":\"Spring Selenium Tests With Annotations\"}]},{\"@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\\\/658bd5fb8f00ed062406092ea069e948\",\"name\":\"Jerome Versrynge\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/90e571ae81f2c3c2cf7fc4f8b18e1fb8a294ca23d7fd6d066289696a31b2c774?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/90e571ae81f2c3c2cf7fc4f8b18e1fb8a294ca23d7fd6d066289696a31b2c774?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/90e571ae81f2c3c2cf7fc4f8b18e1fb8a294ca23d7fd6d066289696a31b2c774?s=96&d=mm&r=g\",\"caption\":\"Jerome Versrynge\"},\"sameAs\":[\"http:\\\/\\\/tshikatshikaaa.blogspot.com\\\/\"],\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/author\\\/Jerome-Versrynge\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Spring Selenium Tests With Annotations","description":"This post describes how to implement Selenium tests in Java. It is inspired from the post by Alex Collins, with annotations. The code is available on","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\/2013\/01\/spring-selenium-tests-with-annotations.html","og_locale":"en_US","og_type":"article","og_title":"Spring Selenium Tests With Annotations","og_description":"This post describes how to implement Selenium tests in Java. It is inspired from the post by Alex Collins, with annotations. The code is available on","og_url":"https:\/\/www.javacodegeeks.com\/2013\/01\/spring-selenium-tests-with-annotations.html","og_site_name":"Java Code Geeks","article_publisher":"https:\/\/www.facebook.com\/javacodegeeks","article_published_time":"2013-01-10T11:00:03+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/selenium-logo.jpg","type":"image\/jpeg"}],"author":"Jerome Versrynge","twitter_card":"summary_large_image","twitter_creator":"@javacodegeeks","twitter_site":"@javacodegeeks","twitter_misc":{"Written by":"Jerome Versrynge","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.javacodegeeks.com\/2013\/01\/spring-selenium-tests-with-annotations.html#article","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/2013\/01\/spring-selenium-tests-with-annotations.html"},"author":{"name":"Jerome Versrynge","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/person\/658bd5fb8f00ed062406092ea069e948"},"headline":"Spring Selenium Tests With Annotations","datePublished":"2013-01-10T11:00:03+00:00","mainEntityOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/2013\/01\/spring-selenium-tests-with-annotations.html"},"wordCount":196,"commentCount":3,"publisher":{"@id":"https:\/\/www.javacodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/2013\/01\/spring-selenium-tests-with-annotations.html#primaryimage"},"thumbnailUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/selenium-logo.jpg","keywords":["Selenium","Testing"],"articleSection":["Enterprise Java"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.javacodegeeks.com\/2013\/01\/spring-selenium-tests-with-annotations.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.javacodegeeks.com\/2013\/01\/spring-selenium-tests-with-annotations.html","url":"https:\/\/www.javacodegeeks.com\/2013\/01\/spring-selenium-tests-with-annotations.html","name":"Spring Selenium Tests With Annotations","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/2013\/01\/spring-selenium-tests-with-annotations.html#primaryimage"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/2013\/01\/spring-selenium-tests-with-annotations.html#primaryimage"},"thumbnailUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/selenium-logo.jpg","datePublished":"2013-01-10T11:00:03+00:00","description":"This post describes how to implement Selenium tests in Java. It is inspired from the post by Alex Collins, with annotations. The code is available on","breadcrumb":{"@id":"https:\/\/www.javacodegeeks.com\/2013\/01\/spring-selenium-tests-with-annotations.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.javacodegeeks.com\/2013\/01\/spring-selenium-tests-with-annotations.html"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.javacodegeeks.com\/2013\/01\/spring-selenium-tests-with-annotations.html#primaryimage","url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/selenium-logo.jpg","contentUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/selenium-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.javacodegeeks.com\/2013\/01\/spring-selenium-tests-with-annotations.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":"Spring Selenium Tests With Annotations"}]},{"@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\/658bd5fb8f00ed062406092ea069e948","name":"Jerome Versrynge","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/90e571ae81f2c3c2cf7fc4f8b18e1fb8a294ca23d7fd6d066289696a31b2c774?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/90e571ae81f2c3c2cf7fc4f8b18e1fb8a294ca23d7fd6d066289696a31b2c774?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/90e571ae81f2c3c2cf7fc4f8b18e1fb8a294ca23d7fd6d066289696a31b2c774?s=96&d=mm&r=g","caption":"Jerome Versrynge"},"sameAs":["http:\/\/tshikatshikaaa.blogspot.com\/"],"url":"https:\/\/www.javacodegeeks.com\/author\/Jerome-Versrynge"}]}},"_links":{"self":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/6761","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\/294"}],"replies":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/comments?post=6761"}],"version-history":[{"count":0,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/6761\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media\/231"}],"wp:attachment":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media?parent=6761"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/categories?post=6761"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/tags?post=6761"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}