{"id":21469529,"url":"https://github.com/bliblidotcom/swagger2-plugin","last_synced_at":"2026-04-20T05:35:00.461Z","repository":{"id":73327847,"uuid":"234500508","full_name":"bliblidotcom/swagger2-plugin","owner":"bliblidotcom","description":"Swagger Plugin for Spring Boot 2 WebFlux","archived":false,"fork":false,"pushed_at":"2020-01-19T14:51:10.000Z","size":62,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-17T06:35:56.753Z","etag":null,"topics":["java","open-api","spring-boot","spring-boot2","spring-webflux","swagger"],"latest_commit_sha":null,"homepage":null,"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/bliblidotcom.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":"2020-01-17T08:02:16.000Z","updated_at":"2020-01-19T14:51:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"8dd03962-a9aa-4968-aa0c-1baf71d2f314","html_url":"https://github.com/bliblidotcom/swagger2-plugin","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bliblidotcom/swagger2-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bliblidotcom%2Fswagger2-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bliblidotcom%2Fswagger2-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bliblidotcom%2Fswagger2-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bliblidotcom%2Fswagger2-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bliblidotcom","download_url":"https://codeload.github.com/bliblidotcom/swagger2-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bliblidotcom%2Fswagger2-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32034792,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"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","open-api","spring-boot","spring-boot2","spring-webflux","swagger"],"created_at":"2024-11-23T09:16:37.983Z","updated_at":"2026-04-20T05:35:00.436Z","avatar_url":"https://github.com/bliblidotcom.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Swagger Plugin for Spring Boot 2 WebFlux\n\nThis is plugin integrate swagger on Spring Boot 2 WebFlux project. This project is not working on Spring Web MVC. \n\n## How to use it\n\nAdd dependency\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003ecom.blibli.oss\u003c/groupId\u003e\n  \u003cartifactId\u003eswagger-plugin2\u003c/artifactId\u003e\n  \u003cversion\u003e...\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nAnd this plugin will automatically scan all your controller\n\nYou can access your swagger ui on `http://localhost:8080/swagger-ui.html`\n\n## Global Parameter\n\nSometimes you want to add global parameter (configure once, and use everywhere). You can use this by register your custom `io.swagger.v3.oas.models.parameters.Parameter` bean. Example :\n\n```java\n@Configuration\npublic class YourConfiguration {\n  \n  @Bean\n  public Parameter queryChannelId() {\n    return new QueryParameter()\n      .name(\"channelId\")\n      .example(\"channelId\")\n      .required(true);\n  }\n\n} \n```\n\nAfter that, you can use your parameter using `@io.swagger.v3.oas.annotations.Parameter(name=\"uniqueName\", ref=\"beanName\")` annotation, example :\n\n```java\n@RestController\npublic class ExampleController {\n\n  @GetMapping(\"/\")\n  @Parameter(name = \"queryChannelId\", ref = \"queryChannelId\")\n  public Mono\u003cString\u003e home() {\n    return Mono.just(\"Home\");\n  }\n\n}\n```   \n\n## Ignore Parameter","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbliblidotcom%2Fswagger2-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbliblidotcom%2Fswagger2-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbliblidotcom%2Fswagger2-plugin/lists"}