{"id":25919743,"url":"https://github.com/toolisticon/spring-boot-support","last_synced_at":"2026-05-16T11:33:21.632Z","repository":{"id":279784784,"uuid":"939504465","full_name":"toolisticon/spring-boot-support","owner":"toolisticon","description":"Provides useful Spring Boot Support utilities.","archived":false,"fork":false,"pushed_at":"2026-03-21T09:11:47.000Z","size":111,"stargazers_count":1,"open_issues_count":4,"forks_count":0,"subscribers_count":7,"default_branch":"develop","last_synced_at":"2026-03-22T01:00:20.823Z","etag":null,"topics":["spring-boot"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/toolisticon.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-26T16:40:25.000Z","updated_at":"2026-03-21T09:11:48.000Z","dependencies_parsed_at":"2025-02-27T16:32:55.012Z","dependency_job_id":"aa01ac29-5c4a-421b-b2a4-1101d8b1713d","html_url":"https://github.com/toolisticon/spring-boot-support","commit_stats":null,"previous_names":["toolisticon/spring-boot-support"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/toolisticon/spring-boot-support","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toolisticon%2Fspring-boot-support","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toolisticon%2Fspring-boot-support/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toolisticon%2Fspring-boot-support/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toolisticon%2Fspring-boot-support/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/toolisticon","download_url":"https://codeload.github.com/toolisticon/spring-boot-support/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toolisticon%2Fspring-boot-support/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33100866,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T04:41:52.686Z","status":"ssl_error","status_checked_at":"2026-05-16T04:41:52.009Z","response_time":115,"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":["spring-boot"],"created_at":"2025-03-03T15:15:57.681Z","updated_at":"2026-05-16T11:33:21.612Z","avatar_url":"https://github.com/toolisticon.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Spring-Boot Support\n\nA collection of Spring-Boot supporting tools.\n\n[![incubating](https://img.shields.io/badge/lifecycle-INCUBATING-orange.svg)](https://github.com/holisticon#open-source-lifecycle)\n[![Build Status](https://github.com/toolisticon/spring-conditions/workflows/Development%20branches/badge.svg)](https://github.com/toolisticon/spring-conditions/actions)\n[![sponsored](https://img.shields.io/badge/sponsoredBy-Holisticon-RED.svg)](https://holisticon.de/)\n[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.toolisticon.spring/spring-conditions/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.toolisticon.spring/spring-conditions)\n\n## Import\n\nImport the BOM into your Maven project.\n\n```xml \n\u003cdependency\u003e\n  \u003cgroupId\u003eio.toolisticon.spring\u003c/groupId\u003e\n  \u003cartifactId\u003espring-boot-bom\u003c/artifactId\u003e\n  \u003cversion\u003e1.0.1\u003c/version\u003e\n  \u003cscope\u003eimport\u003c/scope\u003e\n  \u003ctype\u003epom\u003c/type\u003e\n\u003c/dependency\u003e\n```\n\n## Spring-Boot Conditions\n\nProvides useful Spring-Boot conditions.\n\n### Supported conditions\n\n- `@ConditionalOnMissingQualifiedBean`\n\n### Usage\n\n```xml\n\n\u003cdependency\u003e\n  \u003cgroupId\u003eio.toolisticon.spring\u003c/groupId\u003e\n  \u003cartifactId\u003espring-boot-conditions\u003c/artifactId\u003e\n\u003c/dependency\u003e\n```\n\n## YAML property source factory\n\nAllows to define default properties as part of the starter using supplied YAML file.\n\n### Usage\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003eio.toolisticon.spring\u003c/groupId\u003e\n  \u003cartifactId\u003espring-boot-properties\u003c/artifactId\u003e\n\u003c/dependency\u003e\n```\n\nDefine properties\n\n```kotlin\n@ConfigurationProperties(\"myprops\")\ndata class MyProperties(\n  val foo: String,\n  val zee: Int,\n  val baz: Boolean\n)\n\n```\n\nDefine configuration:\n\n```kotlin\n\n@EnableConfigurationProperties(MyProperties::class)\n@PropertySource(\n  name = \"myDefaultProperties\",\n  value = [\"classpath:/application-my-default.yaml\"],\n  factory = YamlPropertySourceFactory::class\n)\nclass MyConfiguration \n\n```\n\nPut a `application-my-default.yaml` into `src/main/resources`:\n\n```yaml\nmyprops:\n  foo: \"bar\"\n  zee: 42\n  baz: true\n```\n\n\n# License\n\nThis library is published under the Apache 2.0 license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoolisticon%2Fspring-boot-support","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftoolisticon%2Fspring-boot-support","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoolisticon%2Fspring-boot-support/lists"}