{"id":19881876,"url":"https://github.com/szsascha/sz-spring-boot-starter","last_synced_at":"2026-05-09T06:02:16.869Z","repository":{"id":128335961,"uuid":"437372455","full_name":"szsascha/sz-spring-boot-starter","owner":"szsascha","description":"Custom Spring Boot Starter with often used libraries and additional helpers","archived":false,"fork":false,"pushed_at":"2022-01-04T21:10:16.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-11T09:02:57.107Z","etag":null,"topics":["java","jitpack","maven","spring-boot","spring-boot-starter"],"latest_commit_sha":null,"homepage":"","language":null,"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/szsascha.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-12-11T19:36:48.000Z","updated_at":"2022-01-04T21:10:19.000Z","dependencies_parsed_at":null,"dependency_job_id":"7e5ab37f-20d9-4a56-a879-a79e451a21f1","html_url":"https://github.com/szsascha/sz-spring-boot-starter","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/szsascha/sz-spring-boot-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/szsascha%2Fsz-spring-boot-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/szsascha%2Fsz-spring-boot-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/szsascha%2Fsz-spring-boot-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/szsascha%2Fsz-spring-boot-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/szsascha","download_url":"https://codeload.github.com/szsascha/sz-spring-boot-starter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/szsascha%2Fsz-spring-boot-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32809147,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","jitpack","maven","spring-boot","spring-boot-starter"],"created_at":"2024-11-12T17:15:47.852Z","updated_at":"2026-05-09T06:02:16.860Z","avatar_url":"https://github.com/szsascha.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# SZ Spring Boot Starter\n\nI often start my own Spring Boot projects with the same setup. I would like to standardize this in the future. So for future projects I will use this starter.\n\n# Modules\n\n## service\n\nThe sz-spring-boot-starter-service is used to have a basic setup for services. This module contains primarly the following libraries:\n\n1. spring-boot-starter-web\n2. spring-boot-starter-sleuth\n3. spring-boot-starter-test\n4. lombok (used to save lines of code by annotations)\n5. logback\n6. junit\n7. mockito\n\n## persistence\n\nsz-spring-boot-starter-persistence gives you a basic setup for persistence, including the following libraries:\n\n1. spring-boot-starter-data-jpa\n2. h2\n3. mapstruct (used to map dto's to persistence models)\n4. hibernate\n\n# Setup\n\nThe following steps are required to setup your project with the sz-spring-boot-starter in your maven pom.xml.\n\n## Add jitpack repository\n\n```xml\n\u003crepositories\u003e\n    \u003crepository\u003e\n        \u003cid\u003ejitpack.io\u003c/id\u003e\n        \u003curl\u003ehttps://jitpack.io\u003c/url\u003e\n    \u003c/repository\u003e\n\u003c/repositories\u003e\n```\n\n## Add sz-spring-boot-starter-parent\n\n```xml\n\u003cparent\u003e\n    \u003cgroupId\u003ecom.github.szsascha.sz-spring-boot-starter\u003c/groupId\u003e\n    \u003cartifactId\u003esz-spring-boot-starter-parent\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.0\u003c/version\u003e\n\u003c/parent\u003e\n```\n\n# Usage\n\nNow you can add your sz-spring-boot-starters as depdendency.\n\n```xml\n\u003cdependencies\u003e\n    \u003cdependency\u003e\n        \u003cgroupId\u003ecom.github.szsascha.sz-spring-boot-starter\u003c/groupId\u003e\n        \u003cartifactId\u003esz-spring-boot-starter-service\u003c/artifactId\u003e\n        \u003cversion\u003e1.0.0\u003c/version\u003e\n    \u003c/dependency\u003e\n\u003c/dependencies\u003e\n```\n\nAfter that you're able to use all the dependencies and functionality from the used starters.\nPlease remember to run `mvn clean install` before use.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fszsascha%2Fsz-spring-boot-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fszsascha%2Fsz-spring-boot-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fszsascha%2Fsz-spring-boot-starter/lists"}