{"id":99616,"date":"2024-03-22T01:16:52","date_gmt":"2024-03-21T16:16:52","guid":{"rendered":"https:\/\/www.silicloud.com\/ja\/blog\/spring-boot%e3%81%a7%e3%82%b9%e3%83%ac%e3%83%83%e3%83%89%e3%83%97%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%82%92%e6%95%99%e3%81%88%e3%81%a6%e3%81%8f%e3%81%a0\/"},"modified":"2024-03-27T22:24:06","modified_gmt":"2024-03-27T13:24:06","slug":"spring-boot%e3%81%a7%e3%82%b9%e3%83%ac%e3%83%83%e3%83%89%e3%83%97%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%82%92%e6%95%99%e3%81%88%e3%81%a6%e3%81%8f%e3%81%a0","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/ja\/blog\/spring-boot%e3%81%a7%e3%82%b9%e3%83%ac%e3%83%83%e3%83%89%e3%83%97%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%82%92%e6%95%99%e3%81%88%e3%81%a6%e3%81%8f%e3%81%a0\/","title":{"rendered":"Spring Boot\u3067\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u3092\u6559\u3048\u3066\u304f\u3060\u3055\u3044\u3002"},"content":{"rendered":"<p>Spring Boot \u3067\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u304c\u3044\u304f\u3064\u304b\u3042\u308a\u3001\u3053\u3053\u3067\u306f\u4e00\u822c\u7684\u306a2\u3064\u306e\u65b9\u6cd5\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002<\/p>\n<ol>\n<li>\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u30bf\u30b9\u30af\u5b9f\u884c<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">import<\/span> org.springframework.context.annotation.Bean;\r\n<span class=\"hljs-keyword\">import<\/span> org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;\r\n<span class=\"hljs-keyword\">import<\/span> org.springframework.stereotype.Component;\r\n\r\n<span class=\"hljs-meta\">@Component<\/span>\r\n<span class=\"hljs-keyword\">public<\/span> <span class=\"hljs-keyword\">class<\/span> <span class=\"hljs-title class_\">ThreadPoolConfig<\/span> {\r\n\r\n    <span class=\"hljs-meta\">@Bean<\/span>\r\n    <span class=\"hljs-keyword\">public<\/span> ThreadPoolTaskExecutor <span class=\"hljs-title function_\">taskExecutor<\/span><span class=\"hljs-params\">()<\/span> {\r\n        <span class=\"hljs-type\">ThreadPoolTaskExecutor<\/span> <span class=\"hljs-variable\">executor<\/span> <span class=\"hljs-operator\">=<\/span> <span class=\"hljs-keyword\">new<\/span> <span class=\"hljs-title class_\">ThreadPoolTaskExecutor<\/span>();\r\n        executor.setCorePoolSize(<span class=\"hljs-number\">10<\/span>); <span class=\"hljs-comment\">\/\/ \u8bbe\u7f6e\u6838\u5fc3\u7ebf\u7a0b\u6570<\/span>\r\n        executor.setMaxPoolSize(<span class=\"hljs-number\">20<\/span>); <span class=\"hljs-comment\">\/\/ \u8bbe\u7f6e\u6700\u5927\u7ebf\u7a0b\u6570<\/span>\r\n        executor.setQueueCapacity(<span class=\"hljs-number\">100<\/span>); <span class=\"hljs-comment\">\/\/ \u8bbe\u7f6e\u961f\u5217\u5bb9\u91cf<\/span>\r\n        executor.setThreadNamePrefix(<span class=\"hljs-string\">\"MyThread-\"<\/span>); <span class=\"hljs-comment\">\/\/ \u8bbe\u7f6e\u7ebf\u7a0b\u540d\u79f0\u524d\u7f00<\/span>\r\n        executor.initialize();\r\n        <span class=\"hljs-keyword\">return<\/span> executor;\r\n    }\r\n}\r\n<\/code><\/pre>\n<p>\u305d\u3057\u3066\u3001\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u306f ThreadPoolTaskExecutor \u3092\u30a4\u30f3\u30b8\u30a7\u30af\u30b7\u30e7\u30f3\u3059\u308b\u3053\u3068\u3067\u3001Spring Boot \u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u4efb\u610f\u306e\u4f4d\u7f6e\u304b\u3089\u4f7f\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002<\/p>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">import<\/span> org.springframework.beans.factory.annotation.Autowired;\r\n<span class=\"hljs-keyword\">import<\/span> org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;\r\n<span class=\"hljs-keyword\">import<\/span> org.springframework.stereotype.Component;\r\n\r\n<span class=\"hljs-meta\">@Component<\/span>\r\n<span class=\"hljs-keyword\">public<\/span> <span class=\"hljs-keyword\">class<\/span> <span class=\"hljs-title class_\">MyService<\/span> {\r\n\r\n    <span class=\"hljs-meta\">@Autowired<\/span>\r\n    <span class=\"hljs-keyword\">private<\/span> ThreadPoolTaskExecutor taskExecutor;\r\n\r\n    <span class=\"hljs-keyword\">public<\/span> <span class=\"hljs-keyword\">void<\/span> <span class=\"hljs-title function_\">doSomething<\/span><span class=\"hljs-params\">()<\/span> {\r\n        taskExecutor.execute(() -&gt; {\r\n            <span class=\"hljs-comment\">\/\/ \u5728\u6b64\u5904\u6267\u884c\u9700\u8981\u5f02\u6b65\u5904\u7406\u7684\u4efb\u52a1<\/span>\r\n        });\r\n    }\r\n}\r\n<\/code><\/pre>\n<ol>\n<li>@EnableAsync\u306e\u30cd\u30a4\u30c6\u30a3\u30d6\u306a\u65e5\u672c\u8a9e\u306e\u30d1\u30e9\u30d5\u30ec\u30fc\u30ba\u306f\u6b21\u306e\u3068\u304a\u308a\u3067\u3059\u3002* \u975e\u540c\u671f\u51e6\u7406\u3092\u6709\u52b9\u5316\u3059\u308b<\/li>\n<li>\u975e\u540c\u671f\u51e6\u7406\u6709\u52b9<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">import<\/span> org.springframework.context.annotation.Configuration;\r\n<span class=\"hljs-keyword\">import<\/span> org.springframework.scheduling.annotation.EnableAsync;\r\n\r\n<span class=\"hljs-meta\">@Configuration<\/span>\r\n<span class=\"hljs-meta\">@EnableAsync<\/span>\r\n<span class=\"hljs-keyword\">public<\/span> <span class=\"hljs-keyword\">class<\/span> <span class=\"hljs-title class_\">AppConfig<\/span> {\r\n\r\n}\r\n<\/code><\/pre>\n<p>\u305d\u3053\u3067\u3001\u3042\u306a\u305f\u306f@Async\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u4f7f\u3048\u3070\u3001\u975e\u540c\u671f\u3067\u5b9f\u884c\u3057\u305f\u3044\u30e1\u30bd\u30c3\u30c9\u306e\u3069\u308c\u306b\u3067\u3082\u4f7f\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002<\/p>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">import<\/span> org.springframework.scheduling.annotation.Async;\r\n<span class=\"hljs-keyword\">import<\/span> org.springframework.stereotype.Component;\r\n\r\n<span class=\"hljs-meta\">@Component<\/span>\r\n<span class=\"hljs-keyword\">public<\/span> <span class=\"hljs-keyword\">class<\/span> <span class=\"hljs-title class_\">MyService<\/span> {\r\n\r\n    <span class=\"hljs-meta\">@Async<\/span>\r\n    <span class=\"hljs-keyword\">public<\/span> <span class=\"hljs-keyword\">void<\/span> <span class=\"hljs-title function_\">doSomething<\/span><span class=\"hljs-params\">()<\/span> {\r\n        <span class=\"hljs-comment\">\/\/ \u5728\u6b64\u5904\u6267\u884c\u9700\u8981\u5f02\u6b65\u5904\u7406\u7684\u4efb\u52a1<\/span>\r\n    }\r\n}\r\n<\/code><\/pre>\n<p>@Async\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u4f7f\u7528\u3059\u308b\u3068\u3001Spring Boot\u304c\u975e\u540c\u671f\u30bf\u30b9\u30af\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306eThreadPool\u3092\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3057\u307e\u3059\u3002ThreadPool\u306e\u8a2d\u5b9a\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3057\u305f\u3044\u5834\u5408\u306f\u3001Spring Boot\u306e\u30e1\u30a4\u30f3\u8a2d\u5b9a\u30af\u30e9\u30b9\u306b@EnableAsync\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0\u3057\u3001\u540c\u3058\u30af\u30e9\u30b9\u306bTaskExecutor Bean\u3092\u5b9a\u7fa9\u3057\u307e\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Spring Boot \u3067\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u304c\u3044\u304f\u3064\u304b\u3042\u308a\u3001\u3053\u3053\u3067\u306f\u4e00\u822c\u7684\u306a2\u3064\u306e\u65b9\u6cd5\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002 \u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u30bf\u30b9\u30af\u5b9f\u884c import org.springframework.context.annota [&hellip;]<\/p>\n","protected":false},"author":6,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-99616","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"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>Spring Boot\u3067\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u3092\u6559\u3048\u3066\u304f\u3060\u3055\u3044\u3002 - Blog - Silicon Cloud<\/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:\/\/www.silicloud.com\/ja\/blog\/spring-boot\u3067\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u3092\u6559\u3048\u3066\u304f\u3060\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Spring Boot\u3067\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u3092\u6559\u3048\u3066\u304f\u3060\u3055\u3044\u3002\" \/>\n<meta property=\"og:description\" content=\"Spring Boot \u3067\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u304c\u3044\u304f\u3064\u304b\u3042\u308a\u3001\u3053\u3053\u3067\u306f\u4e00\u822c\u7684\u306a2\u3064\u306e\u65b9\u6cd5\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002 \u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u30bf\u30b9\u30af\u5b9f\u884c import org.springframework.context.annota [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/ja\/blog\/spring-boot\u3067\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u3092\u6559\u3048\u3066\u304f\u3060\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-21T16:16:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-27T13:24:06+00:00\" \/>\n<meta name=\"author\" content=\"\u6d77\u6597, \u8475\" \/>\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=\"\u6d77\u6597, \u8475\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/spring-boot%e3%81%a7%e3%82%b9%e3%83%ac%e3%83%83%e3%83%89%e3%83%97%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%82%92%e6%95%99%e3%81%88%e3%81%a6%e3%81%8f%e3%81%a0\/\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/spring-boot%e3%81%a7%e3%82%b9%e3%83%ac%e3%83%83%e3%83%89%e3%83%97%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%82%92%e6%95%99%e3%81%88%e3%81%a6%e3%81%8f%e3%81%a0\/\",\"name\":\"Spring Boot\u3067\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u3092\u6559\u3048\u3066\u304f\u3060\u3055\u3044\u3002 - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\"},\"datePublished\":\"2024-03-21T16:16:52+00:00\",\"dateModified\":\"2024-03-27T13:24:06+00:00\",\"author\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/20cfc053626f4d45c0fa7a4e7964b5b6\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/spring-boot%e3%81%a7%e3%82%b9%e3%83%ac%e3%83%83%e3%83%89%e3%83%97%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%82%92%e6%95%99%e3%81%88%e3%81%a6%e3%81%8f%e3%81%a0\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/ja\/blog\/spring-boot%e3%81%a7%e3%82%b9%e3%83%ac%e3%83%83%e3%83%89%e3%83%97%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%82%92%e6%95%99%e3%81%88%e3%81%a6%e3%81%8f%e3%81%a0\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/spring-boot%e3%81%a7%e3%82%b9%e3%83%ac%e3%83%83%e3%83%89%e3%83%97%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%82%92%e6%95%99%e3%81%88%e3%81%a6%e3%81%8f%e3%81%a0\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.silicloud.com\/ja\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Spring Boot\u3067\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u3092\u6559\u3048\u3066\u304f\u3060\u3055\u3044\u3002\"}]},{\"@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\/20cfc053626f4d45c0fa7a4e7964b5b6\",\"name\":\"\u6d77\u6597, \u8475\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/25aec9a18954b6bfb7e4f7219c2923d62c6f0c9f4d5c0171228fe41751c0ab7a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/25aec9a18954b6bfb7e4f7219c2923d62c6f0c9f4d5c0171228fe41751c0ab7a?s=96&d=mm&r=g\",\"caption\":\"\u6d77\u6597, \u8475\"},\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/author\/kaitoaoi\/\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/spring-boot%e3%81%a7%e3%82%b9%e3%83%ac%e3%83%83%e3%83%89%e3%83%97%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%82%92%e6%95%99%e3%81%88%e3%81%a6%e3%81%8f%e3%81%a0\/#local-main-organization-logo\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Blog - Silicon Cloud\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Spring Boot\u3067\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u3092\u6559\u3048\u3066\u304f\u3060\u3055\u3044\u3002 - Blog - Silicon Cloud","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\/spring-boot\u3067\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u3092\u6559\u3048\u3066\u304f\u3060\/","og_locale":"ja_JP","og_type":"article","og_title":"Spring Boot\u3067\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u3092\u6559\u3048\u3066\u304f\u3060\u3055\u3044\u3002","og_description":"Spring Boot \u3067\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u304c\u3044\u304f\u3064\u304b\u3042\u308a\u3001\u3053\u3053\u3067\u306f\u4e00\u822c\u7684\u306a2\u3064\u306e\u65b9\u6cd5\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002 \u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u30bf\u30b9\u30af\u5b9f\u884c import org.springframework.context.annota [&hellip;]","og_url":"https:\/\/www.silicloud.com\/ja\/blog\/spring-boot\u3067\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u3092\u6559\u3048\u3066\u304f\u3060\/","og_site_name":"Blog - Silicon Cloud","article_published_time":"2024-03-21T16:16:52+00:00","article_modified_time":"2024-03-27T13:24:06+00:00","author":"\u6d77\u6597, \u8475","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"\u6d77\u6597, \u8475","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"1\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/ja\/blog\/spring-boot%e3%81%a7%e3%82%b9%e3%83%ac%e3%83%83%e3%83%89%e3%83%97%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%82%92%e6%95%99%e3%81%88%e3%81%a6%e3%81%8f%e3%81%a0\/","url":"https:\/\/www.silicloud.com\/ja\/blog\/spring-boot%e3%81%a7%e3%82%b9%e3%83%ac%e3%83%83%e3%83%89%e3%83%97%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%82%92%e6%95%99%e3%81%88%e3%81%a6%e3%81%8f%e3%81%a0\/","name":"Spring Boot\u3067\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u3092\u6559\u3048\u3066\u304f\u3060\u3055\u3044\u3002 - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website"},"datePublished":"2024-03-21T16:16:52+00:00","dateModified":"2024-03-27T13:24:06+00:00","author":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/20cfc053626f4d45c0fa7a4e7964b5b6"},"breadcrumb":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/spring-boot%e3%81%a7%e3%82%b9%e3%83%ac%e3%83%83%e3%83%89%e3%83%97%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%82%92%e6%95%99%e3%81%88%e3%81%a6%e3%81%8f%e3%81%a0\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/ja\/blog\/spring-boot%e3%81%a7%e3%82%b9%e3%83%ac%e3%83%83%e3%83%89%e3%83%97%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%82%92%e6%95%99%e3%81%88%e3%81%a6%e3%81%8f%e3%81%a0\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/ja\/blog\/spring-boot%e3%81%a7%e3%82%b9%e3%83%ac%e3%83%83%e3%83%89%e3%83%97%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%82%92%e6%95%99%e3%81%88%e3%81%a6%e3%81%8f%e3%81%a0\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.silicloud.com\/ja\/blog\/"},{"@type":"ListItem","position":2,"name":"Spring Boot\u3067\u30b9\u30ec\u30c3\u30c9\u30d7\u30fc\u30eb\u3092\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u3092\u6559\u3048\u3066\u304f\u3060\u3055\u3044\u3002"}]},{"@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\/20cfc053626f4d45c0fa7a4e7964b5b6","name":"\u6d77\u6597, \u8475","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/25aec9a18954b6bfb7e4f7219c2923d62c6f0c9f4d5c0171228fe41751c0ab7a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/25aec9a18954b6bfb7e4f7219c2923d62c6f0c9f4d5c0171228fe41751c0ab7a?s=96&d=mm&r=g","caption":"\u6d77\u6597, \u8475"},"url":"https:\/\/www.silicloud.com\/ja\/blog\/author\/kaitoaoi\/"},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/spring-boot%e3%81%a7%e3%82%b9%e3%83%ac%e3%83%83%e3%83%89%e3%83%97%e3%83%bc%e3%83%ab%e3%82%92%e4%bd%9c%e6%88%90%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%82%92%e6%95%99%e3%81%88%e3%81%a6%e3%81%8f%e3%81%a0\/#local-main-organization-logo","url":"","contentUrl":"","caption":"Blog - Silicon Cloud"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/99616","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\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/comments?post=99616"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/99616\/revisions"}],"predecessor-version":[{"id":196026,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/99616\/revisions\/196026"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/media?parent=99616"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/categories?post=99616"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/tags?post=99616"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}