{"id":316,"date":"2009-05-26T02:06:58","date_gmt":"2009-05-26T02:06:58","guid":{"rendered":"http:\/\/apollo89.com\/wordpress\/?p=316"},"modified":"2013-02-03T16:43:47","modified_gmt":"2013-02-03T07:43:47","slug":"groovy-%ec%84%a4%ec%b9%98-%eb%b0%8f-%ed%85%8c%ec%8a%a4%ed%8a%b8","status":"publish","type":"post","link":"https:\/\/apollo89.com\/wordpress\/?p=316","title":{"rendered":"groovy \uc124\uce58 \ubc0f \ud14c\uc2a4\ud2b8."},"content":{"rendered":"<p>&nbsp;<\/p>\n<p>Groovy\ub780<\/p>\n<p>\uc790\ubc14 \ud50c\ub7ab\ud3fc\uc5d0\uc11c \uc2e4\ud589\ud558\ub294 \ub3d9\uc801 \uc560\uc790\uc77c \uc5b8\uc5b4\uc774\uba70 Python, Ruby, Smalltalk \uc5b8\uc5b4\ub85c\ubd80\ud130 \uc601\ud5a5\uc744 \ubc1b\uc558\uc2b5\ub2c8\ub2e4. \uc790\ubc14 \uac1c\ubc1c\uc790\ub294 \uc790\ubc14 \ube44\uc2b7\ud55c \ubb38\ubc95\uc73c\ub85c \uc774\ub7ec\ud55c \ud2b9\uc9d5\ub4e4\uc744 \uad6c\ud604\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<p>\uc6f9 \uc5b4\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c, \uc258 \uc2a4\ud06c\ub9bd\ud2b8 \uc0ac\uc6a9, Groovy\uc758 JUnit \uae30\ub2a5\uc744 \uc774\uc6a9\ud55c \uac04\uacb0\ud558\uace0 \uc758\ubbf8\uc788\ub294 \ud14c\uc2a4\ud2b8 \ucf00\uc774\uc2a4 \uc791\uc131, \uc5b4\ud50c\ub9ac\ucf00\uc774\uc158 \ud504\ub85c\ud1a0\ud0c0\uc774\ud551\uacfc \uad6c\ud604\uc744 \uac04\ub2e8\ud558\uac8c \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<p>Groovy\uc5d0\uc11c\ub294 \uae30\uc874 \ubaa8\ub4e0 \uc790\ubc14 \uac1d\uccb4, \ub77c\uc774\ube0c\ub7ec\ub9ac\uac00 \uadf8\ub300\ub85c \ub3d9\uc791\ud558\uba70, \uc5b4\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uacfc \uc2a4\ud06c\ub9bd\ud305 \ubaa8\ub4dc\uc5d0\uc11c \uc790\ubc14 \ubc14\uc774\ud2b8\ucf54\ub4dc\ub85c \ucef4\ud30c\uc77c\ub429\ub2c8\ub2e4.<\/p>\n<p>Groovy \uc124\uce58<\/p>\n<p><a href=\"http:\/\/groovy.codehaus.org\/Download\">http:\/\/groovy.codehaus.org\/Download<\/a> \uc5d0\uc11c Download Windows-Installer \ubc84\uc804\uc744 \ub2e4\uc6b4\ubc1b\uc544\uc11c \uc124\uce58.<br \/>\n(\ucc38\uace0\ub85c \ud604\uc7ac\uae4c\uc9c0 \ucd5c\uc2e0\ubc84\uc804\uc740 Groovy 1.6.3 \uc785\ub2c8\ub2e4.)<\/p>\n<p>Groovy \uc0ac\uc6a9\ud558\uae30<br \/>\ngroovy \ub97c cmd \ucc3d\uc5d0\uc11c \uc9c1\uc811 \uc0ac\uc6a9\ud560 \uc218\ub3c4 \uc788\uace0, (groovysh.exe)<br \/>\ngroovyConsole \uc774\ub77c\ub294 \uc708\ub3c4\uc6b0 GUI\ub85c \uc0ac\uc6a9\ud560 \uc218\ub3c4 \uc788\uc74c.<\/p>\n<p>\uac04\ub2e8\ud55c hello world \uc2a4\ud06c\ub9bd\ud2b8:<\/p>\n<pre class=\"lang:default decode:true \" >def name='World'; \r\nprintln \"Hello $name!\"\r\n<\/pre>\n<p>\uac1d\uccb4 \uc9c0\ud5a5 \uc0ac\uc6a9 \ucf54\ub4dc:<\/p>\n<pre class=\"lang:java decode:true \" >class Greet {\r\n    def name\r\n    Greet(who) { name = who[0].toUpperCase() + who[1..-1] }\r\n    def salute() { println \"Hello $name!\" }\r\n}\r\n\r\ng = new Greet('world') \/\/ \uac1d\uccb4 \uc0dd\uc131\r\ng.salute() \/\/ \"Hello World!\" \ucd9c\ub825<\/pre>\n<p>\uae30\uc874 \uc790\ubc14 \ub77c\uc774\ube0c\ub7ec\ub9ac \uc0ac\uc6a9:<\/p>\n<pre class=\"lang:java decode:true \" >import org.apache.commons.lang.WordUtils\r\n\r\nclass Greeter extends Greet {\r\n    Greeter(who) { name = WordUtils.capitalize(who) }\r\n}\r\n\r\nnew Greeter('world').salute()\r\n<\/pre>\n<p>\ucee4\ub9e8\ub4dc \ub77c\uc778\uc5d0\uc11c \uc2e4\ud589:<\/p>\n<pre class=\"lang:default decode:true \" >]$ groovy -e \"println 'Hello ' + args[0]\" World<\/pre>\n<p>\ucc38\uace0<br \/>\n<a href=\"http:\/\/groovy.codehaus.org\">http:\/\/groovy.codehaus.org<\/a><br \/>\n<a href=\"http:\/\/groovy.codehaus.org\/Korean+Tutorial+1+-+Getting+started\">http:\/\/groovy.codehaus.org\/Korean+Tutorial+1+-+Getting+started<\/a><\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; Groovy\ub780 \uc790\ubc14 \ud50c\ub7ab\ud3fc\uc5d0\uc11c \uc2e4\ud589\ud558\ub294 \ub3d9\uc801 \uc560\uc790\uc77c \uc5b8\uc5b4\uc774\uba70 Python, Ruby, Smalltalk \uc5b8\uc5b4\ub85c\ubd80\ud130 \uc601\ud5a5\uc744 \ubc1b\uc558\uc2b5\ub2c8\ub2e4. \uc790\ubc14 \uac1c\ubc1c\uc790\ub294 \uc790\ubc14 \ube44\uc2b7\ud55c \ubb38\ubc95\uc73c\ub85c \uc774\ub7ec\ud55c \ud2b9\uc9d5\ub4e4\uc744 \uad6c\ud604\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc6f9 \uc5b4\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c, \uc258 \uc2a4\ud06c\ub9bd\ud2b8 \uc0ac\uc6a9, Groovy\uc758 JUnit \uae30\ub2a5\uc744 \uc774\uc6a9\ud55c \uac04\uacb0\ud558\uace0 \uc758\ubbf8\uc788\ub294 \ud14c\uc2a4\ud2b8 \ucf00\uc774\uc2a4 \uc791\uc131, \uc5b4\ud50c\ub9ac\ucf00\uc774\uc158 &hellip; <a href=\"https:\/\/apollo89.com\/wordpress\/?p=316\">Continue reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[662],"tags":[377,378,379,41],"class_list":["post-316","post","type-post","status-publish","format-standard","hentry","category-java-jsp","tag-groovy","tag-script","tag-379","tag-41"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>groovy \uc124\uce58 \ubc0f \ud14c\uc2a4\ud2b8. - Apollo89.com<\/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:\/\/apollo89.com\/wordpress\/?p=316\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"groovy \uc124\uce58 \ubc0f \ud14c\uc2a4\ud2b8. - Apollo89.com\" \/>\n<meta property=\"og:description\" content=\"&nbsp; Groovy\ub780 \uc790\ubc14 \ud50c\ub7ab\ud3fc\uc5d0\uc11c \uc2e4\ud589\ud558\ub294 \ub3d9\uc801 \uc560\uc790\uc77c \uc5b8\uc5b4\uc774\uba70 Python, Ruby, Smalltalk \uc5b8\uc5b4\ub85c\ubd80\ud130 \uc601\ud5a5\uc744 \ubc1b\uc558\uc2b5\ub2c8\ub2e4. \uc790\ubc14 \uac1c\ubc1c\uc790\ub294 \uc790\ubc14 \ube44\uc2b7\ud55c \ubb38\ubc95\uc73c\ub85c \uc774\ub7ec\ud55c \ud2b9\uc9d5\ub4e4\uc744 \uad6c\ud604\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc6f9 \uc5b4\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c, \uc258 \uc2a4\ud06c\ub9bd\ud2b8 \uc0ac\uc6a9, Groovy\uc758 JUnit \uae30\ub2a5\uc744 \uc774\uc6a9\ud55c \uac04\uacb0\ud558\uace0 \uc758\ubbf8\uc788\ub294 \ud14c\uc2a4\ud2b8 \ucf00\uc774\uc2a4 \uc791\uc131, \uc5b4\ud50c\ub9ac\ucf00\uc774\uc158 &hellip; Continue reading &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/apollo89.com\/wordpress\/?p=316\" \/>\n<meta property=\"og:site_name\" content=\"Apollo89.com\" \/>\n<meta property=\"article:published_time\" content=\"2009-05-26T02:06:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2013-02-03T07:43:47+00:00\" \/>\n<meta name=\"author\" content=\"apollo89\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"apollo89\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=316#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=316\"},\"author\":{\"name\":\"apollo89\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\"},\"headline\":\"groovy \uc124\uce58 \ubc0f \ud14c\uc2a4\ud2b8.\",\"datePublished\":\"2009-05-26T02:06:58+00:00\",\"dateModified\":\"2013-02-03T07:43:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=316\"},\"wordCount\":41,\"commentCount\":0,\"keywords\":[\"groovy\",\"script\",\"\uadf8\ub8e8\ube44\",\"\uc124\uce58\"],\"articleSection\":[\"Java\\\/JSP\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=316#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=316\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=316\",\"name\":\"groovy \uc124\uce58 \ubc0f \ud14c\uc2a4\ud2b8. - Apollo89.com\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#website\"},\"datePublished\":\"2009-05-26T02:06:58+00:00\",\"dateModified\":\"2013-02-03T07:43:47+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=316#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=316\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=316#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\\\/\\\/apollo89.com\\\/wordpress\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"groovy \uc124\uce58 \ubc0f \ud14c\uc2a4\ud2b8.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#website\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/\",\"name\":\"Apollo89.com\",\"description\":\"\uc544\ud3f4\ub85c\uc528\uc758 \uc7a1\ub2e4\ud55c \uacbd\ud5d8\ub4e4..\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\",\"name\":\"apollo89\",\"description\":\"\uc544\ud3f4\ub85c89 \uc785\ub2c8\ub2e4.\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"groovy \uc124\uce58 \ubc0f \ud14c\uc2a4\ud2b8. - Apollo89.com","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:\/\/apollo89.com\/wordpress\/?p=316","og_locale":"ko_KR","og_type":"article","og_title":"groovy \uc124\uce58 \ubc0f \ud14c\uc2a4\ud2b8. - Apollo89.com","og_description":"&nbsp; Groovy\ub780 \uc790\ubc14 \ud50c\ub7ab\ud3fc\uc5d0\uc11c \uc2e4\ud589\ud558\ub294 \ub3d9\uc801 \uc560\uc790\uc77c \uc5b8\uc5b4\uc774\uba70 Python, Ruby, Smalltalk \uc5b8\uc5b4\ub85c\ubd80\ud130 \uc601\ud5a5\uc744 \ubc1b\uc558\uc2b5\ub2c8\ub2e4. \uc790\ubc14 \uac1c\ubc1c\uc790\ub294 \uc790\ubc14 \ube44\uc2b7\ud55c \ubb38\ubc95\uc73c\ub85c \uc774\ub7ec\ud55c \ud2b9\uc9d5\ub4e4\uc744 \uad6c\ud604\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc6f9 \uc5b4\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c, \uc258 \uc2a4\ud06c\ub9bd\ud2b8 \uc0ac\uc6a9, Groovy\uc758 JUnit \uae30\ub2a5\uc744 \uc774\uc6a9\ud55c \uac04\uacb0\ud558\uace0 \uc758\ubbf8\uc788\ub294 \ud14c\uc2a4\ud2b8 \ucf00\uc774\uc2a4 \uc791\uc131, \uc5b4\ud50c\ub9ac\ucf00\uc774\uc158 &hellip; Continue reading &rarr;","og_url":"https:\/\/apollo89.com\/wordpress\/?p=316","og_site_name":"Apollo89.com","article_published_time":"2009-05-26T02:06:58+00:00","article_modified_time":"2013-02-03T07:43:47+00:00","author":"apollo89","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"apollo89"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/apollo89.com\/wordpress\/?p=316#article","isPartOf":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=316"},"author":{"name":"apollo89","@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82"},"headline":"groovy \uc124\uce58 \ubc0f \ud14c\uc2a4\ud2b8.","datePublished":"2009-05-26T02:06:58+00:00","dateModified":"2013-02-03T07:43:47+00:00","mainEntityOfPage":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=316"},"wordCount":41,"commentCount":0,"keywords":["groovy","script","\uadf8\ub8e8\ube44","\uc124\uce58"],"articleSection":["Java\/JSP"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/apollo89.com\/wordpress\/?p=316#respond"]}]},{"@type":"WebPage","@id":"https:\/\/apollo89.com\/wordpress\/?p=316","url":"https:\/\/apollo89.com\/wordpress\/?p=316","name":"groovy \uc124\uce58 \ubc0f \ud14c\uc2a4\ud2b8. - Apollo89.com","isPartOf":{"@id":"https:\/\/apollo89.com\/wordpress\/#website"},"datePublished":"2009-05-26T02:06:58+00:00","dateModified":"2013-02-03T07:43:47+00:00","author":{"@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82"},"breadcrumb":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=316#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/apollo89.com\/wordpress\/?p=316"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/apollo89.com\/wordpress\/?p=316#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/apollo89.com\/wordpress"},{"@type":"ListItem","position":2,"name":"groovy \uc124\uce58 \ubc0f \ud14c\uc2a4\ud2b8."}]},{"@type":"WebSite","@id":"https:\/\/apollo89.com\/wordpress\/#website","url":"https:\/\/apollo89.com\/wordpress\/","name":"Apollo89.com","description":"\uc544\ud3f4\ub85c\uc528\uc758 \uc7a1\ub2e4\ud55c \uacbd\ud5d8\ub4e4..","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/apollo89.com\/wordpress\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82","name":"apollo89","description":"\uc544\ud3f4\ub85c89 \uc785\ub2c8\ub2e4.","url":"https:\/\/apollo89.com\/wordpress\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/316","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=316"}],"version-history":[{"count":0,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/316\/revisions"}],"wp:attachment":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=316"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=316"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=316"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}