{"id":21974933,"url":"https://github.com/blaze-b/spring-boot-skeletal-framework","last_synced_at":"2026-05-13T07:04:08.876Z","repository":{"id":43849564,"uuid":"273702048","full_name":"blaze-b/spring-boot-skeletal-framework","owner":"blaze-b","description":"Domain driven design pattern","archived":false,"fork":false,"pushed_at":"2024-08-26T16:35:10.000Z","size":83,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-28T03:22:58.305Z","etag":null,"topics":["flyway-migrations","postgresql","spring-boot","swagger-ui"],"latest_commit_sha":null,"homepage":"","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/blaze-b.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}},"created_at":"2020-06-20T12:17:13.000Z","updated_at":"2021-01-16T17:32:31.000Z","dependencies_parsed_at":"2023-01-18T00:15:36.971Z","dependency_job_id":null,"html_url":"https://github.com/blaze-b/spring-boot-skeletal-framework","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blaze-b%2Fspring-boot-skeletal-framework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blaze-b%2Fspring-boot-skeletal-framework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blaze-b%2Fspring-boot-skeletal-framework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blaze-b%2Fspring-boot-skeletal-framework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blaze-b","download_url":"https://codeload.github.com/blaze-b/spring-boot-skeletal-framework/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245036123,"owners_count":20550661,"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":["flyway-migrations","postgresql","spring-boot","swagger-ui"],"created_at":"2024-11-29T15:48:41.111Z","updated_at":"2026-05-13T07:04:08.807Z","avatar_url":"https://github.com/blaze-b.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Spring Boot Skeletal Framework\n\n- A small spring boot framework structure for easier building of JIT Rest Services\n- Domain driven design pattern\n- Consisting of flyway migration for easier SQL script management\n- Sample Spring Data JPA repository\n- Postgres SQL is the backend DB connection used for testing\n\n## Api details to test\n\n- Swagger UI details \u003c/br\u003e\n![alt text](https://github.com/brianblaze14/spring-boot-skeletal-framework/blob/master/images/Swagger-api.PNG)\n\n- API for creating the employee group \u003c/br\u003e\n\n\u0026nbsp;\u0026nbsp;POST /api/employee/management/group/create\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;Host: localhost:8081\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;Content-Type: application/json\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;Request Body\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;{\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\"employeeGroups\": [\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\"Group A\",\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\"Group B\",\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\"Group C\",\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\"Group D\"\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;]\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;}\u003c/br\u003e\n\n- Api for creating the employee role \u003c/br\u003e\n\n\u0026nbsp;\u0026nbsp;POST /api/employee/management/role/create\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;Host: localhost:8081\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;Content-Type: application/json\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;Request body:\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;{\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\"employeeRoles\": [\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\"Project Manager\",\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\"System Analyst\",\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\"Senior Sofware Engineer\",\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\"Software Engineer\"\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;]\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;}\u003c/br\u003e\n\n- Api to create the employee details \u003c/br\u003e\n\n\u0026nbsp;\u0026nbsp;POST /api/employee/management/employee/create\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;Host: localhost:8081\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;Content-Type: application/json\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\n\u0026nbsp;\u0026nbsp;{\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\"dateOfBirth\": \"YYYY-MM-DD\",\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\"employeeGroups\": [\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\"Group A\",\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\"Group B\"\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;],\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\"employeeRole\": \"Senior Software Engineer\",\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\"firstName\": \"Bob\",\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\"lastName\": \"Marley\",\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\"organizationName\": \"XXXXXX\",\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;\u0026nbsp;\"target\": 20\u003c/br\u003e\n\u0026nbsp;\u0026nbsp;}\u003c/br\u003e\n\n- Api to get all the employee details\n\n\u0026nbsp;\u0026nbsp;GET /api/employee/management/employees \u003c/br\u003e\n\u0026nbsp;\u0026nbsp;Host: localhost:8081\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblaze-b%2Fspring-boot-skeletal-framework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblaze-b%2Fspring-boot-skeletal-framework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblaze-b%2Fspring-boot-skeletal-framework/lists"}