{"id":36486,"date":"2016-04-25T11:00:40","date_gmt":"2016-04-25T08:00:40","guid":{"rendered":"http:\/\/examples.javacodegeeks.com\/?p=36486"},"modified":"2016-04-24T11:24:02","modified_gmt":"2016-04-24T08:24:02","slug":"mongodb-show-databases-example","status":"publish","type":"post","link":"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/","title":{"rendered":"MongoDB Show Databases Example"},"content":{"rendered":"<h2>1. Introduction<\/h2>\n<p>MongoDB is a popular document-oriented NoSQL database developed by MongoDB Inc.<\/p>\n<p>In this post, we are going to see different ways to list all the available databases. To give a foreword, a database in MongoDB is technically made up of different Collections.<\/p>\n<p>Before we getting into how to list databases, let&#8217;s first see how to create a database in MongoDB.<\/p>\n<p>We do not have any specific command to create a database in MongoDB. To switch database,\u00a0use the below command from mongo shell:\u00a0<code>use jcgdb<\/code><br \/>\n&nbsp;<br \/>\nBy executing the above command, MongoDB switches to use the database &#8216;jcgdb&#8217;. Suppose that this database has not been created prior to execution of the above command. Even after executing this command, the database will not be created because MongoDB lazily creates a database when the first collection of the database being created.<\/p>\n<p>For more information on creating a database, please check this <a href=\"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-create-drop-database-example\/\">post<\/a>.<\/p>\n<p>Now, let\u2019s see different ways to list the databases in a running Mongo instance.<\/p>\n<ul>\n<ul>\n<li>Using <em>show dbs<\/em> command<\/li>\n<\/ul>\n<\/ul>\n<p><code>show dbs<\/code>,provides a list of all the databases.<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_36521\" aria-describedby=\"caption-attachment-36521\" style=\"width: 293px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/show-dbs.jpg\"><img decoding=\"async\" class=\"size-full wp-image-36521\" src=\"http:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/show-dbs.jpg\" alt=\"Using show dbs command to list databases\" width=\"293\" height=\"429\" srcset=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/show-dbs.jpg 293w, https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/show-dbs-205x300.jpg 205w\" sizes=\"(max-width: 293px) 100vw, 293px\" \/><\/a><figcaption id=\"caption-attachment-36521\" class=\"wp-caption-text\">Using show dbs command to list databases<\/figcaption><\/figure><\/p>\n<ul>\n<li>Using <em>show databases<\/em> command<\/li>\n<\/ul>\n<p><code>show databases<\/code>,provides a list of all the databases.<\/p>\n<p><figure id=\"attachment_36522\" aria-describedby=\"caption-attachment-36522\" style=\"width: 301px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/show-databases.jpg\"><img decoding=\"async\" class=\"size-full wp-image-36522\" src=\"http:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/show-databases.jpg\" alt=\"Using show databases to list all databases\" width=\"301\" height=\"441\" srcset=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/show-databases.jpg 301w, https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/show-databases-205x300.jpg 205w\" sizes=\"(max-width: 301px) 100vw, 301px\" \/><\/a><figcaption id=\"caption-attachment-36522\" class=\"wp-caption-text\">Using show databases to list all databases<\/figcaption><\/figure><\/p>\n<ul>\n<li>Using <em>adminCommand<\/em><\/li>\n<\/ul>\n<p><code>db.adminCommand('listDatabases')<\/code>.This command returns a document containing the following fields:<\/p>\n<ol>\n<li><em>databases<\/em> &#8211; An array of documents, one document for each database.Each of this document contains:\n<ol type=\"a\">\n<li><em>name<\/em> &#8211; The database name<\/li>\n<li><em>sizeOnDisk<\/em> &#8211; Size of the database file in bytes<\/li>\n<li><em>empty<\/em> &#8211; A boolean indicating whether the database is empty or not<\/li>\n<\/ol>\n<\/li>\n<li><em>totalSize<\/em> &#8211; Sum of all the sizeOnDisk fields<\/li>\n<li><em>ok<\/em> &#8211; Determines the success of the command, a value of 1 indicates success<br \/>\nAlternatively, you can use <code>db.adminCommand( { listDatabases: 1 } )<\/code><\/li>\n<\/ol>\n<p><figure id=\"attachment_36508\" aria-describedby=\"caption-attachment-36508\" style=\"width: 684px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/listDatabases1.jpg\"><img decoding=\"async\" class=\"wp-image-36508 size-full\" src=\"http:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/listDatabases1.jpg\" alt=\"listDatabases1\" width=\"684\" height=\"860\" srcset=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/listDatabases1.jpg 684w, https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/listDatabases1-239x300.jpg 239w\" sizes=\"(max-width: 684px) 100vw, 684px\" \/><\/a><figcaption id=\"caption-attachment-36508\" class=\"wp-caption-text\">listDatabases admin command to list the available databases<\/figcaption><\/figure><\/p>\n<ul>\n<li>Using <em>getMongo<\/em><\/li>\n<\/ul>\n<p><code>db.getMongo().getDBNames()<\/code>,returns an array of all the available database names.<\/p>\n<p><figure id=\"attachment_36512\" aria-describedby=\"caption-attachment-36512\" style=\"width: 608px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/getDBNames1.jpg\"><img decoding=\"async\" class=\"wp-image-36512 size-full\" src=\"http:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/getDBNames1.jpg\" alt=\"getDBNames1\" width=\"608\" height=\"397\" srcset=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/getDBNames1.jpg 608w, https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/getDBNames1-300x196.jpg 300w\" sizes=\"(max-width: 608px) 100vw, 608px\" \/><\/a><figcaption id=\"caption-attachment-36512\" class=\"wp-caption-text\">Listing all database names using getDBNames<\/figcaption><\/figure><\/p>\n<h2>2. Conclusion<\/h2>\n<p>In this article we have seen different ways to list the databases in MongoDB.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. Introduction MongoDB is a popular document-oriented NoSQL database developed by MongoDB Inc. In this post, we are going to see different ways to list all the available databases. To give a foreword, a database in MongoDB is technically made up of different Collections. Before we getting into how to list databases, let&#8217;s first see &hellip;<\/p>\n","protected":false},"author":94,"featured_media":36154,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1447],"tags":[],"class_list":["post-36486","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-mongodb"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>MongoDB Show Databases Example - Java Code Geeks<\/title>\n<meta name=\"description\" content=\"1. Introduction MongoDB is a popular document-oriented NoSQL database developed by MongoDB Inc. In this post, we are going to see different ways to list\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MongoDB Show Databases Example - Java Code Geeks\" \/>\n<meta property=\"og:description\" content=\"1. Introduction MongoDB is a popular document-oriented NoSQL database developed by MongoDB Inc. In this post, we are going to see different ways to list\" \/>\n<meta property=\"og:url\" content=\"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/\" \/>\n<meta property=\"og:site_name\" content=\"Examples Java Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/javacodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2016-04-25T08:00:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/mongodb-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=\"Nagendra Varma\" \/>\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=\"Nagendra Varma\" \/>\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:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/\"},\"author\":{\"name\":\"Nagendra Varma\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/38799ec2625a57dcf52130f365a28e7b\"},\"headline\":\"MongoDB Show Databases Example\",\"datePublished\":\"2016-04-25T08:00:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/\"},\"wordCount\":351,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/mongodb-logo.jpg\",\"articleSection\":[\"MongoDB\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/\",\"url\":\"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/\",\"name\":\"MongoDB Show Databases Example - Java Code Geeks\",\"isPartOf\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/mongodb-logo.jpg\",\"datePublished\":\"2016-04-25T08:00:40+00:00\",\"description\":\"1. Introduction MongoDB is a popular document-oriented NoSQL database developed by MongoDB Inc. In this post, we are going to see different ways to list\",\"breadcrumb\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/#primaryimage\",\"url\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/mongodb-logo.jpg\",\"contentUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/mongodb-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/examples.javacodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Software Development\",\"item\":\"https:\/\/examples.javacodegeeks.com\/category\/software-development\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"MongoDB\",\"item\":\"https:\/\/examples.javacodegeeks.com\/category\/software-development\/mongodb\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"MongoDB Show Databases Example\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#website\",\"url\":\"https:\/\/examples.javacodegeeks.com\/\",\"name\":\"Java Code Geeks\",\"description\":\"Java Examples and Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#organization\"},\"alternateName\":\"JCG\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/examples.javacodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/examples.javacodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/javacodegeeks\",\"https:\/\/x.com\/javacodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/38799ec2625a57dcf52130f365a28e7b\",\"name\":\"Nagendra Varma\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/Nagendra-Varma-96x96.jpg\",\"contentUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/Nagendra-Varma-96x96.jpg\",\"caption\":\"Nagendra Varma\"},\"description\":\"BE graduate from Computer Science discipline. Quick learner and take in a zeal to learn new technologies. Broad experience in working on JavaEE applications in an agile environment with projects having critical deadlines. Expertise in developing WEB services.\",\"sameAs\":[\"https:\/\/www.javacodegeeks.com\/\"],\"url\":\"https:\/\/examples.javacodegeeks.com\/author\/nagendra-varma\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"MongoDB Show Databases Example - Java Code Geeks","description":"1. Introduction MongoDB is a popular document-oriented NoSQL database developed by MongoDB Inc. In this post, we are going to see different ways to list","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:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/","og_locale":"en_US","og_type":"article","og_title":"MongoDB Show Databases Example - Java Code Geeks","og_description":"1. Introduction MongoDB is a popular document-oriented NoSQL database developed by MongoDB Inc. In this post, we are going to see different ways to list","og_url":"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/","og_site_name":"Examples Java Code Geeks","article_publisher":"https:\/\/www.facebook.com\/javacodegeeks","article_published_time":"2016-04-25T08:00:40+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/mongodb-logo.jpg","type":"image\/jpeg"}],"author":"Nagendra Varma","twitter_card":"summary_large_image","twitter_creator":"@javacodegeeks","twitter_site":"@javacodegeeks","twitter_misc":{"Written by":"Nagendra Varma","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/#article","isPartOf":{"@id":"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/"},"author":{"name":"Nagendra Varma","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/38799ec2625a57dcf52130f365a28e7b"},"headline":"MongoDB Show Databases Example","datePublished":"2016-04-25T08:00:40+00:00","mainEntityOfPage":{"@id":"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/"},"wordCount":351,"commentCount":0,"publisher":{"@id":"https:\/\/examples.javacodegeeks.com\/#organization"},"image":{"@id":"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/#primaryimage"},"thumbnailUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/mongodb-logo.jpg","articleSection":["MongoDB"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/","url":"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/","name":"MongoDB Show Databases Example - Java Code Geeks","isPartOf":{"@id":"https:\/\/examples.javacodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/#primaryimage"},"image":{"@id":"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/#primaryimage"},"thumbnailUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/mongodb-logo.jpg","datePublished":"2016-04-25T08:00:40+00:00","description":"1. Introduction MongoDB is a popular document-oriented NoSQL database developed by MongoDB Inc. In this post, we are going to see different ways to list","breadcrumb":{"@id":"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/#primaryimage","url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/mongodb-logo.jpg","contentUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/mongodb-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/examples.javacodegeeks.com\/software-development\/mongodb\/mongodb-show-databases-example\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/examples.javacodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Software Development","item":"https:\/\/examples.javacodegeeks.com\/category\/software-development\/"},{"@type":"ListItem","position":3,"name":"MongoDB","item":"https:\/\/examples.javacodegeeks.com\/category\/software-development\/mongodb\/"},{"@type":"ListItem","position":4,"name":"MongoDB Show Databases Example"}]},{"@type":"WebSite","@id":"https:\/\/examples.javacodegeeks.com\/#website","url":"https:\/\/examples.javacodegeeks.com\/","name":"Java Code Geeks","description":"Java Examples and Code Snippets","publisher":{"@id":"https:\/\/examples.javacodegeeks.com\/#organization"},"alternateName":"JCG","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/examples.javacodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/examples.javacodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/examples.javacodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/javacodegeeks","https:\/\/x.com\/javacodegeeks"]},{"@type":"Person","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/38799ec2625a57dcf52130f365a28e7b","name":"Nagendra Varma","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/Nagendra-Varma-96x96.jpg","contentUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2016\/04\/Nagendra-Varma-96x96.jpg","caption":"Nagendra Varma"},"description":"BE graduate from Computer Science discipline. Quick learner and take in a zeal to learn new technologies. Broad experience in working on JavaEE applications in an agile environment with projects having critical deadlines. Expertise in developing WEB services.","sameAs":["https:\/\/www.javacodegeeks.com\/"],"url":"https:\/\/examples.javacodegeeks.com\/author\/nagendra-varma\/"}]}},"_links":{"self":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/36486","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/users\/94"}],"replies":[{"embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/comments?post=36486"}],"version-history":[{"count":0,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/36486\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/media\/36154"}],"wp:attachment":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/media?parent=36486"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/categories?post=36486"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/tags?post=36486"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}