{"id":75664,"date":"2018-04-05T16:00:30","date_gmt":"2018-04-05T13:00:30","guid":{"rendered":"https:\/\/www.javacodegeeks.com\/?p=75664"},"modified":"2018-04-05T11:36:00","modified_gmt":"2018-04-05T08:36:00","slug":"running-eclipse-microprofile-on-microsoft-azure","status":"publish","type":"post","link":"https:\/\/www.javacodegeeks.com\/2018\/04\/running-eclipse-microprofile-on-microsoft-azure.html","title":{"rendered":"Running Eclipse MicroProfile on Microsoft Azure"},"content":{"rendered":"<p>In this post, I am following up on the post series about <a href=\"http:\/\/www.agilejava.eu\/2018\/03\/22\/running-eclipse-microprofile-on-oracle-cloud\/\">Running Eclipse MicroProfile applications in Oracle Cloud<\/a> by showing how to do it in <a href=\"https:\/\/azure.microsoft.com\/en-us\/services\/app-service\/containers\/\" target=\"_blank\" rel=\"noopener\">Microsoft Azure Web Apps for Containers<\/a>.<\/p>\n<p>I am using the same simple application called <a href=\"https:\/\/github.com\/ivargrimstad\/cloudee-duke\" target=\"_blank\" rel=\"noopener\">CloudEE Duke<\/a> as in the previous posts. The only difference is that I now package the applications as Docker Images. In this example, I show how to use the <a href=\"https:\/\/fabric8.io\/\" target=\"_blank\" rel=\"noopener\">fabric8<\/a> Maven Plugin to produce a docker image for <a href=\"http:\/\/wildfly-swarm.io\/\" target=\"_blank\" rel=\"noopener\">WildFly Swarm<\/a>.<\/p>\n<pre class=\"brush:xml;wrap-lines:false\">&lt;plugin&gt;\r\n    &lt;groupId&gt;io.fabric8&lt;\/groupId&gt;\r\n    &lt;artifactId&gt;docker-maven-plugin&lt;\/artifactId&gt;\r\n    &lt;version&gt;${version.docker-maven-plugin}&lt;\/version&gt;\r\n    &lt;configuration&gt;\r\n        &lt;images&gt;\r\n            &lt;image&gt;\r\n                &lt;alias&gt;${project.artifactid}&lt;\/alias&gt;\r\n                &lt;name&gt;ivargrimstad\/${project.artifactId}:swarm&lt;\/name&gt;\r\n                &lt;build&gt;\r\n                    &lt;maintainer&gt;Ivar Grimstad (ivar.grimstad@gmail.com)&lt;\/maintainer&gt;\r\n                    &lt;from&gt;jboss\/base-jdk:8&lt;\/from&gt;\r\n                    &lt;assembly&gt;\r\n                        &lt;basedir&gt;\/&lt;\/basedir&gt;\r\n                        &lt;inline&gt;\r\n                            &lt;files&gt;\r\n                                &lt;file&gt;\r\n                                    &lt;source&gt;${project.build.directory}\/${project.build.finalName}-hollow-swarm.jar&lt;\/source&gt;\r\n                                    &lt;outputDirectory&gt;\/opt&lt;\/outputDirectory&gt;\r\n                                &lt;\/file&gt;\r\n                                &lt;file&gt;\r\n                                    &lt;source&gt;${project.build.directory}\/${project.build.finalName}.war&lt;\/source&gt;\r\n                                    &lt;outputDirectory&gt;\/opt&lt;\/outputDirectory&gt;\r\n                                &lt;\/file&gt;\r\n                            &lt;\/files&gt;\r\n                        &lt;\/inline&gt;                                   \r\n                    &lt;\/assembly&gt;       \r\n                    &lt;entryPoint&gt;\r\n                        &lt;arg&gt;java&lt;\/arg&gt;\r\n                        &lt;arg&gt;-Djava.net.preferIPv4Stack=true&lt;\/arg&gt;\r\n                        &lt;arg&gt;-jar&lt;\/arg&gt;\r\n                        &lt;arg&gt;\/opt\/${project.build.finalName}-hollow-swarm.jar&lt;\/arg&gt;  \r\n                        &lt;arg&gt;\/opt\/${project.build.finalName}.war&lt;\/arg&gt;  \r\n                    &lt;\/entryPoint&gt;\r\n                &lt;\/build&gt;\r\n            &lt;\/image&gt;\r\n        &lt;\/images&gt;\r\n    &lt;\/configuration&gt;\r\n    &lt;executions&gt;\r\n        &lt;execution&gt;\r\n            &lt;phase&gt;package&lt;\/phase&gt;\r\n            &lt;goals&gt;\r\n                &lt;goal&gt;build&lt;\/goal&gt;\r\n            &lt;\/goals&gt;\r\n        &lt;\/execution&gt;\r\n    &lt;\/executions&gt;\r\n&lt;\/plugin&gt;\r\n<\/pre>\n<p>The configuration is similar for the other Eclipse MicroProfile implementations. See the full <a href=\"https:\/\/github.com\/ivargrimstad\/cloudee-duke\/blob\/master\/pom.xml\" target=\"_blank\" rel=\"noopener\">pom.xml<\/a> for examples. To produce the docker image for the WildFly Swarm implementation of CloudEE Duke, use the following command:<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:bash\"> mvn clean package docker:build -Pswarm<\/pre>\n<p>Once the image is produced, you need to publish it to a container registry. In my case I simply push it to my public <a href=\"https:\/\/hub.docker.com\/r\/ivargrimstad\/cloudee-duke\/\" target=\"_blank\" rel=\"noopener\">Docker Hub<\/a>.<\/p>\n<p>In order to deploy the CloudEE Duke application in Microsoft Azure, log in to your <a href=\"https:\/\/portal.azure.com\" target=\"_blank\" rel=\"noopener\">Azure Portal<\/a>\u00a0and create a new Web App for Containers as shown below.<\/p>\n<p><a href=\"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2018\/04\/cloudee-duke-swarm-azure.png\"><img decoding=\"async\" class=\"aligncenter wp-image-75678\" src=\"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2018\/04\/cloudee-duke-swarm-azure.png\" alt=\"\" width=\"861\" height=\"436\" srcset=\"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2018\/04\/cloudee-duke-swarm-azure.png 898w, https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2018\/04\/cloudee-duke-swarm-azure-300x152.png 300w, https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2018\/04\/cloudee-duke-swarm-azure-768x389.png 768w\" sizes=\"(max-width: 861px) 100vw, 861px\" \/><\/a><\/p>\n<p>Since WildFly Swarm runs on port 8080 by default (and I am using all defaults here), the port number for the application needs to be configured. This can be done either in the UI, or using Cloud Shell as shown here:<\/p>\n<p><a href=\"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2018\/04\/cloudshell-azure-swarm-1.png\"><img decoding=\"async\" class=\"aligncenter wp-image-75679\" src=\"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2018\/04\/cloudshell-azure-swarm-1.png\" alt=\"\" width=\"860\" height=\"136\" srcset=\"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2018\/04\/cloudshell-azure-swarm-1.png 1787w, https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2018\/04\/cloudshell-azure-swarm-1-300x48.png 300w, https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2018\/04\/cloudshell-azure-swarm-1-768x122.png 768w, https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2018\/04\/cloudshell-azure-swarm-1-1024x162.png 1024w\" sizes=\"(max-width: 860px) 100vw, 860px\" \/><\/a><\/p>\n<p>When your application is deployed, you should be able to access the hello endpoint.<\/p>\n<p><code>https:\/\/cloudee-duke-swarm.azurewebsites.net\/hello<\/code><br \/>\nDuke says Hello!<\/p>\n<p><code>https:\/\/cloudee-duke-swarm.azurewebsites.net\/health<\/code><\/p>\n<pre class=\"brush:bash\">{\r\noutcome: \u201cUP\u201d,\r\nchecks: [ ]\r\n}\r\n<\/pre>\n<p><code>https:\/\/cloudee-duke-swarm.azurewebsites.net\/metrics<\/code><\/p>\n<pre class=\"brush:bash\"># HELP base:classloader_total_loaded_class_count Displays the total number of classes that have been loaded since the Java virtual machine has started execution.\r\n# TYPE base:classloader_total_loaded_class_count counter\r\nbase:classloader_total_loaded_class_count 13697.0\r\n<\/pre>\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td>Published on Java Code Geeks with permission by Ivar Grimstad, partner at our <a href=\"\/\/www.javacodegeeks.com\/join-us\/jcg\/\" target=\"_blank\" rel=\"noopener\">JCG program<\/a>. See the original article here: <a href=\"http:\/\/www.agilejava.eu\/2018\/04\/04\/running-eclipse-microprofile-on-microsoft-azure\/\" target=\"_blank\" rel=\"noopener\">Running Eclipse MicroProfile on Microsoft Azure<\/a><\/p>\n<p>Opinions expressed by Java Code Geeks contributors are their own.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this post, I am following up on the post series about Running Eclipse MicroProfile applications in Oracle Cloud by showing how to do it in Microsoft Azure Web Apps for Containers. I am using the same simple application called CloudEE Duke as in the previous posts. The only difference is that I now package &hellip;<\/p>\n","protected":false},"author":1003,"featured_media":112,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[1352,210,936,29,1730,1219,670,1731,1408,1645],"class_list":["post-75664","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-enterprise-java","tag-azure","tag-cloud","tag-docker","tag-eclipse","tag-jakarta-ee","tag-java-ee","tag-maven","tag-microprofile","tag-microsoft-azure","tag-wildfly-swarm"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Running Eclipse MicroProfile on Microsoft Azure - Java Code Geeks<\/title>\n<meta name=\"description\" content=\"In this post, I am following up on the post series about Running Eclipse MicroProfile applications in Oracle Cloud by showing how to do it in Microsoft\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.javacodegeeks.com\/2018\/04\/running-eclipse-microprofile-on-microsoft-azure.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Running Eclipse MicroProfile on Microsoft Azure - Java Code Geeks\" \/>\n<meta property=\"og:description\" content=\"In this post, I am following up on the post series about Running Eclipse MicroProfile applications in Oracle Cloud by showing how to do it in Microsoft\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.javacodegeeks.com\/2018\/04\/running-eclipse-microprofile-on-microsoft-azure.html\" \/>\n<meta property=\"og:site_name\" content=\"Java Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/javacodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2018-04-05T13:00:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/enterprise-java-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=\"Ivar Grimstad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ivar_grimstad\" \/>\n<meta name=\"twitter:site\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ivar Grimstad\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/running-eclipse-microprofile-on-microsoft-azure.html#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/running-eclipse-microprofile-on-microsoft-azure.html\"},\"author\":{\"name\":\"Ivar Grimstad\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/person\\\/de9163657131da34a3936edf22427d7c\"},\"headline\":\"Running Eclipse MicroProfile on Microsoft Azure\",\"datePublished\":\"2018-04-05T13:00:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/running-eclipse-microprofile-on-microsoft-azure.html\"},\"wordCount\":267,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/running-eclipse-microprofile-on-microsoft-azure.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/enterprise-java-logo.jpg\",\"keywords\":[\"azure\",\"Cloud\",\"Docker\",\"Eclipse\",\"Jakarta EE\",\"Java EE\",\"Maven\",\"MicroProfile\",\"MicroSoft Azure\",\"Wildfly swarm\"],\"articleSection\":[\"Enterprise Java\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/running-eclipse-microprofile-on-microsoft-azure.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/running-eclipse-microprofile-on-microsoft-azure.html\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/running-eclipse-microprofile-on-microsoft-azure.html\",\"name\":\"Running Eclipse MicroProfile on Microsoft Azure - Java Code Geeks\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/running-eclipse-microprofile-on-microsoft-azure.html#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/running-eclipse-microprofile-on-microsoft-azure.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/enterprise-java-logo.jpg\",\"datePublished\":\"2018-04-05T13:00:30+00:00\",\"description\":\"In this post, I am following up on the post series about Running Eclipse MicroProfile applications in Oracle Cloud by showing how to do it in Microsoft\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/running-eclipse-microprofile-on-microsoft-azure.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/running-eclipse-microprofile-on-microsoft-azure.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/running-eclipse-microprofile-on-microsoft-azure.html#primaryimage\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/enterprise-java-logo.jpg\",\"contentUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/enterprise-java-logo.jpg\",\"width\":150,\"height\":150,\"caption\":\"java-interview-questions-answers\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2018\\\/04\\\/running-eclipse-microprofile-on-microsoft-azure.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\":\"Running Eclipse MicroProfile on Microsoft Azure\"}]},{\"@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\\\/de9163657131da34a3936edf22427d7c\",\"name\":\"Ivar Grimstad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9b10c13526c1d5323e99ee9ea95d78da6e1b51e29789cb508e3512dd55f0543c?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9b10c13526c1d5323e99ee9ea95d78da6e1b51e29789cb508e3512dd55f0543c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9b10c13526c1d5323e99ee9ea95d78da6e1b51e29789cb508e3512dd55f0543c?s=96&d=mm&r=g\",\"caption\":\"Ivar Grimstad\"},\"description\":\"Ivar Grimstad is an experienced software architect focusing on Enterprise Java. He is participating in the Java Community Process as a member of the Expert Groups for JSR 368 (JMS 2.1), JSR 371 (MVC 1.0), JSR 375 (Java EE Security API). He is also a member of the NetBeans Dream Team.\",\"sameAs\":[\"http:\\\/\\\/www.agilejava.eu\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/ivargrimstad\",\"https:\\\/\\\/x.com\\\/ivar_grimstad\"],\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/author\\\/ivar-grimstad\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Running Eclipse MicroProfile on Microsoft Azure - Java Code Geeks","description":"In this post, I am following up on the post series about Running Eclipse MicroProfile applications in Oracle Cloud by showing how to do it in Microsoft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.javacodegeeks.com\/2018\/04\/running-eclipse-microprofile-on-microsoft-azure.html","og_locale":"en_US","og_type":"article","og_title":"Running Eclipse MicroProfile on Microsoft Azure - Java Code Geeks","og_description":"In this post, I am following up on the post series about Running Eclipse MicroProfile applications in Oracle Cloud by showing how to do it in Microsoft","og_url":"https:\/\/www.javacodegeeks.com\/2018\/04\/running-eclipse-microprofile-on-microsoft-azure.html","og_site_name":"Java Code Geeks","article_publisher":"https:\/\/www.facebook.com\/javacodegeeks","article_published_time":"2018-04-05T13:00:30+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/enterprise-java-logo.jpg","type":"image\/jpeg"}],"author":"Ivar Grimstad","twitter_card":"summary_large_image","twitter_creator":"@ivar_grimstad","twitter_site":"@javacodegeeks","twitter_misc":{"Written by":"Ivar Grimstad","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/running-eclipse-microprofile-on-microsoft-azure.html#article","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/running-eclipse-microprofile-on-microsoft-azure.html"},"author":{"name":"Ivar Grimstad","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/person\/de9163657131da34a3936edf22427d7c"},"headline":"Running Eclipse MicroProfile on Microsoft Azure","datePublished":"2018-04-05T13:00:30+00:00","mainEntityOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/running-eclipse-microprofile-on-microsoft-azure.html"},"wordCount":267,"commentCount":0,"publisher":{"@id":"https:\/\/www.javacodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/running-eclipse-microprofile-on-microsoft-azure.html#primaryimage"},"thumbnailUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/enterprise-java-logo.jpg","keywords":["azure","Cloud","Docker","Eclipse","Jakarta EE","Java EE","Maven","MicroProfile","MicroSoft Azure","Wildfly swarm"],"articleSection":["Enterprise Java"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.javacodegeeks.com\/2018\/04\/running-eclipse-microprofile-on-microsoft-azure.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/running-eclipse-microprofile-on-microsoft-azure.html","url":"https:\/\/www.javacodegeeks.com\/2018\/04\/running-eclipse-microprofile-on-microsoft-azure.html","name":"Running Eclipse MicroProfile on Microsoft Azure - Java Code Geeks","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/running-eclipse-microprofile-on-microsoft-azure.html#primaryimage"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/running-eclipse-microprofile-on-microsoft-azure.html#primaryimage"},"thumbnailUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/enterprise-java-logo.jpg","datePublished":"2018-04-05T13:00:30+00:00","description":"In this post, I am following up on the post series about Running Eclipse MicroProfile applications in Oracle Cloud by showing how to do it in Microsoft","breadcrumb":{"@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/running-eclipse-microprofile-on-microsoft-azure.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.javacodegeeks.com\/2018\/04\/running-eclipse-microprofile-on-microsoft-azure.html"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/running-eclipse-microprofile-on-microsoft-azure.html#primaryimage","url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/enterprise-java-logo.jpg","contentUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/enterprise-java-logo.jpg","width":150,"height":150,"caption":"java-interview-questions-answers"},{"@type":"BreadcrumbList","@id":"https:\/\/www.javacodegeeks.com\/2018\/04\/running-eclipse-microprofile-on-microsoft-azure.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":"Running Eclipse MicroProfile on Microsoft Azure"}]},{"@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\/de9163657131da34a3936edf22427d7c","name":"Ivar Grimstad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9b10c13526c1d5323e99ee9ea95d78da6e1b51e29789cb508e3512dd55f0543c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/9b10c13526c1d5323e99ee9ea95d78da6e1b51e29789cb508e3512dd55f0543c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9b10c13526c1d5323e99ee9ea95d78da6e1b51e29789cb508e3512dd55f0543c?s=96&d=mm&r=g","caption":"Ivar Grimstad"},"description":"Ivar Grimstad is an experienced software architect focusing on Enterprise Java. He is participating in the Java Community Process as a member of the Expert Groups for JSR 368 (JMS 2.1), JSR 371 (MVC 1.0), JSR 375 (Java EE Security API). He is also a member of the NetBeans Dream Team.","sameAs":["http:\/\/www.agilejava.eu\/","https:\/\/www.linkedin.com\/in\/ivargrimstad","https:\/\/x.com\/ivar_grimstad"],"url":"https:\/\/www.javacodegeeks.com\/author\/ivar-grimstad"}]}},"_links":{"self":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/75664","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\/1003"}],"replies":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/comments?post=75664"}],"version-history":[{"count":0,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/75664\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media\/112"}],"wp:attachment":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media?parent=75664"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/categories?post=75664"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/tags?post=75664"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}