{"id":275,"date":"2022-09-12T05:01:53","date_gmt":"2022-09-12T05:01:53","guid":{"rendered":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275"},"modified":"2022-09-12T09:43:16","modified_gmt":"2022-09-12T09:43:16","slug":"wildfly-%e3%81%a7%e3%82%82-bootable-jar-%e3%81%8c%e4%bd%9c%e3%82%8c%e3%82%8b%e3%82%88%e3%81%86%e3%81%ab%e3%81%aa%e3%81%a3%e3%81%9f%e3%82%89%e3%81%97%e3%81%84","status":"publish","type":"post","link":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275","title":{"rendered":"\u30c7\u30d7\u30ed\u30a4\u4e0d\u8981?! WildFly \u3067\u3082 bootable jar \u304c\u4f5c\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u3089\u3057\u3044"},"content":{"rendered":"<p>\u30ef\u30a4\u304c\u52dd\u624b\u306b JavaEE(JakartaEE) \u52e2\u306e\u30d5\u30e9\u30c3\u30b0\u30b7\u30c3\u30d7\u3068\u601d\u3044\u8fbc\u3093\u3067\u3044\u308b WildFly \u3067\u3042\u308b\u304c\u3001\u3061\u3087\u3063\u3068\u524d\u306b 26 \u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u305f\u3002<\/p>\n<p>\u6700\u8fd1\u3001\u3042\u307e\u308a\u30c1\u30a7\u30c3\u30af\u3057\u3066\u3044\u306a\u304b\u3063\u305f\u306e\u3060\u304c\u3001bootable jar \u304c\u4f5c\u6210\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u3089\u3057\u3044\u3002<\/p>\n<p>\u8efd\u3081\u306e<a href=\"https:\/\/docs.wildfly.org\/26.1\/Bootable_Guide.html\">\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8<\/a>\u3082\u516c\u958b\u3055\u308c\u3066\u3044\u305f\u3002<\/p>\n<p>\u307b\u3093\u307e\u304b\u3044\u306a\uff1f\u3068\u30b5\u30f3\u30d7\u30eb\u3092\u8a66\u3057\u3066\u307f\u308b\u3002<\/p>\n<pre><code>HelloWorldEndpoint.java\r\npackage org.wildfly.plugins.demo.jaxrs;\r\n\r\n\r\nimport javax.ws.rs.Path;\r\nimport javax.ws.rs.core.Response;\r\nimport javax.ws.rs.GET;\r\nimport javax.ws.rs.Produces;\r\n\r\n\r\n@Path(\"\/hello\")\r\npublic class HelloWorldEndpoint {\r\n    @GET\r\n    @Produces(\"text\/plain\")\r\n    public Response doGet() {\r\n        return Response.ok(\"Hello from WildFly bootable jar!\").build();\r\n    }\r\n}<\/code><\/pre>\n<p><!--\n\n\n<pre><code>RestApplication.java\r\npackage org.wildfly.plugins.demo.jaxrs;\r\n\r\nimport javax.ws.rs.ApplicationPath;\r\nimport javax.ws.rs.core.Application;\r\n\r\n@ApplicationPath(\"\/\")\r\npublic class RestApplication extends Application {\r\n}<\/code><\/pre>\n\n\n--><br \/>\n\u3068\u3057\u305f\u3068\u304d\u3001pom.xml \u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u8a2d\u5b9a\u3059\u308b\u3002<\/p>\n<pre><code>pom.xml\uff08\u629c\u7c8b\uff09\r\n\r\n   &lt;artifactId&gt;jaxrs&lt;\/artifactId&gt;\r\n   \uff08\u7565\uff09\r\n   &lt;build&gt;\r\n        &lt;finalName&gt;${project.artifactId}&lt;\/finalName&gt;\r\n        &lt;plugins&gt;\r\n            &lt;plugin&gt;\r\n                &lt;groupId&gt;org.wildfly.plugins&lt;\/groupId&gt;\r\n                &lt;artifactId&gt;wildfly-jar-maven-plugin&lt;\/artifactId&gt;\r\n                &lt;configuration&gt;\r\n                    &lt;feature-pack-location&gt;wildfly@maven(org.jboss.universe:community-universe)#${version.wildfly}&lt;\/feature-pack-location&gt;\r\n                    &lt;layers&gt;\r\n                        &lt;layer&gt;jaxrs&lt;\/layer&gt;\r\n                        &lt;layer&gt;management&lt;\/layer&gt;\r\n                    &lt;\/layers&gt;\r\n                    &lt;excluded-layers&gt;\r\n                        &lt;layer&gt;deployment-scanner&lt;\/layer&gt;\r\n                    &lt;\/excluded-layers&gt;\r\n                    &lt;plugin-options&gt;\r\n                        &lt;jboss-fork-embedded&gt;${plugin.fork.embedded}&lt;\/jboss-fork-embedded&gt;\r\n                    &lt;\/plugin-options&gt;\r\n                &lt;\/configuration&gt;\r\n                &lt;executions&gt;\r\n                    &lt;execution&gt;\r\n                        &lt;goals&gt;\r\n                            &lt;goal&gt;package&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        &lt;\/plugins&gt;\r\n    &lt;\/build&gt;<\/code><\/pre>\n<pre><code>mvn pacakge<\/code><\/pre>\n<p>\u3067\u30d3\u30eb\u30c9\u3002<\/p>\n<p>\u5b8c\u4e86\u3057\u305f\u3089\u3001<\/p>\n<pre><code>java -jar target\/jaxrs-bootable.jar<\/code><\/pre>\n<p>\u3068\u30bf\u30a4\u30d7\u3002<\/p>\n<p>\u3059\u308b\u3068<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter size-large wp-image-281\" src=\"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/09\/wildfly-bootable-jar-logger-1024x725.png\" alt=\"\" width=\"525\" height=\"372\" srcset=\"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/09\/wildfly-bootable-jar-logger-1024x725.png 1024w, https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/09\/wildfly-bootable-jar-logger-300x212.png 300w, https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/09\/wildfly-bootable-jar-logger-768x544.png 768w, https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/09\/wildfly-bootable-jar-logger.png 1364w\" sizes=\"(max-width: 525px) 100vw, 525px\" \/><\/p>\n<p>\u3068\u3044\u3046\u3044\u304b\u306b\u3082 WildFly \u306a\u30ed\u30ac\u30fc\u60c5\u5831\u304c\u6d41\u308c\u308b\u3002<\/p>\n<p>\u30d6\u30e9\u30a6\u30b6\u3067 http:127.0.0.1:8080\/hello \u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter size-large wp-image-282\" src=\"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/09\/wildfly-bootable-jar-jax-rs-1024x815.png\" alt=\"\" width=\"525\" height=\"418\" srcset=\"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/09\/wildfly-bootable-jar-jax-rs-1024x815.png 1024w, https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/09\/wildfly-bootable-jar-jax-rs-300x239.png 300w, https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/09\/wildfly-bootable-jar-jax-rs-768x611.png 768w, https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/09\/wildfly-bootable-jar-jax-rs.png 1224w\" sizes=\"(max-width: 525px) 100vw, 525px\" \/><\/p>\n<p>\u3068\u3061\u3083\u3093\u3068\u8868\u793a\u3055\u308c\u307e\u3057\u305f\u3002<\/p>\n<p>wildfly-jar-maven-plugin \u3084\u308b\u3067\u306f\u306a\u3044\u3067\u3059\u304b\u30fcw<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u30ef\u30a4\u304c\u52dd\u624b\u306b JavaEE(JakartaEE) \u52e2\u306e\u30d5\u30e9\u30c3\u30b0\u30b7\u30c3\u30d7\u3068\u601d\u3044\u8fbc\u3093\u3067\u3044\u308b WildFly \u3067\u3042\u308b\u304c\u3001\u3061\u3087\u3063\u3068\u524d\u306b 26 \u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u305f\u3002 \u6700\u8fd1\u3001\u3042\u307e\u308a\u30c1\u30a7\u30c3\u30af\u3057\u3066\u3044\u306a\u304b\u3063\u305f\u306e\u3060\u304c\u3001bootable jar  &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275\" class=\"more-link\"><span class=\"screen-reader-text\">&#8220;\u30c7\u30d7\u30ed\u30a4\u4e0d\u8981?! WildFly \u3067\u3082 bootable jar \u304c\u4f5c\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u3089\u3057\u3044&#8221; \u306e<\/span>\u7d9a\u304d\u3092\u8aad\u3080<\/a><\/p>\n","protected":false},"author":3,"featured_media":285,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"spay_email":""},"categories":[15,30],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v18.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u30c7\u30d7\u30ed\u30a4\u4e0d\u8981?! WildFly \u3067\u3082 bootable jar \u304c\u4f5c\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u3089\u3057\u3044 | \u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u30c7\u30d7\u30ed\u30a4\u4e0d\u8981?! WildFly \u3067\u3082 bootable jar \u304c\u4f5c\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u3089\u3057\u3044 | \u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011\" \/>\n<meta property=\"og:description\" content=\"\u30ef\u30a4\u304c\u52dd\u624b\u306b JavaEE(JakartaEE) \u52e2\u306e\u30d5\u30e9\u30c3\u30b0\u30b7\u30c3\u30d7\u3068\u601d\u3044\u8fbc\u3093\u3067\u3044\u308b WildFly \u3067\u3042\u308b\u304c\u3001\u3061\u3087\u3063\u3068\u524d\u306b 26 \u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u305f\u3002 \u6700\u8fd1\u3001\u3042\u307e\u308a\u30c1\u30a7\u30c3\u30af\u3057\u3066\u3044\u306a\u304b\u3063\u305f\u306e\u3060\u304c\u3001bootable jar &hellip; &quot;\u30c7\u30d7\u30ed\u30a4\u4e0d\u8981?! WildFly \u3067\u3082 bootable jar \u304c\u4f5c\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u3089\u3057\u3044&quot; \u306e\u7d9a\u304d\u3092\u8aad\u3080\" \/>\n<meta property=\"og:url\" content=\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275\" \/>\n<meta property=\"og:site_name\" content=\"\u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Akiba.Chan.2021\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-12T05:01:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-12T09:43:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/09\/wildfly-bootable-jar-900.png\" \/>\n\t<meta property=\"og:image:width\" content=\"900\" \/>\n\t<meta property=\"og:image:height\" content=\"530\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@AkibaChan3\" \/>\n<meta name=\"twitter:site\" content=\"@AkibaChan3\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u79cb\u8449\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/#website\",\"url\":\"https:\/\/p-horlix.net\/umamusume-phazor\/\",\"name\":\"\u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011\",\"description\":\"\u30a6\u30de\u5a18\u95a2\u9023\u306e\u30cd\u30bf\u304c\u591a\u3044\u3067\u3057\u3087\u3046\u304b\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/p-horlix.net\/umamusume-phazor\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"ja\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275#primaryimage\",\"inLanguage\":\"ja\",\"url\":\"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/09\/wildfly-bootable-jar-900.png\",\"contentUrl\":\"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/09\/wildfly-bootable-jar-900.png\",\"width\":900,\"height\":530},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275#webpage\",\"url\":\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275\",\"name\":\"\u30c7\u30d7\u30ed\u30a4\u4e0d\u8981?! WildFly \u3067\u3082 bootable jar \u304c\u4f5c\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u3089\u3057\u3044 | \u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011\",\"isPartOf\":{\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275#primaryimage\"},\"datePublished\":\"2022-09-12T05:01:53+00:00\",\"dateModified\":\"2022-09-12T09:43:16+00:00\",\"author\":{\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/#\/schema\/person\/6a538594548c2ec36955811c54070308\"},\"breadcrumb\":{\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"HOME\",\"item\":\"https:\/\/p-horlix.net\/umamusume-phazor\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u30c7\u30d7\u30ed\u30a4\u4e0d\u8981?! WildFly \u3067\u3082 bootable jar \u304c\u4f5c\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u3089\u3057\u3044\"}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/#\/schema\/person\/6a538594548c2ec36955811c54070308\",\"name\":\"\u79cb\u8449\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/p-horlix.net\/umamusume-phazor\/#personlogo\",\"inLanguage\":\"ja\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/7f6d2dae0b83715553d92792c84890d9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/7f6d2dae0b83715553d92792c84890d9?s=96&d=mm&r=g\",\"caption\":\"\u79cb\u8449\"},\"url\":\"https:\/\/p-horlix.net\/umamusume-phazor\/?author=3\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u30c7\u30d7\u30ed\u30a4\u4e0d\u8981?! WildFly \u3067\u3082 bootable jar \u304c\u4f5c\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u3089\u3057\u3044 | \u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011","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:\/\/p-horlix.net\/umamusume-phazor\/?p=275","og_locale":"ja_JP","og_type":"article","og_title":"\u30c7\u30d7\u30ed\u30a4\u4e0d\u8981?! WildFly \u3067\u3082 bootable jar \u304c\u4f5c\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u3089\u3057\u3044 | \u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011","og_description":"\u30ef\u30a4\u304c\u52dd\u624b\u306b JavaEE(JakartaEE) \u52e2\u306e\u30d5\u30e9\u30c3\u30b0\u30b7\u30c3\u30d7\u3068\u601d\u3044\u8fbc\u3093\u3067\u3044\u308b WildFly \u3067\u3042\u308b\u304c\u3001\u3061\u3087\u3063\u3068\u524d\u306b 26 \u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u305f\u3002 \u6700\u8fd1\u3001\u3042\u307e\u308a\u30c1\u30a7\u30c3\u30af\u3057\u3066\u3044\u306a\u304b\u3063\u305f\u306e\u3060\u304c\u3001bootable jar &hellip; \"\u30c7\u30d7\u30ed\u30a4\u4e0d\u8981?! WildFly \u3067\u3082 bootable jar \u304c\u4f5c\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u3089\u3057\u3044\" \u306e\u7d9a\u304d\u3092\u8aad\u3080","og_url":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275","og_site_name":"\u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011","article_publisher":"https:\/\/www.facebook.com\/Akiba.Chan.2021\/","article_published_time":"2022-09-12T05:01:53+00:00","article_modified_time":"2022-09-12T09:43:16+00:00","og_image":[{"width":900,"height":530,"url":"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/09\/wildfly-bootable-jar-900.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_creator":"@AkibaChan3","twitter_site":"@AkibaChan3","twitter_misc":{"\u57f7\u7b46\u8005":"\u79cb\u8449","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"1\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/p-horlix.net\/umamusume-phazor\/#website","url":"https:\/\/p-horlix.net\/umamusume-phazor\/","name":"\u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011","description":"\u30a6\u30de\u5a18\u95a2\u9023\u306e\u30cd\u30bf\u304c\u591a\u3044\u3067\u3057\u3087\u3046\u304b","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/p-horlix.net\/umamusume-phazor\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"ja"},{"@type":"ImageObject","@id":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275#primaryimage","inLanguage":"ja","url":"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/09\/wildfly-bootable-jar-900.png","contentUrl":"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/09\/wildfly-bootable-jar-900.png","width":900,"height":530},{"@type":"WebPage","@id":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275#webpage","url":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275","name":"\u30c7\u30d7\u30ed\u30a4\u4e0d\u8981?! WildFly \u3067\u3082 bootable jar \u304c\u4f5c\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u3089\u3057\u3044 | \u79cb\u8449\u3061\u3083\u3093\u306d\u308b\u3010\u5225\u9928\u3011","isPartOf":{"@id":"https:\/\/p-horlix.net\/umamusume-phazor\/#website"},"primaryImageOfPage":{"@id":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275#primaryimage"},"datePublished":"2022-09-12T05:01:53+00:00","dateModified":"2022-09-12T09:43:16+00:00","author":{"@id":"https:\/\/p-horlix.net\/umamusume-phazor\/#\/schema\/person\/6a538594548c2ec36955811c54070308"},"breadcrumb":{"@id":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/p-horlix.net\/umamusume-phazor\/?p=275"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=275#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"HOME","item":"https:\/\/p-horlix.net\/umamusume-phazor"},{"@type":"ListItem","position":2,"name":"\u30c7\u30d7\u30ed\u30a4\u4e0d\u8981?! WildFly \u3067\u3082 bootable jar \u304c\u4f5c\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u3089\u3057\u3044"}]},{"@type":"Person","@id":"https:\/\/p-horlix.net\/umamusume-phazor\/#\/schema\/person\/6a538594548c2ec36955811c54070308","name":"\u79cb\u8449","image":{"@type":"ImageObject","@id":"https:\/\/p-horlix.net\/umamusume-phazor\/#personlogo","inLanguage":"ja","url":"https:\/\/secure.gravatar.com\/avatar\/7f6d2dae0b83715553d92792c84890d9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7f6d2dae0b83715553d92792c84890d9?s=96&d=mm&r=g","caption":"\u79cb\u8449"},"url":"https:\/\/p-horlix.net\/umamusume-phazor\/?author=3"}]}},"jetpack_featured_media_url":"https:\/\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/09\/wildfly-bootable-jar-900.png","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":87,"url":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=87","url_meta":{"origin":275,"position":0},"title":"Tomcat \u9b54\u6539\u9020 vs TomEE","date":"2022-08-17","format":false,"excerpt":"Tomcat \u9b54\u6539\u9020 Tomcat \u3067\u52d8\u9055\u3044\u3055\u308c\u3066\u3044\u308b\u3053\u3068\u306e\u4e00\u3064\u306b \u300cJava EE \u5bfe\u5fdc\u30b5\u30fc\u30d0\u3067\u3042\u2026","rel":"","context":"\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/08\/tomcat-javaee-tomEE-1.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":473,"url":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=473","url_meta":{"origin":275,"position":1},"title":"\u3082\u306e\u3050\u3055 Jersey","date":"2022-11-26","format":false,"excerpt":"Java \u306e EE \u74b0\u5883\u306f JakartaEE \u306b\u79fb\u884c\u3057\u3064\u3064\u3042\u308b\u304c\u3001\u5f53\u7136\u3001EE \u306e\u5404\u4ed5\u69d8\u3082\u30a2\u30c3\u30d7\u30c7\u30fc\u2026","rel":"","context":"JAX-RS","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/11\/Glassfish_Jersey.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":607,"url":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=607","url_meta":{"origin":275,"position":2},"title":"\u3082\u306e\u3050\u3055 RESTEasy -\u753b\u50cf\u30c7\u30fc\u30bf\u306a\u3069\u3092 REST \u3063\u307d\u304f\u8fd4\u3057\u305f\u3044-","date":"2023-01-07","format":false,"excerpt":"\u300e\u3082\u306e\u3050\u3055 Jersey\u300f\u7684\u306a\u3084\u3064\u304c\u597d\u8a55\u306e\u3088\u3046\u306a\u306e\u3067\u3001\u305d\u306e RESTEasy \u7de8\u3002 \u3044\u304d\u306a\u308a\u3067\u6050\u7e2e\u3060\u2026","rel":"","context":"JAX-RS","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2023\/01\/servletoutpustream-sample-akiba-1.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":1558,"url":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1558","url_meta":{"origin":275,"position":3},"title":"Java XML \u7f72\u540d API \u306e\u4f7f\u3044\u65b9 -\u516c\u5f0f\u30b5\u30f3\u30d7\u30eb-","date":"2024-05-05","format":false,"excerpt":"\u7f72\u540d\u7de8\u306e\u8a55\u5224\u304c\u826f\u3044\u3088\u3046\u306a\u306e\u3067\u3001\u6b21\u306f\u691c\u8a3c\uff08Validation\uff09\u7de8\u3002 \u3068\u601d\u3063\u305f\u306e\u3060\u304c\u3001\u30aa\u30e9\u30af\u30eb\u516c\u5f0f\u30b5\u30f3\u2026","rel":"","context":"Java","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2024\/05\/java-xml-sign-api-howtouse.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":1446,"url":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=1446","url_meta":{"origin":275,"position":4},"title":"WildFly \u306e\u5c0e\u5165\u6642\u306b\u3059\u308b\u3053\u3068","date":"2024-03-07","format":false,"excerpt":"X \u306a\u3069\u3067\u300c\u308f\u304b\u3063\u3066\u3044\u308b\u306e\u3060\u304c\u3001\u899a\u3048\u308b\u306b\u306f\u81f3\u3063\u3066\u304a\u3089\u305a\u3001\u4f55\u5ea6\u3082\u8abf\u3079\u3066\u3057\u307e\u3046\u3053\u3068\u300d\u304c\u5ea6\u3005\u8a71\u984c\u306b\u306a\u308b\u3002 \u2026","rel":"","context":"Java","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2024\/03\/wildfly-setting.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":503,"url":"https:\/\/p-horlix.net\/umamusume-phazor\/?p=503","url_meta":{"origin":275,"position":5},"title":"JAX-RS \u3068 JSON \u3068 List \u3068 hibernate","date":"2022-12-13","format":false,"excerpt":"\u304a\u3055\u3089\u3044 REST api \u3092\u81ea\u4f5c\u3057\u3066\u308b\u3068 response \u3068\u3057\u3066 List \u3092\u542b\u3093\u3060 JSON \u2026","rel":"","context":"Java","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/p-horlix.net\/umamusume-phazor\/wp-content\/uploads\/2022\/09\/Java-JakartaEE-JAX_RS.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]}],"_links":{"self":[{"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=\/wp\/v2\/posts\/275"}],"collection":[{"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=275"}],"version-history":[{"count":7,"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=\/wp\/v2\/posts\/275\/revisions"}],"predecessor-version":[{"id":287,"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=\/wp\/v2\/posts\/275\/revisions\/287"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=\/wp\/v2\/media\/285"}],"wp:attachment":[{"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=275"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=275"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/p-horlix.net\/umamusume-phazor\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=275"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}