{"id":17665,"date":"2024-03-16T07:21:18","date_gmt":"2024-03-15T22:21:18","guid":{"rendered":"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%9e%e3%82%a4%e3%83%90%e3%83%86%e3%82%a3%e3%82%b9%e3%81%a7%e3%81%ae%e4%b8%80%e5%af%be%e5%a4%9a%e3%81%ae%e3%82%af%e3%82%a8%e3%83%aa%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%aa%b2%e9%a1%8c%e3%81%af\/"},"modified":"2025-08-06T12:56:11","modified_gmt":"2025-08-06T03:56:11","slug":"%e3%83%9e%e3%82%a4%e3%83%90%e3%83%86%e3%82%a3%e3%82%b9%e3%81%a7%e3%81%ae%e4%b8%80%e5%af%be%e5%a4%9a%e3%81%ae%e3%82%af%e3%82%a8%e3%83%aa%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%aa%b2%e9%a1%8c%e3%81%af","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%9e%e3%82%a4%e3%83%90%e3%83%86%e3%82%a3%e3%82%b9%e3%81%a7%e3%81%ae%e4%b8%80%e5%af%be%e5%a4%9a%e3%81%ae%e3%82%af%e3%82%a8%e3%83%aa%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%aa%b2%e9%a1%8c%e3%81%af\/","title":{"rendered":"\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\u3069\u306e\u3088\u3046\u306b\u89e3\u6c7a\u3059\u308c\u3070\u3044\u3044\u3067\u3059\u304b\uff1f"},"content":{"rendered":"<p>Mybatis\u306f\u3001\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u554f\u984c\u3092\u51e6\u7406\u3059\u308b\u305f\u3081\u306e\u7d20\u6674\u3089\u3057\u3044\u30b5\u30dd\u30fc\u30c8\u3092\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002\u4ee5\u4e0b\u306f\u3001\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u554f\u984c\u3092\u51e6\u7406\u3059\u308b\u305f\u3081\u306e\u3044\u304f\u3064\u304b\u306e\u65b9\u6cd5\u3067\u3059\u3002<\/p>\n<ol>\n<li>&lt;\u30b3\u30ec\u30af\u30b7\u30e7\u30f3&gt;<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">resultMap<\/span> <span class=\"hljs-attr\">id<\/span>=<span class=\"hljs-string\">\"userMap\"<\/span> <span class=\"hljs-attr\">type<\/span>=<span class=\"hljs-string\">\"User\"<\/span>&gt;<\/span>\r\n  <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">id<\/span> <span class=\"hljs-attr\">column<\/span>=<span class=\"hljs-string\">\"id\"<\/span> <span class=\"hljs-attr\">property<\/span>=<span class=\"hljs-string\">\"id\"<\/span> \/&gt;<\/span>\r\n  <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">result<\/span> <span class=\"hljs-attr\">column<\/span>=<span class=\"hljs-string\">\"name\"<\/span> <span class=\"hljs-attr\">property<\/span>=<span class=\"hljs-string\">\"name\"<\/span> \/&gt;<\/span>\r\n  <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">collection<\/span> <span class=\"hljs-attr\">property<\/span>=<span class=\"hljs-string\">\"orders\"<\/span> <span class=\"hljs-attr\">ofType<\/span>=<span class=\"hljs-string\">\"Order\"<\/span>&gt;<\/span>\r\n    <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">id<\/span> <span class=\"hljs-attr\">column<\/span>=<span class=\"hljs-string\">\"order_id\"<\/span> <span class=\"hljs-attr\">property<\/span>=<span class=\"hljs-string\">\"id\"<\/span> \/&gt;<\/span>\r\n    <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">result<\/span> <span class=\"hljs-attr\">column<\/span>=<span class=\"hljs-string\">\"order_name\"<\/span> <span class=\"hljs-attr\">property<\/span>=<span class=\"hljs-string\">\"name\"<\/span> \/&gt;<\/span>\r\n  <span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">collection<\/span>&gt;<\/span>\r\n<span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">resultMap<\/span>&gt;<\/span>\r\n\r\n<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">select<\/span> <span class=\"hljs-attr\">id<\/span>=<span class=\"hljs-string\">\"getUserWithOrders\"<\/span> <span class=\"hljs-attr\">resultMap<\/span>=<span class=\"hljs-string\">\"userMap\"<\/span>&gt;<\/span>\r\n  SELECT u.id, u.name, o.id as order_id, o.name as order_name\r\n  FROM user u\r\n  LEFT JOIN order o ON u.id = o.user_id\r\n  WHERE u.id = #{id}\r\n<span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">select<\/span>&gt;<\/span>\r\n<\/code><\/pre>\n<ol>\n<li>\u7d44\u7e54<\/li>\n<li>\u53ce\u96c6\u7269<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">resultMap<\/span> <span class=\"hljs-attr\">id<\/span>=<span class=\"hljs-string\">\"userMap\"<\/span> <span class=\"hljs-attr\">type<\/span>=<span class=\"hljs-string\">\"User\"<\/span>&gt;<\/span>\r\n  <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">id<\/span> <span class=\"hljs-attr\">column<\/span>=<span class=\"hljs-string\">\"id\"<\/span> <span class=\"hljs-attr\">property<\/span>=<span class=\"hljs-string\">\"id\"<\/span> \/&gt;<\/span>\r\n  <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">result<\/span> <span class=\"hljs-attr\">column<\/span>=<span class=\"hljs-string\">\"name\"<\/span> <span class=\"hljs-attr\">property<\/span>=<span class=\"hljs-string\">\"name\"<\/span> \/&gt;<\/span>\r\n  <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">association<\/span> <span class=\"hljs-attr\">property<\/span>=<span class=\"hljs-string\">\"department\"<\/span> <span class=\"hljs-attr\">javaType<\/span>=<span class=\"hljs-string\">\"Department\"<\/span>&gt;<\/span>\r\n    <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">id<\/span> <span class=\"hljs-attr\">column<\/span>=<span class=\"hljs-string\">\"department_id\"<\/span> <span class=\"hljs-attr\">property<\/span>=<span class=\"hljs-string\">\"id\"<\/span> \/&gt;<\/span>\r\n    <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">result<\/span> <span class=\"hljs-attr\">column<\/span>=<span class=\"hljs-string\">\"department_name\"<\/span> <span class=\"hljs-attr\">property<\/span>=<span class=\"hljs-string\">\"name\"<\/span> \/&gt;<\/span>\r\n    <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">collection<\/span> <span class=\"hljs-attr\">property<\/span>=<span class=\"hljs-string\">\"employees\"<\/span> <span class=\"hljs-attr\">ofType<\/span>=<span class=\"hljs-string\">\"Employee\"<\/span>&gt;<\/span>\r\n      <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">id<\/span> <span class=\"hljs-attr\">column<\/span>=<span class=\"hljs-string\">\"employee_id\"<\/span> <span class=\"hljs-attr\">property<\/span>=<span class=\"hljs-string\">\"id\"<\/span> \/&gt;<\/span>\r\n      <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">result<\/span> <span class=\"hljs-attr\">column<\/span>=<span class=\"hljs-string\">\"employee_name\"<\/span> <span class=\"hljs-attr\">property<\/span>=<span class=\"hljs-string\">\"name\"<\/span> \/&gt;<\/span>\r\n    <span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">collection<\/span>&gt;<\/span>\r\n  <span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">association<\/span>&gt;<\/span>\r\n<span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">resultMap<\/span>&gt;<\/span>\r\n\r\n<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">select<\/span> <span class=\"hljs-attr\">id<\/span>=<span class=\"hljs-string\">\"getUserWithDepartmentAndEmployees\"<\/span> <span class=\"hljs-attr\">resultMap<\/span>=<span class=\"hljs-string\">\"userMap\"<\/span>&gt;<\/span>\r\n  SELECT u.id, u.name, d.id as department_id, d.name as department_name, e.id as employee_id, e.name as employee_name\r\n  FROM user u\r\n  LEFT JOIN department d ON u.department_id = d.id\r\n  LEFT JOIN employee e ON d.id = e.department_id\r\n  WHERE u.id = #{id}\r\n<span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">select<\/span>&gt;<\/span>\r\n<\/code><\/pre>\n<ol>\n<li>\u4e3b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u691c\u7d22\u3068\u540c\u6642\u306b\u3001\u30b5\u30d6\u30af\u30a8\u30ea\u3092\u4f7f\u3063\u3066\u95a2\u9023\u3059\u308b\u8907\u6570\u306e\u5b50\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u53d6\u5f97\u3059\u308b\u65b9\u6cd5\u304c\u3001\u30cd\u30b9\u30c8\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u4f7f\u7528\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059\u3002\u3053\u306e\u65b9\u6cd5\u306f\u3001\u4e00\u5bfe\u591a\u306e\u95a2\u4fc2\u304c\u6bd4\u8f03\u7684\u5358\u7d14\u306a\u5834\u5408\u306b\u9069\u3057\u3066\u3044\u307e\u3059\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">select<\/span> <span class=\"hljs-attr\">id<\/span>=<span class=\"hljs-string\">\"getUserWithOrders\"<\/span> <span class=\"hljs-attr\">resultType<\/span>=<span class=\"hljs-string\">\"User\"<\/span>&gt;<\/span>\r\n  SELECT u.id, u.name, (SELECT o.id, o.name FROM order o WHERE o.user_id = u.id) as orders\r\n  FROM user u\r\n  WHERE u.id = #{id}\r\n<span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">select<\/span>&gt;<\/span>\r\n<\/code><\/pre>\n<p>\u3053\u308c\u3089\u306e\u65b9\u6cd5\u306f\u3001\u7279\u5b9a\u306e\u30d3\u30b8\u30cd\u30b9\u8981\u4ef6\u306b\u5fdc\u3058\u3066\u9078\u629e\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u95a2\u9023\u95a2\u4fc2\u306e\u8907\u96d1\u3055\u3068\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u306b\u5fdc\u3058\u3066\u9078\u629e\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Mybatis\u306f\u3001\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u554f\u984c\u3092\u51e6\u7406\u3059\u308b\u305f\u3081\u306e\u7d20\u6674\u3089\u3057\u3044\u30b5\u30dd\u30fc\u30c8\u3092\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002\u4ee5\u4e0b\u306f\u3001\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u554f\u984c\u3092\u51e6\u7406\u3059\u308b\u305f\u3081\u306e\u3044\u304f\u3064\u304b\u306e\u65b9\u6cd5\u3067\u3059\u3002 &lt;\u30b3\u30ec\u30af\u30b7\u30e7\u30f3&gt; &lt;resultMap id=&#8221;u [&hellip;]<\/p>\n","protected":false},"author":10,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[26,61],"class_list":["post-17665","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-26","tag-61"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\u3069\u306e\u3088\u3046\u306b\u89e3\u6c7a\u3059\u308c\u3070\u3044\u3044\u3067\u3059\u304b\uff1f - Blog - Silicon Cloud<\/title>\n<meta name=\"description\" content=\"\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\u3069\u306e\u3088\u3046\u306b\u89e3\u6c7a\u3059\u308c\u3070\u3044\u3044\u3067\u3059\u304b\uff1f\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002\" \/>\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.silicloud.com\/ja\/blog\/\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\u3069\u306e\u3088\u3046\u306b\u89e3\u6c7a\u3059\u308c\u3070\u3044\u3044\u3067\u3059\u304b\uff1f\" \/>\n<meta property=\"og:description\" content=\"\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\u3069\u306e\u3088\u3046\u306b\u89e3\u6c7a\u3059\u308c\u3070\u3044\u3044\u3067\u3059\u304b\uff1f\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/ja\/blog\/\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-15T22:21:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-06T03:56:11+00:00\" \/>\n<meta name=\"author\" content=\"\u82bd\u4f9d, \u96e8\u591c\" \/>\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=\"\u82bd\u4f9d, \u96e8\u591c\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"5\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%9e%e3%82%a4%e3%83%90%e3%83%86%e3%82%a3%e3%82%b9%e3%81%a7%e3%81%ae%e4%b8%80%e5%af%be%e5%a4%9a%e3%81%ae%e3%82%af%e3%82%a8%e3%83%aa%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%aa%b2%e9%a1%8c%e3%81%af\/\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%9e%e3%82%a4%e3%83%90%e3%83%86%e3%82%a3%e3%82%b9%e3%81%a7%e3%81%ae%e4%b8%80%e5%af%be%e5%a4%9a%e3%81%ae%e3%82%af%e3%82%a8%e3%83%aa%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%aa%b2%e9%a1%8c%e3%81%af\/\",\"name\":\"\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\u3069\u306e\u3088\u3046\u306b\u89e3\u6c7a\u3059\u308c\u3070\u3044\u3044\u3067\u3059\u304b\uff1f - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\"},\"datePublished\":\"2024-03-15T22:21:18+00:00\",\"dateModified\":\"2025-08-06T03:56:11+00:00\",\"author\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/aeb60a7861f2f002b54c66bd65bc6c27\"},\"description\":\"\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\u3069\u306e\u3088\u3046\u306b\u89e3\u6c7a\u3059\u308c\u3070\u3044\u3044\u3067\u3059\u304b\uff1f\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002\",\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%9e%e3%82%a4%e3%83%90%e3%83%86%e3%82%a3%e3%82%b9%e3%81%a7%e3%81%ae%e4%b8%80%e5%af%be%e5%a4%9a%e3%81%ae%e3%82%af%e3%82%a8%e3%83%aa%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%aa%b2%e9%a1%8c%e3%81%af\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%9e%e3%82%a4%e3%83%90%e3%83%86%e3%82%a3%e3%82%b9%e3%81%a7%e3%81%ae%e4%b8%80%e5%af%be%e5%a4%9a%e3%81%ae%e3%82%af%e3%82%a8%e3%83%aa%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%aa%b2%e9%a1%8c%e3%81%af\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%9e%e3%82%a4%e3%83%90%e3%83%86%e3%82%a3%e3%82%b9%e3%81%a7%e3%81%ae%e4%b8%80%e5%af%be%e5%a4%9a%e3%81%ae%e3%82%af%e3%82%a8%e3%83%aa%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%aa%b2%e9%a1%8c%e3%81%af\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.silicloud.com\/ja\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\u3069\u306e\u3088\u3046\u306b\u89e3\u6c7a\u3059\u308c\u3070\u3044\u3044\u3067\u3059\u304b\uff1f\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/\",\"name\":\"Blog - Silicon Cloud\",\"description\":\"\",\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/aeb60a7861f2f002b54c66bd65bc6c27\",\"name\":\"\u82bd\u4f9d, \u96e8\u591c\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6305fe5cabc2b854c1208975a47fbf3f8cef3f7cd775b94dceedbe59b74a8010?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6305fe5cabc2b854c1208975a47fbf3f8cef3f7cd775b94dceedbe59b74a8010?s=96&d=mm&r=g\",\"caption\":\"\u82bd\u4f9d, \u96e8\u591c\"},\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/author\/meiamaya\/\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%9e%e3%82%a4%e3%83%90%e3%83%86%e3%82%a3%e3%82%b9%e3%81%a7%e3%81%ae%e4%b8%80%e5%af%be%e5%a4%9a%e3%81%ae%e3%82%af%e3%82%a8%e3%83%aa%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%aa%b2%e9%a1%8c%e3%81%af\/#local-main-organization-logo\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Blog - Silicon Cloud\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\u3069\u306e\u3088\u3046\u306b\u89e3\u6c7a\u3059\u308c\u3070\u3044\u3044\u3067\u3059\u304b\uff1f - Blog - Silicon Cloud","description":"\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\u3069\u306e\u3088\u3046\u306b\u89e3\u6c7a\u3059\u308c\u3070\u3044\u3044\u3067\u3059\u304b\uff1f\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002","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.silicloud.com\/ja\/blog\/\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\/","og_locale":"ja_JP","og_type":"article","og_title":"\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\u3069\u306e\u3088\u3046\u306b\u89e3\u6c7a\u3059\u308c\u3070\u3044\u3044\u3067\u3059\u304b\uff1f","og_description":"\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\u3069\u306e\u3088\u3046\u306b\u89e3\u6c7a\u3059\u308c\u3070\u3044\u3044\u3067\u3059\u304b\uff1f\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002","og_url":"https:\/\/www.silicloud.com\/ja\/blog\/\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\/","og_site_name":"Blog - Silicon Cloud","article_published_time":"2024-03-15T22:21:18+00:00","article_modified_time":"2025-08-06T03:56:11+00:00","author":"\u82bd\u4f9d, \u96e8\u591c","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"\u82bd\u4f9d, \u96e8\u591c","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"5\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%9e%e3%82%a4%e3%83%90%e3%83%86%e3%82%a3%e3%82%b9%e3%81%a7%e3%81%ae%e4%b8%80%e5%af%be%e5%a4%9a%e3%81%ae%e3%82%af%e3%82%a8%e3%83%aa%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%aa%b2%e9%a1%8c%e3%81%af\/","url":"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%9e%e3%82%a4%e3%83%90%e3%83%86%e3%82%a3%e3%82%b9%e3%81%a7%e3%81%ae%e4%b8%80%e5%af%be%e5%a4%9a%e3%81%ae%e3%82%af%e3%82%a8%e3%83%aa%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%aa%b2%e9%a1%8c%e3%81%af\/","name":"\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\u3069\u306e\u3088\u3046\u306b\u89e3\u6c7a\u3059\u308c\u3070\u3044\u3044\u3067\u3059\u304b\uff1f - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website"},"datePublished":"2024-03-15T22:21:18+00:00","dateModified":"2025-08-06T03:56:11+00:00","author":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/aeb60a7861f2f002b54c66bd65bc6c27"},"description":"\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\u3069\u306e\u3088\u3046\u306b\u89e3\u6c7a\u3059\u308c\u3070\u3044\u3044\u3067\u3059\u304b\uff1f\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002","breadcrumb":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%9e%e3%82%a4%e3%83%90%e3%83%86%e3%82%a3%e3%82%b9%e3%81%a7%e3%81%ae%e4%b8%80%e5%af%be%e5%a4%9a%e3%81%ae%e3%82%af%e3%82%a8%e3%83%aa%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%aa%b2%e9%a1%8c%e3%81%af\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%9e%e3%82%a4%e3%83%90%e3%83%86%e3%82%a3%e3%82%b9%e3%81%a7%e3%81%ae%e4%b8%80%e5%af%be%e5%a4%9a%e3%81%ae%e3%82%af%e3%82%a8%e3%83%aa%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%aa%b2%e9%a1%8c%e3%81%af\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%9e%e3%82%a4%e3%83%90%e3%83%86%e3%82%a3%e3%82%b9%e3%81%a7%e3%81%ae%e4%b8%80%e5%af%be%e5%a4%9a%e3%81%ae%e3%82%af%e3%82%a8%e3%83%aa%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%aa%b2%e9%a1%8c%e3%81%af\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.silicloud.com\/ja\/blog\/"},{"@type":"ListItem","position":2,"name":"\u30de\u30a4\u30d0\u30c6\u30a3\u30b9\u3067\u306e\u4e00\u5bfe\u591a\u306e\u30af\u30a8\u30ea\u306b\u95a2\u3059\u308b\u8ab2\u984c\u306f\u3069\u306e\u3088\u3046\u306b\u89e3\u6c7a\u3059\u308c\u3070\u3044\u3044\u3067\u3059\u304b\uff1f"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website","url":"https:\/\/www.silicloud.com\/ja\/blog\/","name":"Blog - Silicon Cloud","description":"","inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/aeb60a7861f2f002b54c66bd65bc6c27","name":"\u82bd\u4f9d, \u96e8\u591c","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6305fe5cabc2b854c1208975a47fbf3f8cef3f7cd775b94dceedbe59b74a8010?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6305fe5cabc2b854c1208975a47fbf3f8cef3f7cd775b94dceedbe59b74a8010?s=96&d=mm&r=g","caption":"\u82bd\u4f9d, \u96e8\u591c"},"url":"https:\/\/www.silicloud.com\/ja\/blog\/author\/meiamaya\/"},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%9e%e3%82%a4%e3%83%90%e3%83%86%e3%82%a3%e3%82%b9%e3%81%a7%e3%81%ae%e4%b8%80%e5%af%be%e5%a4%9a%e3%81%ae%e3%82%af%e3%82%a8%e3%83%aa%e3%81%ab%e9%96%a2%e3%81%99%e3%82%8b%e8%aa%b2%e9%a1%8c%e3%81%af\/#local-main-organization-logo","url":"","contentUrl":"","caption":"Blog - Silicon Cloud"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/17665","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/comments?post=17665"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/17665\/revisions"}],"predecessor-version":[{"id":93948,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/17665\/revisions\/93948"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/media?parent=17665"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/categories?post=17665"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/tags?post=17665"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}