{"id":18059423,"url":"https://github.com/9bow/komoranrestapiserver","last_synced_at":"2026-05-15T23:14:17.370Z","repository":{"id":86212199,"uuid":"91902627","full_name":"9bow/KOMORANRestAPIServer","owner":"9bow","description":"Simple RESTful API Server for KOMORAN","archived":false,"fork":false,"pushed_at":"2019-02-19T09:06:54.000Z","size":60,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-20T15:53:46.406Z","etag":null,"topics":["java-8","komoran","nlp","restful-api","spark","sparkjava","sparkjava-framework"],"latest_commit_sha":null,"homepage":"http://komoran.kr","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/9bow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-05-20T16:40:46.000Z","updated_at":"2019-04-24T10:54:41.000Z","dependencies_parsed_at":"2023-06-25T23:38:43.172Z","dependency_job_id":null,"html_url":"https://github.com/9bow/KOMORANRestAPIServer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/9bow/KOMORANRestAPIServer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/9bow%2FKOMORANRestAPIServer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/9bow%2FKOMORANRestAPIServer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/9bow%2FKOMORANRestAPIServer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/9bow%2FKOMORANRestAPIServer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/9bow","download_url":"https://codeload.github.com/9bow/KOMORANRestAPIServer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/9bow%2FKOMORANRestAPIServer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33083014,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T20:25:35.270Z","status":"ssl_error","status_checked_at":"2026-05-15T20:25:34.732Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java-8","komoran","nlp","restful-api","spark","sparkjava","sparkjava-framework"],"created_at":"2024-10-31T03:22:11.431Z","updated_at":"2026-05-15T23:14:17.353Z","avatar_url":"https://github.com/9bow.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 소개\n* `KOMORANRestAPIServer`는 [KOMORAN 3.0](https://github.com/shin285/KOMORAN) 의 간단한 RESTful API Server입니다.\u003cbr /\u003e\n* [Spark Framework](http://sparkjava.com/) 기반으로 제작하였습니다.\u003cbr /\u003e\n\n# 빠른 실행\n* `git clone` 후, 다음의 명령어를 이용하여 실행합니다.\n```shell\n./gradlew run\n```\n\n# 간단한 사용법\n* Web Browser를 열어, `localhost:8080/api`에 접근합니다.\n* 이 때, `GET` Method로 분석하고자 하는 문장(`query`)과 사전 모델의 종류(`model_type`: `full`, `light`)를 입력합니다.\n* 예1. `Full Model`을 이용하여 `바람과 함께 사라지다를 봤어.`라는 문장을 분석하고 싶을 경우\n```\n/*\n * 호출 URL: http://localhost:8080/api?query=바람과 함께 사라지다를 봤어.\u0026model_type=full\n */\n/* \n * 결과:\n *  {\n *    \"queryString\":\"바람과 함께 사라지다를 봤어.\",\n *    \"useModelSizeFull\":true,\n *    \"queryResult\":[\n *       {\"first\":\"바람과 함께 사라지다\",\"second\":\"NNP\"},\n *       {\"first\":\"를\",\"second\":\"JKO\"},\n *       {\"first\":\"보\",\"second\":\"VV\"},\n *       {\"first\":\"았\",\"second\":\"EP\"},\n *       {\"first\":\"어\",\"second\":\"EF\"},\n *       {\"first\":\".\",\"second\":\"SF\"}\n *    ]\n *  }\n */\n```\n * 예2. `Light Model`을 이용하여 `바람과 함께 사라지다를 봤어.`라는 문장을 분석하고 싶을 경우\n```\n/*\n * 호출 URL: http://localhost:8080/api?query=바람과 함께 사라지다를 봤어.\u0026model_type=light\n */\n/* \n * 결과:\n *  {\n *    \"queryString\":\"바람과 함께 사라지다를 봤어.\",\n *    \"useModelSizeFull\":false,\n *    \"queryResult\":[\n *        {\"first\":\"바람\",\"second\":\"NNG\"},\n *        {\"first\":\"과\",\"second\":\"JC\"},\n *        {\"first\":\"함께\",\"second\":\"MAG\"},\n *        {\"first\":\"사라지\",\"second\":\"VV\"},\n *        {\"first\":\"다\",\"second\":\"EC\"},\n *        {\"first\":\"를\",\"second\":\"JKO\"},\n *        {\"first\":\"보\",\"second\":\"VV\"},\n *        {\"first\":\"았\",\"second\":\"EP\"},\n *        {\"first\":\"어\",\"second\":\"EF\"},\n *        {\"first\":\".\",\"second\":\"SF\"}\n *    ]\n *  }\n */\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F9bow%2Fkomoranrestapiserver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F9bow%2Fkomoranrestapiserver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F9bow%2Fkomoranrestapiserver/lists"}