{"id":33083,"date":"2024-11-01T09:13:39","date_gmt":"2024-11-01T09:13:39","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=33083"},"modified":"2024-11-01T11:29:03","modified_gmt":"2024-11-01T11:29:03","slug":"spring-boot-backend-development-course-what-is-a-library","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/33083\/","title":{"rendered":"Spring Boot Backend Development Course, What is a Library"},"content":{"rendered":"<p><body><\/p>\n<p>Spring Boot is a powerful and flexible web application framework written in the Java programming language. It is particularly optimized for backend development, helping developers quickly and easily build RESTful APIs or web applications. In this course, we will explore Spring Boot and its related libraries in depth.<\/p>\n<h2>1. Introduction to Spring Boot<\/h2>\n<p>Spring Boot is an extension of the Spring Framework, providing a tool to create stand-alone applications with minimal configuration. The main features of Spring Boot are as follows:<\/p>\n<ul>\n<li><strong>Easy Configuration:<\/strong> It minimizes XML configuration files and transitions to Java-based configuration, enhancing code readability and maintainability.<\/li>\n<li><strong>Application Independence:<\/strong> It allows applications to run using an embedded web server (e.g., Tomcat) without requiring separate server installation.<\/li>\n<li><strong>Automatic Configuration:<\/strong> It automatically finds configurations suited to the environment, saving developers a lot of time.<\/li>\n<li><strong>Extensive Community:<\/strong> Spring is a globally popular framework with a strong community and documentation.<\/li>\n<\/ul>\n<h2>2. Core Components of Spring Boot<\/h2>\n<p>Spring Boot has various components, each performing specific functions, contributing together to build powerful backend applications. Here, we will introduce some key components.<\/p>\n<h3>2.1. Spring MVC<\/h3>\n<p>Spring MVC (Model-View-Controller) is a pattern for web controllers that handles requests and assembles models and views to generate responses. Spring Boot&#8217;s MVC is very useful for creating REST APIs.<\/p>\n<pre><code>\n@RestController\n@RequestMapping(\"\/api\/hello\")\npublic class HelloController {\n    @GetMapping\n    public String sayHello() {\n        return \"Hello, Spring Boot!\";\n    }\n}\n<\/code><\/pre>\n<h3>2.2. Spring Data JPA<\/h3>\n<p>Spring Data JPA is a library that makes data access easier. It is an implementation of JPA (Java Persistence API) that simplifies interactions with the database. Using this feature allows database operations to be performed without writing complex SQL queries.<\/p>\n<h3>2.3. Spring Security<\/h3>\n<p>Spring Security is a library for securing applications. It controls user access through Authentication and Authorization, helping build secure applications through basic security configurations.<\/p>\n<h2>3. What is a Library?<\/h2>\n<p>In programming, a library refers to a pre-written set of code that developers can reuse. Generally, it consists of code, modules, and functions that perform specific functions, allowing developers to refer to this library for efficient work. In the case of Spring Boot, rapid development is possible through various libraries.<\/p>\n<h3>3.1. Features of Libraries<\/h3>\n<ul>\n<li><strong>Reusability:<\/strong> Code written once can be reused across multiple projects.<\/li>\n<li><strong>Increased Productivity:<\/strong> Existing libraries can be used without the need to implement complex features from scratch.<\/li>\n<li><strong>Ease of Maintenance:<\/strong> When a library is updated, the applications using it can also easily switch to the latest version.<\/li>\n<li><strong>Community Support:<\/strong> Open-source libraries typically have active communities that assist in problem-solving.<\/li>\n<\/ul>\n<h3>3.2. Key Libraries in Spring Boot<\/h3>\n<p>Spring Boot utilizes several libraries to provide various functionalities. Here, we introduce a few key libraries.<\/p>\n<ul>\n<li><strong>Spring Web:<\/strong> A library for web application development, including MVC and REST support features.<\/li>\n<li><strong>Spring Boot Starter Data JPA:<\/strong> A library that helps easily use JPA.<\/li>\n<li><strong>Spring Boot Starter Security:<\/strong> It includes essential libraries for security.<\/li>\n<li><strong>Spring Boot Starter Thymeleaf:<\/strong> It is used to create dynamic web pages using the server-side template engine Thymeleaf.<\/li>\n<\/ul>\n<h2>4. Using Spring Boot Libraries<\/h2>\n<p>Now, let&#8217;s learn how to use libraries in Spring Boot. In Spring Boot, libraries can be added using build tools like Maven or Gradle.<\/p>\n<h3>4.1. Adding Libraries with Maven<\/h3>\n<p>When using Maven, dependencies must be added to the <code>pom.xml<\/code> file. Below is an example of adding JPA and Web Starter:<\/p>\n<pre><code>\n<dependencies>\n    <dependency>\n        <groupid>org.springframework.boot<\/groupid>\n        <artifactid>spring-boot-starter-data-jpa<\/artifactid>\n    <\/dependency>\n    <dependency>\n        <groupid>org.springframework.boot<\/groupid>\n        <artifactid>spring-boot-starter-web<\/artifactid>\n    <\/dependency>\n<\/dependencies>\n<\/code><\/pre>\n<h3>4.2. Adding Libraries with Gradle<\/h3>\n<p>When using Gradle, dependencies are added to the <code>build.gradle<\/code> file:<\/p>\n<pre><code>\ndependencies {\n    implementation 'org.springframework.boot:spring-boot-starter-data-jpa'\n    implementation 'org.springframework.boot:spring-boot-starter-web'\n}\n<\/code><\/pre>\n<h2>5. Building a Spring Boot Backend Application<\/h2>\n<p>Let&#8217;s explore how to build a simple backend application using Spring Boot. As an example, we will create a RESTful API. The following outlines the basic process.<\/p>\n<h3>5.1. Environment Setup<\/h3>\n<p>First, create a new Spring Boot project in your IDE (e.g., IntelliJ IDEA). Select the basic dependencies for web and JPA.<\/p>\n<h3>5.2. Creating an Entity Class<\/h3>\n<p>Create an Entity class mapped to the database:<\/p>\n<pre><code>\n@Entity\npublic class User {\n    @Id\n    @GeneratedValue(strategy = GenerationType.IDENTITY)\n    private Long id;\n\n    private String name;\n    private String email;\n\n    \/\/ getters and setters\n}\n<\/code><\/pre>\n<h3>5.3. Writing a Repository Interface<\/h3>\n<p>Write a Repository interface that automatically provides CRUD functionalities through Spring Data JPA:<\/p>\n<pre><code>\npublic interface UserRepository extends JpaRepository<User, Long> {\n}\n<\/code><\/pre>\n<h3>5.4. Writing a Service Class<\/h3>\n<p>Write a service class that performs business logic:<\/p>\n<pre><code>\n@Service\npublic class UserService {\n\n    @Autowired\n    private UserRepository userRepository;\n\n    public List<User> getAllUsers() {\n        return userRepository.findAll();\n    }\n\n    public User createUser(User user) {\n        return userRepository.save(user);\n    }\n}\n<\/code><\/pre>\n<h3>5.5. Writing a Controller Class<\/h3>\n<p>Write a REST API controller that handles HTTP requests:<\/p>\n<pre><code>\n@RestController\n@RequestMapping(\"\/api\/users\")\npublic class UserController {\n\n    @Autowired\n    private UserService userService;\n\n    @GetMapping\n    public List<User> getAllUsers() {\n        return userService.getAllUsers();\n    }\n\n    @PostMapping\n    public User createUser(@RequestBody User user) {\n        return userService.createUser(user);\n    }\n}\n<\/code><\/pre>\n<h2>6. Advantages of Spring Boot<\/h2>\n<p>There are several advantages to using Spring Boot. It contributes to increased development efficiency, improved maintainability, and overall enhanced code quality.<\/p>\n<h3>6.1. Rapid Development<\/h3>\n<p>Through automatic configuration and minimal setup, development can proceed quickly. You can choose to use only the necessary features, avoiding unnecessary code writing.<\/p>\n<h3>6.2. Community-Based Support<\/h3>\n<p>As Spring Boot is used by many developers worldwide, there are various resources and examples available to help resolve issues. Information can be easily found through blogs, forums, and official documentation.<\/p>\n<h2>7. Conclusion<\/h2>\n<p>In this course, we explored Spring Boot and its libraries in detail. Utilizing Spring Boot provides the advantage of easily building powerful backend systems. We hope you will continue to add various features using Spring Boot and develop more advanced applications.<\/p>\n<p>Thank you!<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Spring Boot is a powerful and flexible web application framework written in the Java programming language. It is particularly optimized for backend development, helping developers quickly and easily build RESTful APIs or web applications. In this course, we will explore Spring Boot and its related libraries in depth. 1. Introduction to Spring Boot Spring Boot &hellip; <a href=\"https:\/\/atmokpo.com\/w\/33083\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Spring Boot Backend Development Course, What is a Library&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[131],"tags":[],"class_list":["post-33083","post","type-post","status-publish","format-standard","hentry","category-spring-boot-backend-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Spring Boot Backend Development Course, What is a Library - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/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:\/\/atmokpo.com\/w\/33083\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Spring Boot Backend Development Course, What is a Library - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Spring Boot is a powerful and flexible web application framework written in the Java programming language. It is particularly optimized for backend development, helping developers quickly and easily build RESTful APIs or web applications. In this course, we will explore Spring Boot and its related libraries in depth. 1. Introduction to Spring Boot Spring Boot &hellip; \ub354 \ubcf4\uae30 &quot;Spring Boot Backend Development Course, What is a Library&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/33083\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:13:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:29:03+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/33083\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33083\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Spring Boot Backend Development Course, What is a Library\",\"datePublished\":\"2024-11-01T09:13:39+00:00\",\"dateModified\":\"2024-11-01T11:29:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33083\/\"},\"wordCount\":781,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Spring Boot backend development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/33083\/\",\"url\":\"https:\/\/atmokpo.com\/w\/33083\/\",\"name\":\"Spring Boot Backend Development Course, What is a Library - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:13:39+00:00\",\"dateModified\":\"2024-11-01T11:29:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33083\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/33083\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/33083\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Spring Boot Backend Development Course, What is a Library\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Spring Boot Backend Development Course, What is a Library - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","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:\/\/atmokpo.com\/w\/33083\/","og_locale":"ko_KR","og_type":"article","og_title":"Spring Boot Backend Development Course, What is a Library - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Spring Boot is a powerful and flexible web application framework written in the Java programming language. It is particularly optimized for backend development, helping developers quickly and easily build RESTful APIs or web applications. In this course, we will explore Spring Boot and its related libraries in depth. 1. Introduction to Spring Boot Spring Boot &hellip; \ub354 \ubcf4\uae30 \"Spring Boot Backend Development Course, What is a Library\"","og_url":"https:\/\/atmokpo.com\/w\/33083\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:13:39+00:00","article_modified_time":"2024-11-01T11:29:03+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"4\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/33083\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/33083\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Spring Boot Backend Development Course, What is a Library","datePublished":"2024-11-01T09:13:39+00:00","dateModified":"2024-11-01T11:29:03+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/33083\/"},"wordCount":781,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Spring Boot backend development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/33083\/","url":"https:\/\/atmokpo.com\/w\/33083\/","name":"Spring Boot Backend Development Course, What is a Library - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:13:39+00:00","dateModified":"2024-11-01T11:29:03+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/33083\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/33083\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/33083\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Spring Boot Backend Development Course, What is a Library"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33083","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=33083"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33083\/revisions"}],"predecessor-version":[{"id":33084,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33083\/revisions\/33084"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=33083"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=33083"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=33083"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}