{"id":15905,"date":"2017-04-06T11:50:51","date_gmt":"2017-04-06T06:20:51","guid":{"rendered":"http:\/\/www.fusioncharts.com\/blog\/?p=15905"},"modified":"2026-01-20T14:42:20","modified_gmt":"2026-01-20T09:12:20","slug":"create-charts-using-fusioncharts-and-jetty-server","status":"publish","type":"post","link":"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/","title":{"rendered":"Create Charts Using FusionCharts and Jetty Server 2026"},"content":{"rendered":"<p><strong>Jetty<\/strong> is an HTTP based web server, which can be used to communicate between machines in large software frameworks. Jetty is an open source server under Apache\/Eclipse license. An easy to use server which can be easily embedded in devices, tools, frameworks and application servers.<\/p>\n<p>This tutorial showcases how you can render charts using FusionCharts and Jetty Server.<\/p>\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_71 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\"><p class=\"ez-toc-title\" style=\"cursor:inherit\">Table of Contents<\/p>\n<\/div><nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#System_requirements\" title=\"System requirements\">System requirements<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#Install_Jetty_Server\" title=\"Install Jetty Server\">Install Jetty Server<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#Configure_the_Application\" title=\"Configure the Application\">Configure the Application<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#Creating_Chart_Object\" title=\"Creating Chart Object\">Creating Chart Object<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-5\" href=\"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#Rendering_the_Chart\" title=\"Rendering the Chart\">Rendering the Chart<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-6\" href=\"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#Was_There_a_Problem_Rendering_Charts\" title=\"Was There a Problem Rendering Charts?\">Was There a Problem Rendering Charts?<\/a><\/li><\/ul><\/nav><\/div>\n<h2><span class=\"ez-toc-section\" id=\"System_requirements\"><\/span>System requirements<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>To start rendering charts using Jetty server, you need to make sure that you have the following components downloaded on your local machine:<\/p>\n<ul>\n<li>FusionCharts Suite XT [<a href=\"https:\/\/www.fusioncharts.com\/download\/\" target=\"_blank\" rel=\"noopener noreferrer\">Download Link<\/a>]<\/li>\n<li>FusionCharts JSP Wrapper [<a href=\"https:\/\/www.fusioncharts.com\/dev\/getting-started\/java\/your-first-chart-using-java\" target=\"_blank\" rel=\"noopener noreferrer\">Download Link<\/a>]<\/li>\n<li>Jetty Server [<a href=\"https:\/\/www.eclipse.org\/jetty\/download.html\" target=\"_blank\" rel=\"noopener noreferrer\">Download Link<\/a>]<\/li>\n<\/ul>\n<h2><span class=\"ez-toc-section\" id=\"Install_Jetty_Server\"><\/span>Install Jetty Server<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>To start your jetty server, install it from the terminal using the following command:<\/p>\n<pre class=\"lang:powershell\">java -jar start.jar<\/pre>\n<p><strong>Note:<\/strong><\/p>\n<ul>\n<li>If using Netbeans, download the plugins to work with jetty server<\/li>\n<li>If using Eclipse IDE, download the <a href=\"https:\/\/marketplace.eclipse.org\/content\/eclipse-jetty#group-details\" target=\"_blank\" rel=\"noopener noreferrer\">plugins<\/a> to work with jetty server<\/li>\n<\/ul>\n<h2><span class=\"ez-toc-section\" id=\"Configure_the_Application\"><\/span>Configure the Application<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>Follow the steps given below to create and configure the jetty server: <\/p>\n<ul>\n<li>Open IDE and select <strong>New Project<\/strong><\/li>\n<li>Create a Java Web application and click next<\/li>\n<li>Select your server and click next<\/li>\n<\/ul>\n<h2><span class=\"ez-toc-section\" id=\"Creating_Chart_Object\"><\/span>Creating Chart Object<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>To create charts using Fusioncharts in jetty server, include JSP wrapper into the source package. Once done add the following line of codes in your <strong>index.jsp<\/strong> page:<\/p>\n<p><strong>Note:<\/strong> Don\u2019t forget to include the fusioncharts library files to your working folder.<\/p>\n<pre class=\"lang:java\">&lt; %-- \r\n    Document   : fusioncharts jsp file\r\n    Author     : fusioncharts\r\n--%&gt;\r\n\r\n    &lt; %@page contentType=\"text\/html\" pageEncoding=\"UTF-8\"%&gt;\r\n        &lt; !DOCTYPE html&gt;\r\n        &lt;html&gt;\r\n\r\n        &lt;head&gt;\r\n            &lt;title&gt;Loading Data from a Static JSON String - fusioncharts.com&lt;\/title&gt;\r\n            &lt;!-- Step 1: Include the `fusioncharts.js` file. This file is needed to\r\n        render the chart. Ensure that the path to this JS file is correct.\r\n        Otherwise, it may lead to JavaScript errors.\r\n--&gt;\r\n            &lt;script src=\"fusioncharts.js\"&gt;&lt;\/script&gt;\r\n            &lt;script src=\"fusioncharts.theme.fint.js\"&gt;&lt;\/script&gt;\r\n        &lt;\/head&gt;\r\n\r\n        &lt;body&gt;\r\n            &lt;div id=\"chart\"&gt;&lt;\/div&gt;\r\n\r\n            &lt;!--    Step 2: Include the `FusionCharts.java` file as a package in your \r\n        project.\r\n--&gt;\r\n            &lt; %@page import=\"fusioncharts.FusionCharts\" %&gt;\r\n\r\n                &lt;!--    Step 3:Include the package in the file where you want to show \r\n        FusionCharts as follows.\r\n        \r\n        Step 4: Create a chart object using the FusionCharts JAVA class \r\n        constructor. Syntax for the constructor: \r\n        `FusionCharts(\"type of chart\", \"unique chart id\", \"width of chart\",\r\n                        \"height of chart\", \"div id to render the chart\", \r\n                        \"data format\", \"data source\")`   \r\n--&gt;\r\n\r\n                &lt; %\r\n        FusionCharts column2dChart = new FusionCharts(\r\n                    \"Column2D\",\/\/ chartType\r\n                    \"myFirstChart\",\/\/ chartId\r\n                    \"600\",\"400\",\/\/ chartWidth, chartHeight\r\n                    \"chart\",\/\/ chartContainer\r\n                    \"json\",\/\/ dataFormat\r\n                    \"{\\\"chart\\\": {\\\"caption\\\": \\\"Harry\\'s SuperMart - Top 5 Stores' Revenue\\\", \\\"subCaption\\\": \\\"Last Year\\\", \\\"numberPrefix\\\": \\\"$\\\", \\\"rotatevalues\\\": \\\"0\\\", \\\"plotToolText\\\": \\\"&lt;div&gt;&lt;b&gt;$label&lt;\/b&gt;&lt;br \/&gt;Sales : &lt;b&gt;$$value&lt;\/b&gt;\\\", \\\"theme\\\": \\\"fint\\\"}, \\\"data\\\": [{\\\"label\\\": \\\"Bakersfield Central\\\", \\\"value\\\": \\\"880000\\\"}, {\\\"label\\\": \\\"Garden Groove harbour\\\", \\\"value\\\": \\\"730000\\\"}, {\\\"label\\\": \\\"Los Angeles Topanga\\\", \\\"value\\\": \\\"590000\\\"}, {\\\"label\\\": \\\"Compton-Rancho Dom\\\", \\\"value\\\": \\\"520000\\\"}, {\\\"label\\\": \\\"Daly City Serramonte\\\", \\\"value\\\": \\\"330000\\\"}] }\"\r\n                );\r\n        \r\n        %&gt;\r\n                    &lt;!--    Step 5: Render the chart    --&gt;\r\n                    &lt; %=column2dChart.render()%&gt;\r\n\r\n        &lt;\/body&gt;\r\n\r\n        &lt;\/html&gt;<\/pre>\n<h2><span class=\"ez-toc-section\" id=\"Rendering_the_Chart\"><\/span>Rendering the Chart<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>Now, you are ready to render FusionCharts using jetty server. Press <strong>CTRL + f5<\/strong> to run and check the output of the chart as shown in image below:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/blog\/2017\/04\/charts-in-fusioncharts-using-jetty-server.png\" alt=\"\" width=\"623\" height=\"488\" class=\"alignnone size-full wp-image-15910\" srcset=\"\/blog\/wp-content\/uploads\/2017\/04\/charts-in-fusioncharts-using-jetty-server.png 623w, \/blog\/wp-content\/uploads\/2017\/04\/charts-in-fusioncharts-using-jetty-server-150x117.png 150w\" sizes=\"auto, (max-width: 623px) 100vw, 623px\" \/><\/p>\n<p>If you find any difficulty in rendering the chart or you see any error in your code, click <a href=\"https:\/\/www.dropbox.com\/s\/si01uxnkgb8cnua\/fusioncharts_jettyserver.zip?dl=0\" target=\"_blank\" rel=\"noopener noreferrer\">here<\/a> to download the complete source code of the sample project we have created for this tutorial.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Was_There_a_Problem_Rendering_Charts\"><\/span>Was There a Problem Rendering Charts?<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>In case something went wrong and you are unable to see the chart, check for the following:<\/p>\n<ul>\n<li>The chart ID should be unique for all charts rendered on the same page. Otherwise, it will result in a JavaScript error.<\/li>\n<li>If the chart does not show up at all, check if the <b>fusioncharts.js<\/b> and fusioncharts wrapper <b>FusionCharts.java<\/b> was loaded. Also, check if the path to fusioncharts.js and FusionCharts.java file is correct, and whether the file exists in that location.<\/li>\n<\/ul>\n<ul>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Jetty is an HTTP based web server, which can be used to communicate between machines in large software frameworks. Jetty is an open source server under Apache\/Eclipse license. An easy to use server which can be easily embedded in devices, tools, frameworks and application servers. This tutorial showcases how you can render charts using FusionCharts [&hellip;]<\/p>\n","protected":false},"author":33,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[18],"tags":[152,660,661,659,662],"coauthors":[648,647],"class_list":["post-15905","post","type-post","status-publish","format-standard","hentry","category-tutorials","tag-fusioncharts","tag-fusioncharts-using-jetty-server","tag-ide","tag-jetty-server","tag-jsp-wrapper"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create Charts Using FusionCharts and Jetty Server 2026<\/title>\n<meta name=\"description\" content=\"Use Jetty server to communicate between machines in 2026. Learn how to integrate this open-source server with your large software frameworks right today.\" \/>\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.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create Charts Using FusionCharts and Jetty Server 2026\" \/>\n<meta property=\"og:description\" content=\"Use Jetty server to communicate between machines in 2026. Learn how to integrate this open-source server with your large software frameworks right today.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/\" \/>\n<meta property=\"og:site_name\" content=\"FusionBrew - The FusionCharts Blog\" \/>\n<meta property=\"article:published_time\" content=\"2017-04-06T06:20:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-20T09:12:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2017\/04\/charts-in-fusioncharts-using-jetty-server.png\" \/>\n\t<meta property=\"og:image:width\" content=\"623\" \/>\n\t<meta property=\"og:image:height\" content=\"488\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ayan Bhadury, Dishank Tiwari\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ayan Bhadury, Dishank Tiwari\" \/>\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\">{\n\t    \"@context\": \"https:\/\/schema.org\",\n\t    \"@graph\": [\n\t        {\n\t            \"@type\": \"Article\",\n\t            \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#article\",\n\t            \"isPartOf\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/\"\n\t            },\n\t            \"author\": {\n\t                \"name\": \"Ayan Bhadury\",\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/person\/24e8946ae2b802e172aa5964689ca243\"\n\t            },\n\t            \"headline\": \"Create Charts Using FusionCharts and Jetty Server 2026\",\n\t            \"datePublished\": \"2017-04-06T06:20:51+00:00\",\n\t            \"dateModified\": \"2026-01-20T09:12:20+00:00\",\n\t            \"mainEntityOfPage\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/\"\n\t            },\n\t            \"wordCount\": 379,\n\t            \"commentCount\": 1,\n\t            \"publisher\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#organization\"\n\t            },\n\t            \"image\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#primaryimage\"\n\t            },\n\t            \"thumbnailUrl\": \"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/blog\/2017\/04\/charts-in-fusioncharts-using-jetty-server.png\",\n\t            \"keywords\": [\n\t                \"FusionCharts\",\n\t                \"fusioncharts using jetty server\",\n\t                \"IDE\",\n\t                \"jetty server\",\n\t                \"JSP wrapper\"\n\t            ],\n\t            \"articleSection\": [\n\t                \"Tutorials\"\n\t            ],\n\t            \"inLanguage\": \"en-US\",\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"CommentAction\",\n\t                    \"name\": \"Comment\",\n\t                    \"target\": [\n\t                        \"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#respond\"\n\t                    ]\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"WebPage\",\n\t            \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/\",\n\t            \"url\": \"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/\",\n\t            \"name\": \"Create Charts Using FusionCharts and Jetty Server 2026\",\n\t            \"isPartOf\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#website\"\n\t            },\n\t            \"primaryImageOfPage\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#primaryimage\"\n\t            },\n\t            \"image\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#primaryimage\"\n\t            },\n\t            \"thumbnailUrl\": \"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/blog\/2017\/04\/charts-in-fusioncharts-using-jetty-server.png\",\n\t            \"datePublished\": \"2017-04-06T06:20:51+00:00\",\n\t            \"dateModified\": \"2026-01-20T09:12:20+00:00\",\n\t            \"description\": \"Use Jetty server to communicate between machines in 2026. Learn how to integrate this open-source server with your large software frameworks right today.\",\n\t            \"breadcrumb\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#breadcrumb\"\n\t            },\n\t            \"inLanguage\": \"en-US\",\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"ReadAction\",\n\t                    \"target\": [\n\t                        \"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/\"\n\t                    ]\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"ImageObject\",\n\t            \"inLanguage\": \"en-US\",\n\t            \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#primaryimage\",\n\t            \"url\": \"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/blog\/2017\/04\/charts-in-fusioncharts-using-jetty-server.png\",\n\t            \"contentUrl\": \"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/blog\/2017\/04\/charts-in-fusioncharts-using-jetty-server.png\"\n\t        },\n\t        {\n\t            \"@type\": \"BreadcrumbList\",\n\t            \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#breadcrumb\",\n\t            \"itemListElement\": [\n\t                {\n\t                    \"@type\": \"ListItem\",\n\t                    \"position\": 1,\n\t                    \"name\": \"Home\",\n\t                    \"item\": \"https:\/\/www.fusioncharts.com\/blog\/\"\n\t                },\n\t                {\n\t                    \"@type\": \"ListItem\",\n\t                    \"position\": 2,\n\t                    \"name\": \"Create Charts Using FusionCharts and Jetty Server 2026\"\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"WebSite\",\n\t            \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#website\",\n\t            \"url\": \"https:\/\/www.fusioncharts.com\/blog\/\",\n\t            \"name\": \"FusionBrew - The FusionCharts Blog\",\n\t            \"description\": \"Get tips and tricks on how to build effective Data Visualisation using FusionCharts\",\n\t            \"publisher\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#organization\"\n\t            },\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"SearchAction\",\n\t                    \"target\": {\n\t                        \"@type\": \"EntryPoint\",\n\t                        \"urlTemplate\": \"https:\/\/www.fusioncharts.com\/blog\/?s={search_term_string}\"\n\t                    },\n\t                    \"query-input\": {\n\t                        \"@type\": \"PropertyValueSpecification\",\n\t                        \"valueRequired\": true,\n\t                        \"valueName\": \"search_term_string\"\n\t                    }\n\t                }\n\t            ],\n\t            \"inLanguage\": \"en-US\"\n\t        },\n\t        {\n\t            \"@type\": \"Organization\",\n\t            \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#organization\",\n\t            \"name\": \"FusionCharts\",\n\t            \"url\": \"https:\/\/www.fusioncharts.com\/blog\/\",\n\t            \"logo\": {\n\t                \"@type\": \"ImageObject\",\n\t                \"inLanguage\": \"en-US\",\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/logo\/image\/\",\n\t                \"url\": \"\/blog\/wp-content\/uploads\/2020\/03\/idera-fc-logo.svg\",\n\t                \"contentUrl\": \"\/blog\/wp-content\/uploads\/2020\/03\/idera-fc-logo.svg\",\n\t                \"width\": 1,\n\t                \"height\": 1,\n\t                \"caption\": \"FusionCharts\"\n\t            },\n\t            \"image\": {\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/logo\/image\/\"\n\t            }\n\t        },\n\t        {\n\t            \"@type\": \"Person\",\n\t            \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/person\/24e8946ae2b802e172aa5964689ca243\",\n\t            \"name\": \"Ayan Bhadury\",\n\t            \"image\": {\n\t                \"@type\": \"ImageObject\",\n\t                \"inLanguage\": \"en-US\",\n\t                \"@id\": \"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/person\/image\/e8b4bd366bf824e42027140489ad1ba6\",\n\t                \"url\": \"\/blog\/wp-content\/wphb-cache\/gravatar\/017\/017a9628c57694af5b4b3dcf5924840ex96.jpg\",\n\t                \"contentUrl\": \"\/blog\/wp-content\/wphb-cache\/gravatar\/017\/017a9628c57694af5b4b3dcf5924840ex96.jpg\",\n\t                \"caption\": \"Ayan Bhadury\"\n\t            },\n\t            \"url\": \"https:\/\/www.fusioncharts.com\/blog\/author\/ayan-bhadury\/\"\n\t        }\n\t    ]\n\t}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create Charts Using FusionCharts and Jetty Server 2026","description":"Use Jetty server to communicate between machines in 2026. Learn how to integrate this open-source server with your large software frameworks right today.","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.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/","og_locale":"en_US","og_type":"article","og_title":"Create Charts Using FusionCharts and Jetty Server 2026","og_description":"Use Jetty server to communicate between machines in 2026. Learn how to integrate this open-source server with your large software frameworks right today.","og_url":"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/","og_site_name":"FusionBrew - The FusionCharts Blog","article_published_time":"2017-04-06T06:20:51+00:00","article_modified_time":"2026-01-20T09:12:20+00:00","og_image":[{"width":623,"height":488,"url":"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/2017\/04\/charts-in-fusioncharts-using-jetty-server.png","type":"image\/png"}],"author":"Ayan Bhadury, Dishank Tiwari","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ayan Bhadury, Dishank Tiwari","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#article","isPartOf":{"@id":"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/"},"author":{"name":"Ayan Bhadury","@id":"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/person\/24e8946ae2b802e172aa5964689ca243"},"headline":"Create Charts Using FusionCharts and Jetty Server 2026","datePublished":"2017-04-06T06:20:51+00:00","dateModified":"2026-01-20T09:12:20+00:00","mainEntityOfPage":{"@id":"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/"},"wordCount":379,"commentCount":1,"publisher":{"@id":"https:\/\/www.fusioncharts.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/blog\/2017\/04\/charts-in-fusioncharts-using-jetty-server.png","keywords":["FusionCharts","fusioncharts using jetty server","IDE","jetty server","JSP wrapper"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/","url":"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/","name":"Create Charts Using FusionCharts and Jetty Server 2026","isPartOf":{"@id":"https:\/\/www.fusioncharts.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#primaryimage"},"image":{"@id":"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/blog\/2017\/04\/charts-in-fusioncharts-using-jetty-server.png","datePublished":"2017-04-06T06:20:51+00:00","dateModified":"2026-01-20T09:12:20+00:00","description":"Use Jetty server to communicate between machines in 2026. Learn how to integrate this open-source server with your large software frameworks right today.","breadcrumb":{"@id":"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#primaryimage","url":"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/blog\/2017\/04\/charts-in-fusioncharts-using-jetty-server.png","contentUrl":"https:\/\/www.fusioncharts.com\/blog\/wp-content\/uploads\/gallery\/blog\/2017\/04\/charts-in-fusioncharts-using-jetty-server.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.fusioncharts.com\/blog\/create-charts-using-fusioncharts-and-jetty-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.fusioncharts.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Create Charts Using FusionCharts and Jetty Server 2026"}]},{"@type":"WebSite","@id":"https:\/\/www.fusioncharts.com\/blog\/#website","url":"https:\/\/www.fusioncharts.com\/blog\/","name":"FusionBrew - The FusionCharts Blog","description":"Get tips and tricks on how to build effective Data Visualisation using FusionCharts","publisher":{"@id":"https:\/\/www.fusioncharts.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.fusioncharts.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.fusioncharts.com\/blog\/#organization","name":"FusionCharts","url":"https:\/\/www.fusioncharts.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/logo\/image\/","url":"\/blog\/wp-content\/uploads\/2020\/03\/idera-fc-logo.svg","contentUrl":"\/blog\/wp-content\/uploads\/2020\/03\/idera-fc-logo.svg","width":1,"height":1,"caption":"FusionCharts"},"image":{"@id":"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/person\/24e8946ae2b802e172aa5964689ca243","name":"Ayan Bhadury","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fusioncharts.com\/blog\/#\/schema\/person\/image\/e8b4bd366bf824e42027140489ad1ba6","url":"\/blog\/wp-content\/wphb-cache\/gravatar\/017\/017a9628c57694af5b4b3dcf5924840ex96.jpg","contentUrl":"\/blog\/wp-content\/wphb-cache\/gravatar\/017\/017a9628c57694af5b4b3dcf5924840ex96.jpg","caption":"Ayan Bhadury"},"url":"https:\/\/www.fusioncharts.com\/blog\/author\/ayan-bhadury\/"}]}},"_links":{"self":[{"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/posts\/15905","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/users\/33"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/comments?post=15905"}],"version-history":[{"count":0,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/posts\/15905\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/media?parent=15905"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/categories?post=15905"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/tags?post=15905"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.fusioncharts.com\/blog\/wp-json\/wp\/v2\/coauthors?post=15905"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}