{"id":21699538,"url":"https://github.com/djccnt15/spring_board","last_synced_at":"2026-04-19T19:04:55.474Z","repository":{"id":263253221,"uuid":"889691204","full_name":"djccnt15/spring_board","owner":"djccnt15","description":"Spring 기반 게시판 서비스","archived":false,"fork":false,"pushed_at":"2025-03-18T13:27:57.000Z","size":772,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-18T14:31:36.183Z","etag":null,"topics":["java","spring","spring-mvc","spring-security"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/djccnt15.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-11-17T00:52:30.000Z","updated_at":"2025-03-18T13:28:01.000Z","dependencies_parsed_at":"2024-11-17T10:34:01.140Z","dependency_job_id":"7ecd16c3-3cb2-4914-bf94-3becca6eea6d","html_url":"https://github.com/djccnt15/spring_board","commit_stats":null,"previous_names":["djccnt15/spring_board"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/djccnt15%2Fspring_board","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/djccnt15%2Fspring_board/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/djccnt15%2Fspring_board/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/djccnt15%2Fspring_board/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/djccnt15","download_url":"https://codeload.github.com/djccnt15/spring_board/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244643479,"owners_count":20486631,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","spring","spring-mvc","spring-security"],"created_at":"2024-11-25T20:10:00.335Z","updated_at":"2026-04-19T19:04:55.464Z","avatar_url":"https://github.com/djccnt15.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# spring_board\n\n스프링 기반 게시판 서비스\n\n## dependency\n\n- Java 17\n- gradle\n- check `build.gradle` for other dependency\n\n## utils\n\n- [swagger open-api](http://127.0.0.1:8080/swagger-ui/index.html)\n\n## ERD\n\n```mermaid\nerDiagram\n    STATE {\n        bigint id   PK\n        string name UK\n    }\n\n    USER_INFO {\n        bigint      id                  PK\n        string      name                UK  \"null\"\n        string      password                \"null\"\n        string      email               UK  \"null\"\n        datetime    created_datetime\n        enum        role                    \"null\"\n        bool        is_verified             \"default=False\"\n    }\n\n    STATE ||..o{ USER_STATE : \"\"\n    USER_INFO ||..o{ USER_STATE : \"\"\n    USER_STATE {\n        bigint      user_id             PK, FK\n        bigint      state_id            PK, FK\n        string      detail                      \"null\"\n        datetime    created_datetime\n    }\n\n    USER_INFO ||..o{ LOGGED_IN : create\n    LOGGED_IN {\n        bigint      id                  PK\n        bigint      user_id             FK\n        datetime    created_datetime\n    }\n\n    USER_INFO ||..o{ VOTER_COMMENT : vote\n    COMMENT ||..o{ VOTER_COMMENT : voted\n    VOTER_COMMENT {\n        bigint user_id      PK, FK\n        bigint comment_id   PK, FK\n    }\n\n    USER_INFO ||..o{ COMMENT : create\n    COMMENT {\n        bigint      id                  PK\n        bigint      author_id           FK\n        bigint      post_id             FK\n        datetime    created_datetime\n        bool        is_active               \"default=True\"\n    }\n\n    COMMENT ||..|{ COMMENT_CONTENT : meta-data\n    COMMENT_CONTENT {\n        bigint      id                  PK\n        int         version                 \"default=0\"\n        datetime    created_datetime\n        text        content\n        bigint      comment_id          FK\n    }\n\n    CATEGORY |o..o{ CATEGORY : child\n    CATEGORY {\n        bigint      id          PK\n        int         tier\n        string      name\n        bool        is_active       \"default=True\"\n        int         pin_order\n        bigint      parent_id   FK  \"null\"\n    }\n\n    USER_INFO ||..o{ POST : create\n    CATEGORY ||..o{ POST : categorize\n    POST {\n        bigint      id                  PK\n        bigint      author_id           FK\n        bigint      category_id         FK\n        datetime    created_datetime\n        bool        is_active               \"default=True\"\n        int         view_count              \"default=0\"\n    }\n\n    USER_INFO ||..o{ VOTER_POST : vote\n    POST ||..o{ VOTER_POST : voted\n    VOTER_POST {\n        bigint user_id PK, FK\n        bigint post_id PK, FK\n    }\n\n    POST ||..|{ POST_CONTENT : meta-data\n    POST_CONTENT {\n        bigint      id                  PK\n        int         version                 \"default=0\"\n        datetime    created_datetime\n        string      title\n        text        content\n        bigint      post_id             FK\n    }\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdjccnt15%2Fspring_board","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdjccnt15%2Fspring_board","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdjccnt15%2Fspring_board/lists"}