{"id":180,"date":"2025-06-14T05:55:00","date_gmt":"2025-06-14T05:55:00","guid":{"rendered":"https:\/\/harshad-sonawane.com\/blog\/?p=180"},"modified":"2025-06-10T13:50:55","modified_gmt":"2025-06-10T13:50:55","slug":"reduce-cloud-costs-java-applications","status":"publish","type":"post","link":"https:\/\/harshad-sonawane.com\/blog\/reduce-cloud-costs-java-applications\/","title":{"rendered":"How to Reduce Cloud Costs for Your Java Applications"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p><a href=\"https:\/\/harshad-sonawane.com\/blog\/java-memory-management-heap-gc-best\/\">Java<\/a> applications are widely used in enterprises due to their robustness, scalability, and extensive ecosystem. However, when deployed in cloud environments, they can incur significant costs if not optimized properly. Understanding how to manage and reduce cloud spending is essential for businesses looking to improve ROI without sacrificing performance.<\/p>\n\n\n\n<p>This blog explores proven strategies to reduce cloud costs for Java applications while maintaining <a href=\"https:\/\/harshad-sonawane.com\/blog\/build-high-performance-java-apis-using-grpc\/\">high performance<\/a> and reliability.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">1. Right-Size Your Infrastructure<\/h2>\n\n\n\n<p>One of the most common causes of cloud overspending is over-provisioning. Ensure that your compute instances (EC2, GCE, or Azure VMs) are appropriately sized based on actual workloads.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Tips:<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use performance monitoring tools like <a href=\"https:\/\/harshad-sonawane.com\/blog\/choosing-right-cloud-database-rds-dynamodb-aurora-documentdb\/\">AWS<\/a> CloudWatch, Azure Monitor, or Prometheus to analyze CPU, memory, and I\/O usage.<\/li>\n\n\n\n<li>Choose burstable instance types (e.g., t3.micro) for low-usage applications.<\/li>\n\n\n\n<li>Regularly review and downgrade overprovisioned instances.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">2. Use Auto-Scaling<\/h2>\n\n\n\n<p>Java applications often experience variable workloads. Auto-scaling ensures that you only pay for the resources you use.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Implementation:<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set up horizontal auto-scaling groups based on metrics like CPU usage or request count.<\/li>\n\n\n\n<li>Use container orchestration tools like Kubernetes or ECS with HPA (Horizontal Pod Autoscaler).<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">3. Opt for Serverless Where Possible<\/h2>\n\n\n\n<p>Serverless computing can offer huge cost savings for workloads that are event-driven or have sporadic traffic.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Example:<\/h3>\n\n\n\n<p>Use AWS Lambda or Azure Functions to run scheduled tasks, file processing, or lightweight APIs instead of keeping always-on VMs.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">4. Optimize JVM Performance<\/h2>\n\n\n\n<p>A well-tuned Java Virtual Machine (JVM) can significantly reduce resource consumption.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Best Practices:<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Adjust JVM heap size (<code>-Xmx<\/code>, <code>-Xms<\/code>) based on application behavior.<\/li>\n\n\n\n<li>Use <a href=\"https:\/\/harshad-sonawane.com\/blog\/java-garbage-collection-zgc-shenandoah-g1gc\/\">G1GC<\/a> (Garbage First Garbage Collector) for predictable GC performance.<\/li>\n\n\n\n<li>Monitor garbage collection metrics and fine-tune as needed.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">5. Embrace Containers and Microservices<\/h2>\n\n\n\n<p>Migrating monolithic applications to microservices or containerized architectures can enhance scalability and resource utilization.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Tools:<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use Docker to containerize Java applications.<\/li>\n\n\n\n<li>Deploy using Kubernetes or AWS ECS\/Fargate for efficient resource scheduling.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">6. Use Spot and Reserved Instances<\/h2>\n\n\n\n<p>Cloud providers offer cost-effective pricing options:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Reserved Instances (RIs):<\/strong> Long-term commitment, lower cost.<\/li>\n\n\n\n<li><strong>Spot Instances:<\/strong> Up to 90% cheaper, suitable for fault-tolerant, batch processing tasks.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">7. Monitor and Set Budgets<\/h2>\n\n\n\n<p>Implement cost governance:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use AWS Budgets, Azure Cost Management, or GCP Cloud Billing.<\/li>\n\n\n\n<li>Set alerts and budget thresholds.<\/li>\n\n\n\n<li>Track unused resources (idle VMs, unattached volumes) and terminate them.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">8. Use Managed Services Wisely<\/h2>\n\n\n\n<p>Evaluate the cost of using managed services versus self-hosted:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Managed services save operational overhead but may be costlier for high throughput.<\/li>\n\n\n\n<li>Example: RDS vs. self-managed MySQL on EC2.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Reducing cloud costs for Java applications is not a one-time effort but an ongoing process. By implementing right-sizing, optimizing JVMs, adopting containers or serverless, and enforcing monitoring, organizations can significantly cut expenses while delivering high-quality services.<\/p>\n\n\n\n<p>Cost optimization in the cloud is about smart architecture decisions and continuous performance tuning.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p class=\"o-typing-delay-100ms ticss-27f7e3e9\"><o-anim-typing>&lt;> <strong>&#8220;Happy developing, one line at a time!&#8221;<\/strong> &lt;\/><\/o-anim-typing><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Java applications are widely used in enterprises due to their robustness, scalability, and extensive ecosystem. However, when deployed in cloud environments, they can incur significant costs if not optimized properly. Understanding how to manage and reduce cloud spending is essential for businesses looking to improve ROI without sacrificing performance. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":181,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_themeisle_gutenberg_block_has_review":false,"footnotes":"","jetpack_publicize_message":"Running Java apps on the cloud? Learn how to reduce your cloud costs without compromising performance. From JVM tuning to serverless, our latest guide breaks down actionable strategies. #Java #CloudComputing #CostOptimization #AWS #DevOps","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"enabled":false},"version":2}},"categories":[113],"tags":[158,156,153,160,159,7,9,157],"class_list":["post-180","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-java-spring-boot-aws-microservices","tag-aws-cost-optimization","tag-cloud-cost-management","tag-cloud-infrastructure","tag-java-application-optimization","tag-jvm-tuning","tag-kubernetes","tag-microservices","tag-serverless-java"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Reduce Cloud Costs for Your Java Applications - &lt;&gt;HARSHAD&#039;s Dev Diary&lt;\/&gt;<\/title>\n<meta name=\"description\" content=\"Discover practical strategies to reduce cloud costs for Java applications. Learn about right-sizing, serverless, JVM optimization, containerization, and cost monitoring.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/harshad-sonawane.com\/blog\/reduce-cloud-costs-java-applications\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Reduce Cloud Costs for Your Java Applications - &lt;&gt;HARSHAD&#039;s Dev Diary&lt;\/&gt;\" \/>\n<meta property=\"og:description\" content=\"Discover practical strategies to reduce cloud costs for Java applications. Learn about right-sizing, serverless, JVM optimization, containerization, and cost monitoring.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/harshad-sonawane.com\/blog\/reduce-cloud-costs-java-applications\/\" \/>\n<meta property=\"og:site_name\" content=\"&lt;&gt;HARSHAD&#039;s Dev Diary&lt;\/&gt;\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-14T05:55:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/harshad-sonawane.com\/blog\/wp-content\/uploads\/2025\/06\/ChatGPT-Image-Jun-1-2025-04_34_50-PM.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"HS\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"HS\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/reduce-cloud-costs-java-applications\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/reduce-cloud-costs-java-applications\\\/\"},\"author\":{\"name\":\"HS\",\"@id\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/#\\\/schema\\\/person\\\/d82781218ba30c34fa81b49e8393681e\"},\"headline\":\"How to Reduce Cloud Costs for Your Java Applications\",\"datePublished\":\"2025-06-14T05:55:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/reduce-cloud-costs-java-applications\\\/\"},\"wordCount\":457,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/#\\\/schema\\\/person\\\/d82781218ba30c34fa81b49e8393681e\"},\"image\":{\"@id\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/reduce-cloud-costs-java-applications\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/ChatGPT-Image-Jun-1-2025-04_34_50-PM.png\",\"keywords\":[\"AWS cost optimization\",\"cloud cost management\",\"Cloud Infrastructure\",\"Java application optimization\",\"JVM tuning\",\"Kubernetes\",\"Microservices\",\"serverless Java\"],\"articleSection\":[\"Java, Spring Boot, AWS, Microservices\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/reduce-cloud-costs-java-applications\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/reduce-cloud-costs-java-applications\\\/\",\"url\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/reduce-cloud-costs-java-applications\\\/\",\"name\":\"How to Reduce Cloud Costs for Your Java Applications - &lt;&gt;HARSHAD&#039;s Dev Diary&lt;\\\/&gt;\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/reduce-cloud-costs-java-applications\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/reduce-cloud-costs-java-applications\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/ChatGPT-Image-Jun-1-2025-04_34_50-PM.png\",\"datePublished\":\"2025-06-14T05:55:00+00:00\",\"description\":\"Discover practical strategies to reduce cloud costs for Java applications. Learn about right-sizing, serverless, JVM optimization, containerization, and cost monitoring.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/reduce-cloud-costs-java-applications\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/reduce-cloud-costs-java-applications\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/reduce-cloud-costs-java-applications\\\/#primaryimage\",\"url\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/ChatGPT-Image-Jun-1-2025-04_34_50-PM.png\",\"contentUrl\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/ChatGPT-Image-Jun-1-2025-04_34_50-PM.png\",\"width\":1024,\"height\":1024,\"caption\":\"How to Reduce Cloud Costs for Your Java Applications\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/reduce-cloud-costs-java-applications\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Reduce Cloud Costs for Your Java Applications\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/\",\"name\":\"Harshad's Dev Diary\",\"description\":\"HARSHAD&#039;s Dev Diary\",\"publisher\":{\"@id\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/#\\\/schema\\\/person\\\/d82781218ba30c34fa81b49e8393681e\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/#\\\/schema\\\/person\\\/d82781218ba30c34fa81b49e8393681e\",\"name\":\"HS\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/about.jpg\",\"url\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/about.jpg\",\"contentUrl\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/about.jpg\",\"width\":400,\"height\":400,\"caption\":\"HS\"},\"logo\":{\"@id\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/about.jpg\"},\"sameAs\":[\"https:\\\/\\\/harshad-sonawane.com\\\/blog\"],\"url\":\"https:\\\/\\\/harshad-sonawane.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Reduce Cloud Costs for Your Java Applications - &lt;&gt;HARSHAD&#039;s Dev Diary&lt;\/&gt;","description":"Discover practical strategies to reduce cloud costs for Java applications. Learn about right-sizing, serverless, JVM optimization, containerization, and cost monitoring.","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:\/\/harshad-sonawane.com\/blog\/reduce-cloud-costs-java-applications\/","og_locale":"en_US","og_type":"article","og_title":"How to Reduce Cloud Costs for Your Java Applications - &lt;&gt;HARSHAD&#039;s Dev Diary&lt;\/&gt;","og_description":"Discover practical strategies to reduce cloud costs for Java applications. Learn about right-sizing, serverless, JVM optimization, containerization, and cost monitoring.","og_url":"https:\/\/harshad-sonawane.com\/blog\/reduce-cloud-costs-java-applications\/","og_site_name":"&lt;&gt;HARSHAD&#039;s Dev Diary&lt;\/&gt;","article_published_time":"2025-06-14T05:55:00+00:00","og_image":[{"width":1024,"height":1024,"url":"https:\/\/harshad-sonawane.com\/blog\/wp-content\/uploads\/2025\/06\/ChatGPT-Image-Jun-1-2025-04_34_50-PM.png","type":"image\/png"}],"author":"HS","twitter_card":"summary_large_image","twitter_misc":{"Written by":"HS","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/harshad-sonawane.com\/blog\/reduce-cloud-costs-java-applications\/#article","isPartOf":{"@id":"https:\/\/harshad-sonawane.com\/blog\/reduce-cloud-costs-java-applications\/"},"author":{"name":"HS","@id":"https:\/\/harshad-sonawane.com\/blog\/#\/schema\/person\/d82781218ba30c34fa81b49e8393681e"},"headline":"How to Reduce Cloud Costs for Your Java Applications","datePublished":"2025-06-14T05:55:00+00:00","mainEntityOfPage":{"@id":"https:\/\/harshad-sonawane.com\/blog\/reduce-cloud-costs-java-applications\/"},"wordCount":457,"commentCount":0,"publisher":{"@id":"https:\/\/harshad-sonawane.com\/blog\/#\/schema\/person\/d82781218ba30c34fa81b49e8393681e"},"image":{"@id":"https:\/\/harshad-sonawane.com\/blog\/reduce-cloud-costs-java-applications\/#primaryimage"},"thumbnailUrl":"https:\/\/harshad-sonawane.com\/blog\/wp-content\/uploads\/2025\/06\/ChatGPT-Image-Jun-1-2025-04_34_50-PM.png","keywords":["AWS cost optimization","cloud cost management","Cloud Infrastructure","Java application optimization","JVM tuning","Kubernetes","Microservices","serverless Java"],"articleSection":["Java, Spring Boot, AWS, Microservices"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/harshad-sonawane.com\/blog\/reduce-cloud-costs-java-applications\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/harshad-sonawane.com\/blog\/reduce-cloud-costs-java-applications\/","url":"https:\/\/harshad-sonawane.com\/blog\/reduce-cloud-costs-java-applications\/","name":"How to Reduce Cloud Costs for Your Java Applications - &lt;&gt;HARSHAD&#039;s Dev Diary&lt;\/&gt;","isPartOf":{"@id":"https:\/\/harshad-sonawane.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/harshad-sonawane.com\/blog\/reduce-cloud-costs-java-applications\/#primaryimage"},"image":{"@id":"https:\/\/harshad-sonawane.com\/blog\/reduce-cloud-costs-java-applications\/#primaryimage"},"thumbnailUrl":"https:\/\/harshad-sonawane.com\/blog\/wp-content\/uploads\/2025\/06\/ChatGPT-Image-Jun-1-2025-04_34_50-PM.png","datePublished":"2025-06-14T05:55:00+00:00","description":"Discover practical strategies to reduce cloud costs for Java applications. Learn about right-sizing, serverless, JVM optimization, containerization, and cost monitoring.","breadcrumb":{"@id":"https:\/\/harshad-sonawane.com\/blog\/reduce-cloud-costs-java-applications\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/harshad-sonawane.com\/blog\/reduce-cloud-costs-java-applications\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/harshad-sonawane.com\/blog\/reduce-cloud-costs-java-applications\/#primaryimage","url":"https:\/\/harshad-sonawane.com\/blog\/wp-content\/uploads\/2025\/06\/ChatGPT-Image-Jun-1-2025-04_34_50-PM.png","contentUrl":"https:\/\/harshad-sonawane.com\/blog\/wp-content\/uploads\/2025\/06\/ChatGPT-Image-Jun-1-2025-04_34_50-PM.png","width":1024,"height":1024,"caption":"How to Reduce Cloud Costs for Your Java Applications"},{"@type":"BreadcrumbList","@id":"https:\/\/harshad-sonawane.com\/blog\/reduce-cloud-costs-java-applications\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/harshad-sonawane.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Reduce Cloud Costs for Your Java Applications"}]},{"@type":"WebSite","@id":"https:\/\/harshad-sonawane.com\/blog\/#website","url":"https:\/\/harshad-sonawane.com\/blog\/","name":"Harshad's Dev Diary","description":"HARSHAD&#039;s Dev Diary","publisher":{"@id":"https:\/\/harshad-sonawane.com\/blog\/#\/schema\/person\/d82781218ba30c34fa81b49e8393681e"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/harshad-sonawane.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/harshad-sonawane.com\/blog\/#\/schema\/person\/d82781218ba30c34fa81b49e8393681e","name":"HS","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/harshad-sonawane.com\/blog\/wp-content\/uploads\/2025\/02\/about.jpg","url":"https:\/\/harshad-sonawane.com\/blog\/wp-content\/uploads\/2025\/02\/about.jpg","contentUrl":"https:\/\/harshad-sonawane.com\/blog\/wp-content\/uploads\/2025\/02\/about.jpg","width":400,"height":400,"caption":"HS"},"logo":{"@id":"https:\/\/harshad-sonawane.com\/blog\/wp-content\/uploads\/2025\/02\/about.jpg"},"sameAs":["https:\/\/harshad-sonawane.com\/blog"],"url":"https:\/\/harshad-sonawane.com\/blog\/author\/admin\/"}]}},"jetpack_publicize_connections":[],"_links":{"self":[{"href":"https:\/\/harshad-sonawane.com\/blog\/wp-json\/wp\/v2\/posts\/180","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/harshad-sonawane.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/harshad-sonawane.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/harshad-sonawane.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/harshad-sonawane.com\/blog\/wp-json\/wp\/v2\/comments?post=180"}],"version-history":[{"count":1,"href":"https:\/\/harshad-sonawane.com\/blog\/wp-json\/wp\/v2\/posts\/180\/revisions"}],"predecessor-version":[{"id":182,"href":"https:\/\/harshad-sonawane.com\/blog\/wp-json\/wp\/v2\/posts\/180\/revisions\/182"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/harshad-sonawane.com\/blog\/wp-json\/wp\/v2\/media\/181"}],"wp:attachment":[{"href":"https:\/\/harshad-sonawane.com\/blog\/wp-json\/wp\/v2\/media?parent=180"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/harshad-sonawane.com\/blog\/wp-json\/wp\/v2\/categories?post=180"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/harshad-sonawane.com\/blog\/wp-json\/wp\/v2\/tags?post=180"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}