{"id":26473,"date":"2025-12-04T21:18:37","date_gmt":"2025-12-04T21:18:37","guid":{"rendered":"https:\/\/pokecon.jp\/job\/?p=26473"},"modified":"2025-12-04T21:18:37","modified_gmt":"2025-12-04T21:18:37","slug":"camel-route-%e3%81%8b%e3%82%89-hello-world","status":"publish","type":"post","link":"https:\/\/pokecon.jp\/job\/26473\/","title":{"rendered":"Camel Route \u304b\u3089 Hello World"},"content":{"rendered":"\n<\/p>\n<div wp_automatic_readability=\"183.28973768299\">\n<p>Apache Camel Advent Calendar 5\u65e5\u76ee\u306e\u8a18\u4e8b\u306f\u3001\u30b5\u30dd\u30fc\u30c8\u62c5\u5f53\u53e4\u5e02\u304c\u62c5\u5f53\u3057\u307e\u3059\u3002 \u30c6\u30fc\u30de\u306f\u3001\u300cCamel Route \u304b\u3089 Hello World\u300d<\/p>\n<p><span itemscope=\"\" itemtype=\"http:\/\/schema.org\/Photograph\"><img decoding=\"async\" src=\"https:\/\/cdn-ak.f.st-hatena.com\/images\/fotolife\/h\/hfuruichi\/20250717\/20250717161354.jpg\" width=\"800\" height=\"800\" loading=\"lazy\" title=\"\" class=\"hatena-fotolife\" itemprop=\"image\"\/><\/span><\/p>\n<p>\u96db\u5f62\u4f5c\u6210\u3068\u5b9f\u884c\u307e\u3067\u3092\u7d39\u4ecb\u3057\u307e\u3059\u304c\u3001\u3053\u3053\u3067\u306f \uff10\u304b\u3089\uff11\uff10\u307e\u3067\u6587\u6cd5\u3084\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u69cb\u9020\u3092\u8aac\u660e\u3057\u307e\u305b\u3093\u3002<br \/>\n0\u304b\u3089\u3057\u3063\u304b\u308a\u3068\u6642\u9593\u3092\u304b\u3051\u3066\u5b66\u3073\u305f\u3044\u3068\u3044\u3046\u7d20\u6674\u3089\u3057\u3044\u5fd7\u3092\u6301\u305f\u308c\u305f\u65b9\u306f\u3001\u3053\u3061\u3089\u306e\u30ea\u30bd\u30fc\u30b9\u3092\u3054\u89a7\u304f\u3060\u3055\u3044:<\/p>\n<p>\u521d\u65e5\u306b\u7d39\u4ecb\u3057\u305f Japan Camel User Group(JCUG)\u306e\u8a18\u4e8b<\/p>\n<p><iframe src=\"https:\/\/hatenablog-parts.com\/embed?url=https%3A%2F%2Fjcug-oss.github.io%2Farticle%2Fwhy-do-we-have-to-learn-camel-q\" title=\"\u306a\u305c\u4ecaApache Camel\u3092\u5b66\u3076\u5fc5\u8981\u304c\u3042\u308b\u306e\u304b\uff1f\" class=\"embed-card embed-webcard\" scrolling=\"no\" frameborder=\"0\" style=\"display: block; width: 100%; height: 155px; max-width: 500px; margin: 10px 0px;\" loading=\"lazy\"><\/iframe><cite class=\"hatena-citation\"><a target=\"_blank\" href=\"https:\/\/jcug-oss.github.io\/article\/why-do-we-have-to-learn-camel-q\">jcug-oss.github.io<\/a><\/cite><\/p>\n<p>Community Document<\/p>\n<p><iframe src=\"https:\/\/hatenablog-parts.com\/embed?url=https%3A%2F%2Fcamel.apache.org%2Fdocs%2F\" title=\"Documentation\" class=\"embed-card embed-webcard\" scrolling=\"no\" frameborder=\"0\" style=\"display: block; width: 100%; height: 155px; max-width: 500px; margin: 10px 0px;\" loading=\"lazy\"><\/iframe><cite class=\"hatena-citation\"><a target=\"_blank\" href=\"https:\/\/camel.apache.org\/docs\/\">camel.apache.org<\/a><\/cite><\/p>\n<p>\u66f8\u7c4d: Camel in Action 2nd edition<\/p>\n<p><iframe src=\"https:\/\/hatenablog-parts.com\/embed?url=https%3A%2F%2Fwww.manning.com%2Fbooks%2Fcamel-in-action-second-edition\" title=\"Camel in Action, Second Edition - Claus Ibsen and Jonathan Anstey\" class=\"embed-card embed-webcard\" scrolling=\"no\" frameborder=\"0\" style=\"display: block; width: 100%; height: 155px; max-width: 500px; margin: 10px 0px;\" loading=\"lazy\"><\/iframe><cite class=\"hatena-citation\"><a target=\"_blank\" href=\"https:\/\/www.manning.com\/books\/camel-in-action-second-edition\">www.manning.com<\/a><\/cite><\/p>\n<p>\u305d\u308c\u3067\u306f\u3001\u96db\u5f62\u306e\u4f5c\u6210\u3067\u3059\u3002\u4e00\u756a\u7c21\u5358\u306b\u59cb\u3081\u308b\u306e\u3067\u3042\u308c\u3070\u3001\u3084\u306f\u308a camel-jbang \u3067\u3059\u3002 <strong>camel init<\/strong> \u30b3\u30de\u30f3\u30c9\u3067\u3001\u30b5\u30f3\u30d7\u30eb camel route \u304c\u81ea\u52d5\u751f\u6210\u3055\u308c\u307e\u3059\u3002<\/p>\n<pre class=\"code\" data-lang=\"\" data-unlink=\"\">% camel init Hello.java\n%\n% cat Hello.java \nimport org.apache.camel.builder.RouteBuilder;\n\npublic class Hello extends RouteBuilder {\n\n    @Override\n    public void configure() throws Exception {\n        from(\"timer:java?period=1000\")\n            .setBody()\n                .simple(\"Hello Camel from ${routeId}\")\n            .log(\"${body}\");\n    }\n}<\/pre>\n<p>\u62e1\u5f35\u5b50\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u3067\u3001\u3054\u5229\u7528\u3055\u308c\u305f\u3044 camel DSL\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u751f\u6210\u3057\u307e\u3059\u3002(<strong>java<\/strong>, <strong>xml-io<\/strong>, <strong>yaml<\/strong>)<\/p>\n<pre class=\"code\" data-lang=\"\" data-unlink=\"\">% camel init hello.yaml\n%\n% cat hello.yaml\n- route:\n    from:\n      uri: timer:yaml\n      parameters:\n        period: \"1000\"\n      steps:\n        - setBody:\n            simple: Hello Camel from ${routeId}\n        - log: ${body}\n%\n% camel init hello.xml\n% cat hello.xml\n<!--?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34;?-->\n<routes xmlns:xsi=\"&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot;\" xmlns=\"&quot;http:\/\/camel.apache.org\/schema\/spring&quot;\" xsi:schemalocation=\"&quot;\" http:=\"\" camel.apache.org=\"\" schema=\"\" spring=\"\" https:=\"\" camel-spring.xsd&#34;=\"\">\n\n    <route>\n        <from uri=\"&quot;timer:xml?period=1000&quot;\/\">\n        <setbody>\n            <simple>Hello Camel from ${routeId}<\/simple>\n        <\/setbody>\n        <log message=\"&quot;${body}&quot;\/\">\n    <\/log><\/from><\/route>\n\n<\/routes><\/pre>\n<p>\u3069\u306e Camel DSL \u3092\u63a8\u5968\u3059\u308b\u304b\u3054\u8cea\u554f\u3092\u3044\u305f\u3060\u304f\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u304c\u3001\u3053\u308c\u3068\u3044\u3063\u305f\u6b63\u89e3\u306f\u3054\u3056\u3044\u307e\u305b\u3093\u3002<br \/>\n\u5f8c\u65e5\u3054\u7d39\u4ecb\u3059\u308b <a target=\"_blank\" href=\"https:\/\/kaoto.io\">visual camel editor  kaoto<\/a> \u306f\u57f7\u7b46\u6642\u70b9\u3067 <a target=\"_blank\" href=\"https:\/\/camel.apache.org\/components\/4.10.x\/others\/yaml-dsl.html\">yaml<\/a>\u3068<a target=\"_blank\" href=\"https:\/\/camel.apache.org\/components\/4.10.x\/others\/java-xml-io-dsl.html\">xml-io<\/a> \u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059\u3002kaoto \u306e\u3054\u5229\u7528\u3092\u3054\u691c\u8a0e\u3055\u308c\u308b\u5834\u5408\u3001\u3053\u306e\uff12\u3064\u304b\u3089\u9078\u629e\u3057\u3066\u3044\u305f\u3060\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002<\/p>\n<p><strong>kaoto<\/strong>\u306f<a target=\"_blank\" href=\"https:\/\/rheb.hatenablog.com\/entry\/2025\/05\/12\/150422\">\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u751f\u6210\u6a5f\u80fd<\/a>\u304c\u3042\u308b\u306e\u3067\u3001\u3053\u3061\u3089\u3092\u5229\u7528\u3059\u308b\u305f\u3081\u306b\u306f <strong>yaml<\/strong>\u3082\u3057\u304f\u306f<strong>xml-io<\/strong>\u306e\u9078\u629e\u304c\u5fc5\u8981\u3068\u306a\u308a\u307e\u3059\u3002<br \/>\nvisual editor \u3092\u4f7f\u308f\u305a\u3001\u666e\u6bb5\u304b\u3089 Java\u306e\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u3092\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u3001<a target=\"_blank\" href=\"https:\/\/camel.apache.org\/manual\/java-dsl.html\">java DSL<\/a> \u3092\u30e9\u30af\u306b\u611f\u3058\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002<br \/>\n(<strong>camel transform route<\/strong> \u30b3\u30de\u30f3\u30c9\u3092\u4f7f\u3044\u3001\u4ed6DSL\u3078\u5909\u63db\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059\u3002)<\/p>\n<p>\u3053\u3053\u3067\u306f\u3001 Java DSL \u3092\u4f7f\u3063\u3066\u3044\u304d\u307e\u3059\u3002\u751f\u6210\u3057\u305f camel route \u306f\u3001<strong>camel run<\/strong>\u30b3\u30de\u30f3\u30c9\u3067\u5b9f\u884c\u53ef\u80fd\u3067\u3059\u3002<\/p>\n<pre class=\"code\" data-lang=\"\" data-unlink=\"\">% camel run Hello.java\nRunning integration with the following configuration:\n    --camel-version=4.10.3.redhat-00025\nRunning integration with the following configuration:\n    --camel-version=4.10.3.redhat-00025\n2025-07-17 09:53:18.394  INFO 2807 --- [           main] org.apache.camel.main.MainSupport        : Apache Camel (JBang) 4.10.3.redhat-00025 is starting\n2025-07-17 09:53:18.495  INFO 2807 --- [           main] org.apache.camel.main.MainSupport        : Running Mac OS X 15.5 (aarch64)\n2025-07-17 09:53:18.495  INFO 2807 --- [           main] org.apache.camel.main.MainSupport        : Using Java 21.0.7 (Java HotSpot(TM) 64-Bit Server VM) with PID 2807\n2025-07-17 09:53:18.495  INFO 2807 --- [           main] org.apache.camel.main.MainSupport        : Started by hfuruich in \/Users\/hfuruich\/sandbox\n2025-07-17 09:53:18.557  INFO 2807 --- [           main] org.apache.camel.main.ProfileConfigurer  : The application is starting with profile: dev\n2025-07-17 09:53:19.036  INFO 2807 --- [           main] he.camel.cli.connector.LocalCliConnector : Camel JBang CLI enabled\n2025-07-17 09:53:19.067  INFO 2807 --- [           main] e.camel.impl.engine.AbstractCamelContext : Apache Camel 4.10.3.redhat-00025 (Hello) is starting\n2025-07-17 09:53:19.159  INFO 2807 --- [           main] e.camel.impl.engine.AbstractCamelContext : Routes startup (total:1)\n2025-07-17 09:53:19.159  INFO 2807 --- [           main] e.camel.impl.engine.AbstractCamelContext :     Started route1 (timer:\/\/java)\n2025-07-17 09:53:19.159  INFO 2807 --- [           main] e.camel.impl.engine.AbstractCamelContext : Apache Camel 4.10.3.redhat-00025 (Hello) started in 92ms (build:0ms init:0ms start:92ms boot:670ms)\n2025-07-17 09:53:20.119  INFO 2807 --- [ - timer:\/\/java] Hello.java:10                            : Hello Camel from route1\n2025-07-17 09:53:21.111  INFO 2807 --- [ - timer:\/\/java] Hello.java:10                            : Hello Camel from route1<\/pre>\n<p>\u304a\u624b\u5143\u3067\u8a66\u3055\u308c\u305f\u5b9f\u884c\u7d50\u679c\u3068\u3053\u3061\u3089\u306e\u5b9f\u884c\u7d50\u679c\u3067\u3001\u4f7f\u7528\u3055\u308c\u305f camel \u30e9\u30a4\u30d6\u30e9\u30ea\u30fc\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u306a\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002<br \/>\ncamel-jbang \u306f\u3001\u5b9f\u884c\u6642\u306b\u5229\u7528\u3059\u308b camel \u30e9\u30a4\u30d6\u30e9\u30ea\u30fc\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059\u3002Red Hat Build of Apache Camel(RHBAC)\u3067\u4f7f\u308f\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u3082\u6307\u5b9a\u3067\u304d\u307e\u3059\u306e\u3067\u3001\u5fc5\u8981\u306e\u969b\u306b\u306f\u3054\u6d3b\u7528\u304f\u3060\u3055\u3044\u3002<\/p>\n<pre class=\"code\" data-lang=\"\" data-unlink=\"\">% camel version set 4.10.3.redhat-00025\n% \n% camel version\nJBang version: 0.127.18\nCamel JBang version: 4.10.3.redhat-00020\nUser configuration:\n    camel-version = 4.10.3.redhat-00025<\/pre>\n<p>\u6b21\u306b\u3001\u65e2\u5b58\u306e\u3072\u306a\u5f62\u30b3\u30fc\u30c9\u3092\u591a\u5c11\u4fee\u6b63\u3057\u3066\u307f\u307e\u3059\u3002<br \/>\ncamel-jbang\u3000\u306f\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u3001<a target=\"_blank\" href=\"https:\/\/camel.apache.org\/manual\/camel-jbang.html#_running_routes_from_multiple_files\">\u30b3\u30de\u30f3\u30c9\u5b9f\u884c\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u3042\u308b application.properties \u3092\u8aad\u307f\u53d6\u308a\u307e\u3059<\/a>\u3002\u30d7\u30ed\u30d1\u30c6\u30a3\u5024\u3092\u8aad\u307f\u3068\u308b\u3088\u3046\u306b\u30b3\u30fc\u30c9\u4fee\u6b63\u3057\u3066\u307f\u307e\u3059\u3002<\/p>\n<pre class=\"code\" data-lang=\"\" data-unlink=\"\">% cat application.properties \nlocation=\"Tokyo\"                                                                                                                                                                                                    %   \n% cat Hello.java \nimport org.apache.camel.builder.RouteBuilder;\n\npublic class Hello extends RouteBuilder {\n\n    @Override\n    public void configure() throws Exception {\n        from(\"timer:java?period=1000\")\n            .setBody()\n                .simple(\"Hello Camel from {{location}}!\")\n            .log(\"${body}\");\n    }\n}\n% <\/pre>\n<p>\u5b9f\u884c\u7d50\u679c\u306f\u3053\u306e\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002<\/p>\n<pre class=\"code\" data-lang=\"\" data-unlink=\"\">% camel run Hello.java application.properties \nRunning integration with the following configuration:\n    --camel-version=4.10.3.redhat-00025\nRunning integration with the following configuration:\n    --camel-version=4.10.3.redhat-00025\n2025-07-17 14:57:01.394  INFO 7918 --- [           main] org.apache.camel.main.MainSupport        : Apache Camel (JBang) 4.10.3.redhat-00025 is starting\n2025-07-17 14:57:01.483  INFO 7918 --- [           main] org.apache.camel.main.MainSupport        : Running Mac OS X 15.5 (aarch64)\n2025-07-17 14:57:01.483  INFO 7918 --- [           main] org.apache.camel.main.MainSupport        : Using Java 21.0.7 (Java HotSpot(TM) 64-Bit Server VM) with PID 7918\n2025-07-17 14:57:01.484  INFO 7918 --- [           main] org.apache.camel.main.MainSupport        : Started by hfuruich in \/Users\/hfuruich\/sandbox\n2025-07-17 14:57:01.513  INFO 7918 --- [           main] org.apache.camel.main.BaseMainSupport    : Properties location: file:application.properties\n2025-07-17 14:57:01.532  INFO 7918 --- [           main] org.apache.camel.main.ProfileConfigurer  : The application is starting with profile: dev\n2025-07-17 14:57:01.948  INFO 7918 --- [           main] he.camel.cli.connector.LocalCliConnector : Camel JBang CLI enabled\n2025-07-17 14:57:01.974  INFO 7918 --- [           main] e.camel.impl.engine.AbstractCamelContext : Apache Camel 4.10.3.redhat-00025 (Hello) is starting\n2025-07-17 14:57:02.013  INFO 7918 --- [           main] org.apache.camel.main.BaseMainSupport    : Property-placeholders summary\n2025-07-17 14:57:02.013  INFO 7918 --- [           main] org.apache.camel.main.BaseMainSupport    :     [application.properties]       location = \"Tokyo\"\n2025-07-17 14:57:02.063  INFO 7918 --- [           main] e.camel.impl.engine.AbstractCamelContext : Routes startup (total:1)\n2025-07-17 14:57:02.064  INFO 7918 --- [           main] e.camel.impl.engine.AbstractCamelContext :     Started route1 (timer:\/\/java)\n2025-07-17 14:57:02.064  INFO 7918 --- [           main] e.camel.impl.engine.AbstractCamelContext : Apache Camel 4.10.3.redhat-00025 (Hello) started in 89ms (build:0ms init:0ms start:89ms boot:578ms)\n2025-07-17 14:57:03.026  INFO 7918 --- [ - timer:\/\/java] Hello.java:10                            : Hello Camel from \"Tokyo\"!\n2025-07-17 14:57:04.019  INFO 7918 --- [ - timer:\/\/java] Hello.java:10                            : Hello Camel from \"Tokyo\"!<\/pre>\n<p>\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb\u6bce\u306b\u5c02\u7528\u306e <strong>application-<profile>.properties<\/profile><\/strong> \u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u308a\u3001&#8221;<strong>&#8211;profile=<profile\/><\/strong>&#8221; \u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u30d5\u30a1\u30a4\u30eb\u3092\u4f7f\u3044\u308f\u3051\u308b\u4e8b\u3082\u53ef\u80fd\u3067\u3059\u3002\u624b\u5143\u306e\u691c\u8a3c\u7528\u3084\u30c7\u30e2\u7528\u306a\u3069\u3001\u74b0\u5883\u306b\u5408\u308f\u305b\u3066\u4f7f\u3044\u5206\u3051\u3066\u3082\u826f\u3044\u3067\u3057\u3087\u3046\u3002<\/p>\n<p>Timer \u3067 camel route \u3092\u59cb\u3081\u308b\u306e\u3067\u306f\u306a\u304f\u3001<strong>http request<\/strong> \u3092\u53d7\u3051\u4ed8\u3051\u308b\u3088\u3046\u4fee\u6b63\u3057\u3066\u307f\u307e\u3059\u3002<\/p>\n<pre class=\"code\" data-lang=\"\" data-unlink=\"\">% cat application.properties \nlocation=\"Tokyo\"                                                                                                                                                                                                      % \n% cat Hello.java  \nimport org.apache.camel.builder.RouteBuilder;\n\npublic class Hello extends RouteBuilder {\n\n    @Override\n    public void configure() throws Exception {\n        from(\"netty-http:http:\/\/0.0.0.0:8080\/foo\")\n            .setBody()\n                .simple(\"Hello Camel from {{location}}!\");\n\n    }\n}\n<\/pre>\n<p>\u5b9f\u884c\u7d50\u679c\u306f\u3053\u306e\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002<\/p>\n<pre class=\"code\" data-lang=\"\" data-unlink=\"\">% camel run Hello.java application.properties\nRunning integration with the following configuration:\n    --camel-version=4.10.3.redhat-00025\nRunning integration with the following configuration:\n    --camel-version=4.10.3.redhat-00025\n2025-07-17 15:17:14.152  INFO 9949 --- [           main] org.apache.camel.main.MainSupport        : Apache Camel (JBang) 4.10.3.redhat-00025 is starting\n2025-07-17 15:17:14.240  INFO 9949 --- [           main] org.apache.camel.main.MainSupport        : Running Mac OS X 15.5 (aarch64)\n2025-07-17 15:17:14.240  INFO 9949 --- [           main] org.apache.camel.main.MainSupport        : Using Java 21.0.7 (Java HotSpot(TM) 64-Bit Server VM) with PID 9949\n2025-07-17 15:17:14.240  INFO 9949 --- [           main] org.apache.camel.main.MainSupport        : Started by hfuruich in \/Users\/hfuruich\/sandbox\n2025-07-17 15:17:14.270  INFO 9949 --- [           main] org.apache.camel.main.BaseMainSupport    : Properties location: file:application.properties\n2025-07-17 15:17:14.289  INFO 9949 --- [           main] org.apache.camel.main.ProfileConfigurer  : The application is starting with profile: dev\n2025-07-17 15:17:14.706  INFO 9949 --- [           main] he.camel.cli.connector.LocalCliConnector : Camel JBang CLI enabled\n2025-07-17 15:17:14.805  INFO 9949 --- [           main] nt.netty.http.HttpServerBootstrapFactory : BootstrapFactory on port 8080 is using bootstrap configuration: [NettyServerBootstrapConfiguration{protocol='http', host='0.0.0.0', port=8080, broadcast=false, sendBufferSize=65536, receiveBufferSize=65536, receiveBufferSizePredictor=0, workerCount=0, bossCount=1, keepAlive=true, tcpNoDelay=true, reuseAddress=true, connectTimeout=10000, backlog=0, serverInitializerFactory=org.apache.camel.component.netty.http.HttpServerInitializerFactory@60b1ff3b, nettyServerBootstrapFactory=null, options=null, ssl=false, sslHandler=null, sslContextParameters='null', needClientAuth=false, enabledProtocols='TLSv1.2,TLSv1.3, keyStoreFile=null, trustStoreFile=null, keyStoreResource='null', trustStoreResource='null', keyStoreFormat='JKS', securityProvider='SunX509', passphrase='null', bossGroup=null, workerGroup=null, networkInterface='null', reconnect='true', reconnectInterval='10000', unixDomainSocketPath='null'}]\n2025-07-17 15:17:14.807  INFO 9949 --- [           main] e.camel.impl.engine.AbstractCamelContext : Apache Camel 4.10.3.redhat-00025 (Hello) is starting\n2025-07-17 15:17:14.841  INFO 9949 --- [           main] che.camel.component.netty.NettyComponent : Creating shared NettyConsumerExecutorGroup with 29 threads\n2025-07-17 15:17:14.870  INFO 9949 --- [           main] tty.SingleTCPNettyServerBootstrapFactory : ServerBootstrap binding to 0.0.0.0:8080\n2025-07-17 15:17:14.894  INFO 9949 --- [           main] ache.camel.component.netty.NettyConsumer : Netty consumer bound to: 0.0.0.0:8080\n2025-07-17 15:17:14.895  INFO 9949 --- [           main] org.apache.camel.main.BaseMainSupport    : Property-placeholders summary\n2025-07-17 15:17:14.896  INFO 9949 --- [           main] org.apache.camel.main.BaseMainSupport    :     [application.properties]       location = \"Tokyo\"\n2025-07-17 15:17:14.946  INFO 9949 --- [           main] e.camel.impl.engine.AbstractCamelContext : Routes startup (total:1)\n2025-07-17 15:17:14.946  INFO 9949 --- [           main] e.camel.impl.engine.AbstractCamelContext :     Started route1 (http:\/\/0.0.0.0:8080\/foo)\n2025-07-17 15:17:14.946  INFO 9949 --- [           main] e.camel.impl.engine.AbstractCamelContext : Apache Camel 4.10.3.redhat-00025 (Hello) started in 139ms (build:0ms init:0ms start:139ms boot:652ms)<\/pre>\n<p>\u5225\u30bf\u30fc\u30df\u30ca\u30eb\u304b\u3089 http\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u4fe1\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"code\" data-lang=\"\" data-unlink=\"\">% curl http:\/\/0.0.0.0:8080\/foo\nHello Camel from \"Tokyo\"!%                                                                                                                                                                                               % <\/pre>\n<p>\u6700\u5f8c\u306b\u3001\u3061\u3087\u3063\u3068\u3057\u305f\u30cd\u30bf\u3092\u3002 <strong>stream:in,out<\/strong> \u3092\u4f7f\u3044\u3064\u3064\u3001\u30b9\u30af\u30ea\u30d7\u30c8\u5b9f\u884c\u306b\u5bfe\u5fdc\u3059\u308b\u305f\u3081\u3001\u5148\u982d\u884c\u306b\u30b3\u30e1\u30f3\u30c8\u3092\u8ffd\u8a18\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\n<pre class=\"code\" data-lang=\"\" data-unlink=\"\">% cat application.properties\nlocation=\"Tokyo\"\n% cat Hello.java \n\/\/\/usr\/bin\/env jbang --quiet camel@apache\/camel script \"$0\" --properties=application.properties \"$@\" ; exit $?\n\n\nimport org.apache.camel.builder.RouteBuilder;\n\npublic class Hello extends RouteBuilder {\n\n    @Override\n    public void configure() throws Exception {\n        from(\"stream:in\")\n                .setBody()\n                .simple(\"Hello ${body.toUpperCase()} from {{location}}!\")\n                .to(\"stream:out\");\n    }\n}<\/pre>\n<p>Hello.java \u306b\u5b9f\u884c\u6a29\u9650\u3092\u4ed8\u4e0e\u3057\u3001\u5b9f\u884c\u3057\u3066\u307f\u307e\u3059\u3002echo\u30b3\u30de\u30f3\u30c9\u3092\u4f7f\u3044\u3001\u30b9\u30af\u30ea\u30d7\u30c8\u306b\u6587\u5b57\u5217\u3092\u6e21\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\n<pre class=\"code\" data-lang=\"\" data-unlink=\"\">% chmod +x Hello.java \n% \n% echo \"Camel\" | .\/Hello.java\nHello CAMEL from \"Tokyo\"!\n% <\/pre>\n<p>\u666e\u6bb5\u4f55\u6c17\u306a\u304f\u4f5c\u696d\u3057\u3066\u3044\u308b\u96d1\u52d9\u3092\u3001camel route\u3092\u4f7f\u3063\u305f\u30b9\u30af\u30ea\u30d7\u30c8\u3067\u52b9\u7387\u5316\u3057\u3066\u3082\u9762\u767d\u3044\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002<br \/>\n\u305c\u3072\u3001\u697d\u3057\u307f\u306a\u304c\u3089 camel tool box \u3092\u8272\u3005\u3068\u8a66\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u3002<\/p>\n<p>\u4eca\u56de\u7d39\u4ecb\u3057\u305f camel jbang \u306e\u985e\u4f3c\u30b5\u30f3\u30d7\u30eb\u306f\u3001\u30b3\u30df\u30e5\u30cb\u30c6\u30a3\u30fc\u30da\u30fc\u30b8\u3067\u3082\u7d39\u4ecb\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u4ed6\u306b\u3082\u6ca2\u5c71\u306e\u6a5f\u80fd\u304c\u3042\u308a\u307e\u3059\u306e\u3067\u3001\u305c\u3072\u3053\u3061\u3089\u3082\u3054\u89a7\u304f\u3060\u3055\u3044\u3002<\/p>\n<p><iframe src=\"https:\/\/hatenablog-parts.com\/embed?url=https%3A%2F%2Fcamel.apache.org%2Fmanual%2Fcamel-jbang.html\" title=\"Camel JBang\" class=\"embed-card embed-webcard\" scrolling=\"no\" frameborder=\"0\" style=\"display: block; width: 100%; height: 155px; max-width: 500px; margin: 10px 0px;\" loading=\"lazy\"><\/iframe><cite class=\"hatena-citation\"><a target=\"_blank\" href=\"https:\/\/camel.apache.org\/manual\/camel-jbang.html\">camel.apache.org<\/a><\/cite><\/p>\n<p><strong>Quarkus runtime<\/strong> \u3084 <strong>Spring Boot runtime<\/strong>\u7528\u3072\u306a\u5f62\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u4f7f\u3044\u8a66\u3055\u308c\u305f\u3044\u65b9\u306f\u3001\u305d\u308c\u305e\u308c\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u751f\u6210\u65b9\u6cd5\u304c\u8a18\u8f09\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u3053\u3061\u3089\u3092\u3054\u89a7\u304f\u3060\u3055\u3044\u3002(camel-jbang \u3092\u4f7f\u3044\u3001maven project \u3092\u751f\u6210\u3059\u308b\u6a5f\u80fd\u3082\u3042\u308a\u307e\u3059\u3002)<\/p>\n<p><iframe src=\"https:\/\/hatenablog-parts.com\/embed?url=https%3A%2F%2Fdocs.redhat.com%2Fen%2Fdocumentation%2Fred_hat_build_of_apache_camel%2F4.10%2Fhtml%2Fgetting_started_with_red_hat_build_of_apache_camel_for_quarkus%2Fgetting-started-with-camel-quarkus-extensions_camel-quarkus-extensions-getting-started%23generating_the_skeleton_application_with_code_quarkus_redhat_com\" title=\"Chapter\u00a04.\u00a0Getting Started with Red Hat build of Apache Camel for Quarkus | Getting Started with Red Hat build of Apache Camel for Quarkus | Red Hat build of Apache Camel | 4.10 | Red Hat Documentation\" class=\"embed-card embed-webcard\" scrolling=\"no\" frameborder=\"0\" style=\"display: block; width: 100%; height: 155px; max-width: 500px; margin: 10px 0px;\" loading=\"lazy\"><\/iframe><cite class=\"hatena-citation\"><a target=\"_blank\" href=\"https:\/\/docs.redhat.com\/en\/documentation\/red_hat_build_of_apache_camel\/4.10\/html\/getting_started_with_red_hat_build_of_apache_camel_for_quarkus\/getting-started-with-camel-quarkus-extensions_camel-quarkus-extensions-getting-started#generating_the_skeleton_application_with_code_quarkus_redhat_com\">docs.redhat.com<\/a><\/cite><\/p>\n<p><iframe src=\"https:\/\/hatenablog-parts.com\/embed?url=https%3A%2F%2Fdocs.redhat.com%2Fen%2Fdocumentation%2Fred_hat_build_of_apache_camel%2F4.10%2Fhtml%2Fgetting_started_with_red_hat_build_of_apache_camel_for_spring_boot%2Fgetting-started-with-camel-spring-boot_csb%23generating-a-csb-application-using-maven\" title=\"Chapter\u00a03.\u00a0Getting Started with Red Hat build of Apache Camel for Spring Boot | Getting Started with Red Hat build of Apache Camel for Spring Boot | Red Hat build of Apache Camel | 4.10 | Red Hat Documentation\" class=\"embed-card embed-webcard\" scrolling=\"no\" frameborder=\"0\" style=\"display: block; width: 100%; height: 155px; max-width: 500px; margin: 10px 0px;\" loading=\"lazy\"><\/iframe><cite class=\"hatena-citation\"><a target=\"_blank\" href=\"https:\/\/docs.redhat.com\/en\/documentation\/red_hat_build_of_apache_camel\/4.10\/html\/getting_started_with_red_hat_build_of_apache_camel_for_spring_boot\/getting-started-with-camel-spring-boot_csb#generating-a-csb-application-using-maven\">docs.redhat.com<\/a><\/cite><\/p>\n<p>\u660e\u65e5\u306e advent calendar 6\u65e5\u76ee\u3067\u306f\u3001\u300cTesting Camel\u300d \u306b\u3064\u3044\u3066\u3054\u7d39\u4ecb\u3057\u307e\u3059\u3002<br \/>\n\u30a2\u30c9\u30d9\u30f3\u30c8\u30ab\u30ec\u30f3\u30c0\u30fc\u306e\u4e00\u89a7\u306f\u3053\u3061\u3089\u3067\u3059\u3002<br \/>\n<iframe src=\"https:\/\/hatenablog-parts.com\/embed?url=http%3A%2F%2Fqiita.com%2Fadvent-calendar%2F2025%2Fcamel\" title=\"Apache Camel - Qiita Advent Calendar 2025 - Qiita\" class=\"embed-card embed-webcard\" scrolling=\"no\" frameborder=\"0\" style=\"display: block; width: 100%; height: 155px; max-width: 500px; margin: 10px 0px;\" loading=\"lazy\"><\/iframe><cite class=\"hatena-citation\"><a target=\"_blank\" href=\"http:\/\/qiita.com\/advent-calendar\/2025\/camel\">qiita.com<\/a><\/cite><\/p>\n<\/div>\n<p><script>(function(d, s, id) {\n  var js, fjs = d.getElementsByTagName(s)[0];\n  if (d.getElementById(id)) return;\n  js = d.createElement(s); js.id = id;\n  js.src = \"\/\/connect.facebook.net\/ja_JP\/sdk.js#xfbml=1&appId=719729204785177&version=v17.0\";\n  fjs.parentNode.insertBefore(js, fjs);\n}(document, 'script', 'facebook-jssdk'));<\/script><br \/>\n<br \/>\n<br \/><a href=\"https:\/\/rheb.hatenablog.com\/entry\/cac20251205\">\u5143\u306e\u8a18\u4e8b\u3092\u78ba\u8a8d\u3059\u308b <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"Apache Camel Advent Calendar 5\u65e5\u76ee\u306e\u8a18\u4e8b\u306f\u3001\u30b5\u30dd\u30fc\u30c8\u62c5\u5f53\u53e4\u5e02\u304c\u62c5\u5f53\u3057\u307e\u3059\u3002 \u30c6\u30fc\u30de\u306f\u3001\u300cCamel Route \u304b\u3089 Hello World\u300d \u96db\u5f62\u4f5c\u6210\u3068\u5b9f\u884c\u307e\u3067\u3092\u7d39\u4ecb\u3057\u307e\u3059\u304c\u3001\u3053\u3053\u3067\u306f \uff10 [&hellip;]","protected":false},"author":1,"featured_media":26474,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[4],"tags":[],"class_list":["post-26473","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-company-tec"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Camel Route \u304b\u3089 Hello World - \u30dd\u30b1\u30b3\u30f3<\/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:\/\/rheb.hatenablog.com\/entry\/cac20251205\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Camel Route \u304b\u3089 Hello World - \u30dd\u30b1\u30b3\u30f3\" \/>\n<meta property=\"og:description\" content=\"Apache Camel Advent Calendar 5\u65e5\u76ee\u306e\u8a18\u4e8b\u306f\u3001\u30b5\u30dd\u30fc\u30c8\u62c5\u5f53\u53e4\u5e02\u304c\u62c5\u5f53\u3057\u307e\u3059\u3002 \u30c6\u30fc\u30de\u306f\u3001\u300cCamel Route \u304b\u3089 Hello World\u300d \u96db\u5f62\u4f5c\u6210\u3068\u5b9f\u884c\u307e\u3067\u3092\u7d39\u4ecb\u3057\u307e\u3059\u304c\u3001\u3053\u3053\u3067\u306f \uff10 [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rheb.hatenablog.com\/entry\/cac20251205\" \/>\n<meta property=\"og:site_name\" content=\"\u30dd\u30b1\u30b3\u30f3\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-04T21:18:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/12\/https3A2F2Fcdn-ak.f.st-hatena.com2Fimages2Ffotolife2Fh2Fhfuruichi2F202507172F20250717161354.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"1300\" \/>\n\t<meta property=\"og:image:height\" content=\"1300\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"info@pokecon.jp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"info@pokecon.jp\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"6\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/rheb.hatenablog.com\\\/entry\\\/cac20251205#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/26473\\\/\"},\"author\":{\"name\":\"info@pokecon.jp\",\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#\\\/schema\\\/person\\\/16c9f07b1ba984d165d9aee259bda997\"},\"headline\":\"Camel Route \u304b\u3089 Hello World\",\"datePublished\":\"2025-12-04T21:18:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/26473\\\/\"},\"wordCount\":130,\"image\":{\"@id\":\"https:\\\/\\\/rheb.hatenablog.com\\\/entry\\\/cac20251205#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/https3A2F2Fcdn-ak.f.st-hatena.com2Fimages2Ffotolife2Fh2Fhfuruichi2F202507172F20250717161354.jpeg\",\"articleSection\":[\"\u4f01\u696d\u30c6\u30c3\u30af\"],\"inLanguage\":\"ja\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/26473\\\/\",\"url\":\"https:\\\/\\\/rheb.hatenablog.com\\\/entry\\\/cac20251205\",\"name\":\"Camel Route \u304b\u3089 Hello World - \u30dd\u30b1\u30b3\u30f3\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/rheb.hatenablog.com\\\/entry\\\/cac20251205#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/rheb.hatenablog.com\\\/entry\\\/cac20251205#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/https3A2F2Fcdn-ak.f.st-hatena.com2Fimages2Ffotolife2Fh2Fhfuruichi2F202507172F20250717161354.jpeg\",\"datePublished\":\"2025-12-04T21:18:37+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#\\\/schema\\\/person\\\/16c9f07b1ba984d165d9aee259bda997\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/rheb.hatenablog.com\\\/entry\\\/cac20251205#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/rheb.hatenablog.com\\\/entry\\\/cac20251205\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\\\/\\\/rheb.hatenablog.com\\\/entry\\\/cac20251205#primaryimage\",\"url\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/https3A2F2Fcdn-ak.f.st-hatena.com2Fimages2Ffotolife2Fh2Fhfuruichi2F202507172F20250717161354.jpeg\",\"contentUrl\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/https3A2F2Fcdn-ak.f.st-hatena.com2Fimages2Ffotolife2Fh2Fhfuruichi2F202507172F20250717161354.jpeg\",\"width\":1300,\"height\":1300},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/rheb.hatenablog.com\\\/entry\\\/cac20251205#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u30db\u30fc\u30e0\",\"item\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Camel Route \u304b\u3089 Hello World\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#website\",\"url\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/\",\"name\":\"\u30dd\u30b1\u30b3\u30f3\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#\\\/schema\\\/person\\\/16c9f07b1ba984d165d9aee259bda997\",\"name\":\"info@pokecon.jp\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g\",\"caption\":\"info@pokecon.jp\"},\"url\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/author\\\/infopokecon-jp\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Camel Route \u304b\u3089 Hello World - \u30dd\u30b1\u30b3\u30f3","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:\/\/rheb.hatenablog.com\/entry\/cac20251205","og_locale":"ja_JP","og_type":"article","og_title":"Camel Route \u304b\u3089 Hello World - \u30dd\u30b1\u30b3\u30f3","og_description":"Apache Camel Advent Calendar 5\u65e5\u76ee\u306e\u8a18\u4e8b\u306f\u3001\u30b5\u30dd\u30fc\u30c8\u62c5\u5f53\u53e4\u5e02\u304c\u62c5\u5f53\u3057\u307e\u3059\u3002 \u30c6\u30fc\u30de\u306f\u3001\u300cCamel Route \u304b\u3089 Hello World\u300d \u96db\u5f62\u4f5c\u6210\u3068\u5b9f\u884c\u307e\u3067\u3092\u7d39\u4ecb\u3057\u307e\u3059\u304c\u3001\u3053\u3053\u3067\u306f \uff10 [&hellip;]","og_url":"https:\/\/rheb.hatenablog.com\/entry\/cac20251205","og_site_name":"\u30dd\u30b1\u30b3\u30f3","article_published_time":"2025-12-04T21:18:37+00:00","og_image":[{"width":1300,"height":1300,"url":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/12\/https3A2F2Fcdn-ak.f.st-hatena.com2Fimages2Ffotolife2Fh2Fhfuruichi2F202507172F20250717161354.jpeg","type":"image\/jpeg"}],"author":"info@pokecon.jp","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"info@pokecon.jp","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"6\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/rheb.hatenablog.com\/entry\/cac20251205#article","isPartOf":{"@id":"https:\/\/pokecon.jp\/job\/26473\/"},"author":{"name":"info@pokecon.jp","@id":"https:\/\/pokecon.jp\/job\/#\/schema\/person\/16c9f07b1ba984d165d9aee259bda997"},"headline":"Camel Route \u304b\u3089 Hello World","datePublished":"2025-12-04T21:18:37+00:00","mainEntityOfPage":{"@id":"https:\/\/pokecon.jp\/job\/26473\/"},"wordCount":130,"image":{"@id":"https:\/\/rheb.hatenablog.com\/entry\/cac20251205#primaryimage"},"thumbnailUrl":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/12\/https3A2F2Fcdn-ak.f.st-hatena.com2Fimages2Ffotolife2Fh2Fhfuruichi2F202507172F20250717161354.jpeg","articleSection":["\u4f01\u696d\u30c6\u30c3\u30af"],"inLanguage":"ja"},{"@type":"WebPage","@id":"https:\/\/pokecon.jp\/job\/26473\/","url":"https:\/\/rheb.hatenablog.com\/entry\/cac20251205","name":"Camel Route \u304b\u3089 Hello World - \u30dd\u30b1\u30b3\u30f3","isPartOf":{"@id":"https:\/\/pokecon.jp\/job\/#website"},"primaryImageOfPage":{"@id":"https:\/\/rheb.hatenablog.com\/entry\/cac20251205#primaryimage"},"image":{"@id":"https:\/\/rheb.hatenablog.com\/entry\/cac20251205#primaryimage"},"thumbnailUrl":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/12\/https3A2F2Fcdn-ak.f.st-hatena.com2Fimages2Ffotolife2Fh2Fhfuruichi2F202507172F20250717161354.jpeg","datePublished":"2025-12-04T21:18:37+00:00","author":{"@id":"https:\/\/pokecon.jp\/job\/#\/schema\/person\/16c9f07b1ba984d165d9aee259bda997"},"breadcrumb":{"@id":"https:\/\/rheb.hatenablog.com\/entry\/cac20251205#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rheb.hatenablog.com\/entry\/cac20251205"]}]},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/rheb.hatenablog.com\/entry\/cac20251205#primaryimage","url":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/12\/https3A2F2Fcdn-ak.f.st-hatena.com2Fimages2Ffotolife2Fh2Fhfuruichi2F202507172F20250717161354.jpeg","contentUrl":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/12\/https3A2F2Fcdn-ak.f.st-hatena.com2Fimages2Ffotolife2Fh2Fhfuruichi2F202507172F20250717161354.jpeg","width":1300,"height":1300},{"@type":"BreadcrumbList","@id":"https:\/\/rheb.hatenablog.com\/entry\/cac20251205#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u30db\u30fc\u30e0","item":"https:\/\/pokecon.jp\/job\/"},{"@type":"ListItem","position":2,"name":"Camel Route \u304b\u3089 Hello World"}]},{"@type":"WebSite","@id":"https:\/\/pokecon.jp\/job\/#website","url":"https:\/\/pokecon.jp\/job\/","name":"\u30dd\u30b1\u30b3\u30f3","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pokecon.jp\/job\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/pokecon.jp\/job\/#\/schema\/person\/16c9f07b1ba984d165d9aee259bda997","name":"info@pokecon.jp","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/secure.gravatar.com\/avatar\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g","caption":"info@pokecon.jp"},"url":"https:\/\/pokecon.jp\/job\/author\/infopokecon-jp\/"}]}},"_links":{"self":[{"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/posts\/26473","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/comments?post=26473"}],"version-history":[{"count":1,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/posts\/26473\/revisions"}],"predecessor-version":[{"id":26475,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/posts\/26473\/revisions\/26475"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/media\/26474"}],"wp:attachment":[{"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/media?parent=26473"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/categories?post=26473"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/tags?post=26473"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}