{"id":1546,"date":"2007-01-02T18:55:00","date_gmt":"2007-01-02T18:55:00","guid":{"rendered":"http:\/\/gleamynode.net\/articles\/1546\/a-few-tips-on-javadoc"},"modified":"2022-12-28T01:46:40","modified_gmt":"2022-12-27T16:46:40","slug":"a-few-tips-on-javadoc","status":"publish","type":"post","link":"https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/","title":{"rendered":"A Few Tips on JavaDoc"},"content":{"rendered":"

JavaDoc\uc5d0 \ub300\ud55c \uba87 \uac00\uc9c0 \ud301<\/p>\n

It’s another Java 5-ish post which might not attract people, yet is very important. I find a lot of wrong or out-of-date JavaDoc due to lack of understandings on useful JavaDoc tags. Bad JavaDoc affects the quality of in-house softwares seriously, so knowing and using the following tips will improve the quality of your projects significantly.<\/p>\n

\uc0ac\ub78c\ub4e4\ud55c\ud14c \ubcc4\ub85c \ud765\ubbf8\uac00 \uc5c6\uc744, \ud558\uc9c0\ub9cc \uc544\uc8fc \uc911\uc694\ud55c \ub610 \ud558\ub098\uc758 Java 5 \uc2a4\ub7ec\uc6b4 \uc774\uc57c\uae30\uc785\ub2c8\ub2e4. JavaDoc \ud0dc\uadf8\uc5d0 \ub300\ud55c \uc774\ud574 \ubd80\uc871\uc73c\ub85c \uc798\ubabb\ub418\uac70\ub098 \ucca0\uc9c0\ub09c \ub0b4\uc6a9\uc744 \ub2f4\uace0 \uc788\ub294 JavaDoc\uc744 \ub9ce\uc774 \ubcf4\uc544 \uc654\uc2b5\ub2c8\ub2e4. \uc798\ubabb\ub41c JavaDoc\uc740 \uc0ac\ub0b4 \uc18c\ud504\ud2b8\uc6e8\uc5b4\uc758 \ud488\uc9c8\uc5d0 \uc2ec\uac01\ud55c \uc601\ud5a5\uc744 \uc8fc\ubbc0\ub85c, \ub2e4\uc74c\uc758 \ud301\uc744 \uc774\ud574\ud558\uace0 \uc0ac\uc6a9\ud55c\ub2e4\uba74 \uc5ec\ub7ec\ubd84 \ud504\ub85c\uc81d\ud2b8\uc758 \uc9c8\uc744 \ub180\ub78d\uac8c \ud5a5\uc0c1\uc2dc\ud0ac \uac83\uc785\ub2c8\ub2e4.<\/p>\n

@link<\/tt> and @linkplain<\/tt> tags<\/h3>\n

\n@link<\/tt> tag creates a link to an other type. I always prefer to use @link<\/tt> tag rather than not using it because it’s robust to refactoring (i.e. renaming classes also changes JavaDoc). @linkplain<\/tt> is also useful when you prefer a text link with a variable width font.<\/p>\n

@link<\/tt> \ud0dc\uadf8\ub294 \ub2e4\ub978 \ud0c0\uc784\uc73c\ub85c\uc758 \ub9c1\ud06c\ub97c \ub9cc\ub4ed\ub2c8\ub2e4. \uc800\ub294 \ud56d\uc0c1 @link<\/tt> \ud0dc\uadf8\ub97c \uc4f0\uc9c0 \uc54a\ub294 \uac83 \ubcf4\ub2e4\ub294 \uc4f0\ub294 \uac83\uc744 \uc120\ud638\ud558\ub294\ub370\uc694, \ub9ac\ud329\ud130\ub9c1\ud560 \ub54c JavaDoc\uc5d0 \uc801\uc5b4 \ub193\uc740 \ud074\ub798\uc2a4 \uc774\ub984\uc774 \uae68\uc9c0\uc9c0 \uc54a\uc544\uc11c\uc785\ub2c8\ub2e4. @linkplain<\/tt> \ub610\ud55c \uace0\uc815\ud3ed \ud14d\uc2a4\ud2b8 \ub9c1\ud06c\ubcf4\ub2e4\ub294 \uac00\ubcc0\ud3ed \ud14d\uc2a4\ud2b8 \ub9c1\ud06c\ub97c \uc4f0\uace0 \uc2f6\uc744 \ub54c \uc720\uc6a9\ud569\ub2c8\ub2e4.<\/p>\n

\n
\/**
\n * Creates a new {@link Element} with the
\n * specified name.
\n *\/<\/pre>\n<\/blockquote>\n

package.html<\/tt> (or package-info.html<\/tt>)<\/h3>\n

\njavadoc<\/tt> detects an HTML file named as ‘package-info.html<\/tt>‘ in each package directory, and integrates its content into the generated JavaDoc. Here’s my template.<\/p>\n

javadoc<\/tt>\uc740 \uac01 \ud328\ud0a4\uc9c0 \ub514\ub809\ud1a0\ub9ac\uc758 ‘package-info.html<\/tt>‘ HTML \ud30c\uc77c\uc744 \ucc3e\uc544 \uc0dd\uc131\ub420 JavaDoc \ub0b4\uc6a9\uc5d0 \ud1b5\ud569\uc2dc\ud0b5\ub2c8\ub2e4. \ub2e4\uc74c\uc740 \uc81c\uac00 \uc4f0\ub294 \ud15c\ud50c\ub9bf\uc785\ub2c8\ub2e4.<\/p>\n

\n
<!DOCTYPE HTML PUBLIC
\n \"-\/\/W3C\/\/DTD HTML 3.2 Final\/\/EN\">
\n<html>
\n<head>
\n<\/head>
\n<body>
\nThe first sentence is copied to the top of the
\nclass list in the generated JavaDoc. From here,
\nit's displayed after the generated class list.
\n...
\n<\/body>
\n<\/html><\/pre>\n<\/blockquote>\n

package-info.java<\/tt> (New in Java 5)<\/h3>\n

\nSince Java 5, you can put package-info.java<\/tt> instead of package-info.html<\/tt>. What is the advantage BTW? It’s in that you can specify package annotation.<\/p>\n

Java 5\ubd80\ud130\ub294 package-info.html<\/tt> \ub300\uc2e0 package-info.java<\/tt>\ub97c \ub123\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uadf8\ub7f0\ub370 \uc7a5\uc810\uc774 \ubb58\uae4c\uc694? \uc7a5\uc810\uc740 \ud328\ud0a4\uc9c0 \uc560\ub178\ud14c\uc774\uc158\uc744 \uc801\uc5b4 \uc904 \uc218 \uc788\ub2e4\ub294 \ub370 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n

\n
\/**
\n * The first sentence is copied to the top of the
\n * class list in the generated JavaDoc. From
\n * here, it's displayed after the generated class
\n * list.
\n *\/
\n@Annotation1
\n@Annotation2
\n...
\npackage org.apache.mina.common;<\/pre>\n<\/blockquote>\n

That’s all. No class definition. It’s a bad idea to define a class here.<\/p>\n

\uc774\uac8c \ub2f5\ub2c8\ub2e4. \ud074\ub798\uc2a4 \uc815\uc758\ub294 \uc5c6\uc2b5\ub2c8\ub2e4. \uc5ec\uae30\uc5d0 \ud074\ub798\uc2a4\ub97c \uc815\uc758\ud558\ub294 \uac83\uc740 \uc88b\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.<\/p>\n

@literal<\/tt> tag (New in Java 5)<\/h3>\n

\nNo more unreadable &lt;<\/tt>s and &gt;<\/tt>s!<\/p>\n

\ub354\uc774\uc0c1 \uc77d\uae30 \uc5b4\ub824\uc6b4 &lt;<\/tt>\uc640 &gt;<\/tt>\ub97c \uc4f8 \ud544\uc694\uac00 \uc5c6\uc2b5\ub2c8\ub2e4!<\/p>\n

\n
\/**
\n * Returns true when
\n * {@literal the specified value < 3}.
\n *\/<\/pre>\n<\/blockquote>\n

@code<\/tt> tag (New in Java 5)<\/h3>\n

\n@code<\/tt> tag is actually @literal<\/tt> + (<pre><\/tt> or <code><\/tt>).<\/p>\n

@code<\/tt> \ud0dc\uadf8\ub294 \uc0ac\uc2e4 @literal<\/tt> + (<pre><\/tt> \ub610\ub294 <code><\/tt>) \uc785\ub2c8\ub2e4.<\/p>\n

\n
\/**
\n * Returns {@code true} when something cool
\n * happened.
\n * {@code
\n * multilined expression
\n * is also fine.
\n * }
\n *\/<\/pre>\n<\/blockquote>\n

NOTE: JavaDoc doesn’t support multilined expression yet: Sun Bug Database<\/a>.<\/p>\n

NOTE: \uc544\uc9c1 JavaDoc\uc774 \uc5ec\ub7ec \uc904\ub85c \ub098\ub220 \uc4f0\ub294 \uac83\uc744 \uc9c0\uc6d0\ud558\uc9c0 \uc54a\ub124\uc694: Sun Bug Database<\/a>.<\/p>\n

@value<\/tt> tag (Better in Java 5)<\/h3>\n

\n@value<\/tt> tag inlines the value of the specified static constant field.<\/p>\n

@value<\/tt> \ud0dc\uadf8\ub294 \uc8fc\uc5b4\uc9c4 static \uc0c1\uc218 \ud544\ub4dc\uc758 \uac12\uc744 \ubb38\uc11c\uc5d0 \ubcf5\uc0ac\ud574 \ub123\uc5b4 \uc90d\ub2c8\ub2e4.<\/p>\n

\n
\/**
\n * Sets the property X. If an invalid value is
\n * specified, it's set to the default value,
\n * {@value Constants#DEFAULT_X}).
\n *\/<\/pre>\n<\/blockquote>\n

@deprecated<\/tt> tag and @Deprecated<\/tt> annotation<\/h3>\n

\nAccording to JavaDoc manual, it is a good practice to specify both a @deprecated<\/tt> tag (to specify a reason) and a @Deprecated<\/tt> annotation (for a compiler), though I don’t know why they had to introduce the annotation part.<\/p>\n

JavaDoc \ub9e4\ub274\uc5bc\uc5d0 \ub530\ub974\uba74 @deprecated<\/tt> \ud0dc\uadf8 (\uc774\uc720\ub97c \uc124\uba85\ud558\uae30 \uc704\ud574)\uc640 @Deprecated<\/tt> \uc560\ub178\ud14c\uc774\uc158 (\ucef4\ud30c\uc77c\ub7ec\ub97c \uc704\ud574)\uc744 \ub458 \ub2e4 \uc4f0\ub294 \uac83\uc774 \uc88b\ub2e4\uace0 \ud569\ub2c8\ub2e4. \uc65c \uc560\ub178\ud14c\uc774\uc158\uc744 \ub9cc\ub4e4\uc5b4\uc57c \ud588\uc5c8\ub294\uc9c0\ub294 \uc798 \ubaa8\ub974\uaca0\uc9c0\ub9cc\uc694.<\/p>\n

\n
\/**
\n * @deprecated This method has been deprecated
\n * since 1.0 because it performs a
\n * unsafe operation that breaks data
\n * integrity.
\n *\/
\n@Deprecated<\/pre>\n<\/blockquote>\n","protected":false},"excerpt":{"rendered":"

JavaDoc\uc5d0 \ub300\ud55c \uba87 \uac00\uc9c0 \ud301 It’s another Java 5-ish post which might not attract people, yet is very important. I find a lot of wrong or out-of-date JavaDoc due to lack of understandings on useful JavaDoc tags. Bad JavaDoc affects the quality of in-house softwares seriously, so knowing and using the following tips will improve… Continue reading →<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"yoast_head":"A Few Tips on JavaDoc — T's message of the day<\/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:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"A Few Tips on JavaDoc — T's message of the day\" \/>\n<meta property=\"og:description\" content=\"JavaDoc\uc5d0 \ub300\ud55c \uba87 \uac00\uc9c0 \ud301 It’s another Java 5-ish post which might not attract people, yet is very important. I find a lot of wrong or out-of-date JavaDoc due to lack of understandings on useful JavaDoc tags. Bad JavaDoc affects the quality of in-house softwares seriously, so knowing and using the following tips will improve... Continue reading →\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/\" \/>\n<meta property=\"og:site_name\" content=\"T's message of the day\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/trustin\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/trustin\" \/>\n<meta property=\"article:published_time\" content=\"2007-01-02T18:55:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-27T16:46:40+00:00\" \/>\n<meta name=\"author\" content=\"Trustin Lee\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/www.twitter.com\/trustin\" \/>\n<meta name=\"twitter:site\" content=\"@trustin\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Trustin Lee\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/\"},\"author\":{\"name\":\"Trustin Lee\",\"@id\":\"https:\/\/vault.motd.kr\/wordpress\/#\/schema\/person\/4430ad90fc2ddeef051565701d85db9d\"},\"headline\":\"A Few Tips on JavaDoc\",\"datePublished\":\"2007-01-02T18:55:00+00:00\",\"dateModified\":\"2022-12-27T16:46:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/\"},\"wordCount\":335,\"publisher\":{\"@id\":\"https:\/\/vault.motd.kr\/wordpress\/#\/schema\/person\/4430ad90fc2ddeef051565701d85db9d\"},\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/\",\"url\":\"https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/\",\"name\":\"A Few Tips on JavaDoc — T's message of the day\",\"isPartOf\":{\"@id\":\"https:\/\/vault.motd.kr\/wordpress\/#website\"},\"datePublished\":\"2007-01-02T18:55:00+00:00\",\"dateModified\":\"2022-12-27T16:46:40+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/vault.motd.kr\/wordpress\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"A Few Tips on JavaDoc\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/vault.motd.kr\/wordpress\/#website\",\"url\":\"https:\/\/vault.motd.kr\/wordpress\/\",\"name\":\"T's message of the day\",\"description\":\"the best is yet to come\",\"publisher\":{\"@id\":\"https:\/\/vault.motd.kr\/wordpress\/#\/schema\/person\/4430ad90fc2ddeef051565701d85db9d\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/vault.motd.kr\/wordpress\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/vault.motd.kr\/wordpress\/#\/schema\/person\/4430ad90fc2ddeef051565701d85db9d\",\"name\":\"Trustin Lee\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/vault.motd.kr\/wordpress\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/vault.motd.kr\/wordpress\/wp-content\/uploads\/2020\/09\/avatar-2019-966px.png\",\"contentUrl\":\"https:\/\/vault.motd.kr\/wordpress\/wp-content\/uploads\/2020\/09\/avatar-2019-966px.png\",\"width\":966,\"height\":966,\"caption\":\"Trustin Lee\"},\"logo\":{\"@id\":\"https:\/\/vault.motd.kr\/wordpress\/#\/schema\/person\/image\/\"},\"sameAs\":[\"https:\/\/t.motd.kr\/\",\"https:\/\/www.facebook.com\/trustin\",\"https:\/\/www.instagram.com\/trustinlee\/\",\"https:\/\/www.linkedin.com\/in\/trustin\",\"https:\/\/twitter.com\/https:\/\/www.twitter.com\/trustin\",\"https:\/\/www.youtube.com\/@trustinlee\"]}]}<\/script>","yoast_head_json":{"title":"A Few Tips on JavaDoc — T's message of the day","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:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/","og_locale":"en_US","og_type":"article","og_title":"A Few Tips on JavaDoc — T's message of the day","og_description":"JavaDoc\uc5d0 \ub300\ud55c \uba87 \uac00\uc9c0 \ud301 It’s another Java 5-ish post which might not attract people, yet is very important. I find a lot of wrong or out-of-date JavaDoc due to lack of understandings on useful JavaDoc tags. Bad JavaDoc affects the quality of in-house softwares seriously, so knowing and using the following tips will improve... Continue reading →","og_url":"https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/","og_site_name":"T's message of the day","article_publisher":"https:\/\/www.facebook.com\/trustin","article_author":"https:\/\/www.facebook.com\/trustin","article_published_time":"2007-01-02T18:55:00+00:00","article_modified_time":"2022-12-27T16:46:40+00:00","author":"Trustin Lee","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/www.twitter.com\/trustin","twitter_site":"@trustin","twitter_misc":{"Written by":"Trustin Lee","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/#article","isPartOf":{"@id":"https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/"},"author":{"name":"Trustin Lee","@id":"https:\/\/vault.motd.kr\/wordpress\/#\/schema\/person\/4430ad90fc2ddeef051565701d85db9d"},"headline":"A Few Tips on JavaDoc","datePublished":"2007-01-02T18:55:00+00:00","dateModified":"2022-12-27T16:46:40+00:00","mainEntityOfPage":{"@id":"https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/"},"wordCount":335,"publisher":{"@id":"https:\/\/vault.motd.kr\/wordpress\/#\/schema\/person\/4430ad90fc2ddeef051565701d85db9d"},"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/","url":"https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/","name":"A Few Tips on JavaDoc — T's message of the day","isPartOf":{"@id":"https:\/\/vault.motd.kr\/wordpress\/#website"},"datePublished":"2007-01-02T18:55:00+00:00","dateModified":"2022-12-27T16:46:40+00:00","breadcrumb":{"@id":"https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/vault.motd.kr\/wordpress\/posts\/1546\/a-few-tips-on-javadoc\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vault.motd.kr\/wordpress\/"},{"@type":"ListItem","position":2,"name":"A Few Tips on JavaDoc"}]},{"@type":"WebSite","@id":"https:\/\/vault.motd.kr\/wordpress\/#website","url":"https:\/\/vault.motd.kr\/wordpress\/","name":"T's message of the day","description":"the best is yet to come","publisher":{"@id":"https:\/\/vault.motd.kr\/wordpress\/#\/schema\/person\/4430ad90fc2ddeef051565701d85db9d"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vault.motd.kr\/wordpress\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/vault.motd.kr\/wordpress\/#\/schema\/person\/4430ad90fc2ddeef051565701d85db9d","name":"Trustin Lee","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vault.motd.kr\/wordpress\/#\/schema\/person\/image\/","url":"https:\/\/vault.motd.kr\/wordpress\/wp-content\/uploads\/2020\/09\/avatar-2019-966px.png","contentUrl":"https:\/\/vault.motd.kr\/wordpress\/wp-content\/uploads\/2020\/09\/avatar-2019-966px.png","width":966,"height":966,"caption":"Trustin Lee"},"logo":{"@id":"https:\/\/vault.motd.kr\/wordpress\/#\/schema\/person\/image\/"},"sameAs":["https:\/\/t.motd.kr\/","https:\/\/www.facebook.com\/trustin","https:\/\/www.instagram.com\/trustinlee\/","https:\/\/www.linkedin.com\/in\/trustin","https:\/\/twitter.com\/https:\/\/www.twitter.com\/trustin","https:\/\/www.youtube.com\/@trustinlee"]}]}},"_links":{"self":[{"href":"https:\/\/vault.motd.kr\/wordpress\/wp-json\/wp\/v2\/posts\/1546"}],"collection":[{"href":"https:\/\/vault.motd.kr\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/vault.motd.kr\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/vault.motd.kr\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/vault.motd.kr\/wordpress\/wp-json\/wp\/v2\/comments?post=1546"}],"version-history":[{"count":1,"href":"https:\/\/vault.motd.kr\/wordpress\/wp-json\/wp\/v2\/posts\/1546\/revisions"}],"predecessor-version":[{"id":5826,"href":"https:\/\/vault.motd.kr\/wordpress\/wp-json\/wp\/v2\/posts\/1546\/revisions\/5826"}],"wp:attachment":[{"href":"https:\/\/vault.motd.kr\/wordpress\/wp-json\/wp\/v2\/media?parent=1546"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vault.motd.kr\/wordpress\/wp-json\/wp\/v2\/categories?post=1546"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vault.motd.kr\/wordpress\/wp-json\/wp\/v2\/tags?post=1546"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}