{"id":26152887,"url":"https://github.com/qvest-digital/spring-boot2-sample-webflux","last_synced_at":"2026-04-20T12:33:38.395Z","repository":{"id":74579361,"uuid":"132463838","full_name":"qvest-digital/spring-boot2-sample-webflux","owner":"qvest-digital","description":"Simple sample Spring Boot 2 application with Webflux","archived":false,"fork":false,"pushed_at":"2018-05-17T07:50:02.000Z","size":68,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-03-11T07:25:40.682Z","etag":null,"topics":["spring-boot-2","spring-data-mongodb-reactive","spring-security","spring-webflux"],"latest_commit_sha":null,"homepage":null,"language":"Java","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/qvest-digital.png","metadata":{"files":{"readme":"README.adoc","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}},"created_at":"2018-05-07T13:22:43.000Z","updated_at":"2023-04-28T11:47:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"2af3cbe7-129f-4301-920e-039e8f26c9ec","html_url":"https://github.com/qvest-digital/spring-boot2-sample-webflux","commit_stats":null,"previous_names":["qvest-digital/spring-boot2-sample-webflux"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/qvest-digital/spring-boot2-sample-webflux","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qvest-digital%2Fspring-boot2-sample-webflux","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qvest-digital%2Fspring-boot2-sample-webflux/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qvest-digital%2Fspring-boot2-sample-webflux/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qvest-digital%2Fspring-boot2-sample-webflux/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qvest-digital","download_url":"https://codeload.github.com/qvest-digital/spring-boot2-sample-webflux/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qvest-digital%2Fspring-boot2-sample-webflux/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32047242,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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-2","spring-data-mongodb-reactive","spring-security","spring-webflux"],"created_at":"2025-03-11T07:22:21.357Z","updated_at":"2026-04-20T12:33:38.369Z","avatar_url":"https://github.com/qvest-digital.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"= Spring Boot 2 Sample Webflux Application\n\nThis is a sample application using Spring Boot 2 with Spring Webflux.\n\n== Getting stated\n\n=== JDK 9\n\nIn order to get started with this sample application you need to install JDK 9. You can use http://sdkman.io/[SDKMAN!] for that if you want.\n\n=== MongoDB\n\nThe application need a running MongoDB instance, the easiest way to start one, is through docker\n\n[source, bash]\n----\ndocker run --name some-mongo mongo\n----\n\nThen you need to get the IP address of the mongo container\n\n[source, bash]\n----\ndocker inspect --format '{{ .NetworkSettings.IPAddress }}'  some-mongo\n----\n\nIf the IP address is not `172.17.0.2`, then you must change the IP address specified in the file `src/main/resources/application-local.yml` under the key `spring.data.mongodb.host`\n\n[source, yaml]\n----\nspring:\n  data:\n    mongodb:\n      host: 172.17.0.2\n----\n\n=== Start the application\n\nIn order to start the sample application just call\n\n[source, bash]\n----\n./gradlew bootRun\n----\n\nor on Windows\n\n[source, bash]\n----\n./gradlew.bat bootRun\n----\n\n=== IDE\n\nYou can use an IDE to look at the source code, I recommend the https://spring.io/tools[Spring Tool Suite], but you use any IDE that you see fit.\n\n== Useful links\n\n* https://www.reactivemanifesto.org/[The Reactive Manifesto]\n* http://projectreactor.io/docs/core/release/reference/[Reactor 3 Reference Guide]\n* https://docs.spring.io/spring/docs/5.0.5.RELEASE/spring-framework-reference/web-reactive.html#webflux[Spring WebFlux documentation]\n* https://docs.spring.io/spring-data/mongodb/docs/2.0.7.RELEASE/reference/html/#mongo.reactive[Spring Data MongoDB Reactive support]\n* https://docs.spring.io/spring-security/site/docs/current/reference/html5/#jc-webflux[Spring Security WebFlux support]\n* https://docs.spring.io/spring-security/site/docs/current/reference/html5/#test-webflux[Spring Security WebFlux testing support]\n\n== Example requests\n\nThese example requests are issued through https://httpie.org/[HTTPie].\n\n.GET a list of customers\n[source, bash]\n----\nhttp -v -a user:user :8080/customers/\n----\n\n.GET a list of customers with paging\n[source, bash]\n----\nhttp -v -a user:user :8080/customers/ size==2 page==1\n----\n\n.GET a customer by id\n[source, bash]\n----\nhttp -v -a user:user :8080/customers/5acb629d859c16689db5f091\n----\n\n.CREATE a customer\n[source, bash]\n----\nhttp -v -a admin:admin POST :8080/customers/ firstName=Daenerys lastName=Targaryen\n----\n\n.DELETE a customer by id\n[source, bash]\n----\nhttp -v -a admin:admin DELETE :8080/customers/5ae2ef2a7593241a65e2b961\n----\n\n.Stream customers\n----\nhttp --stream -v -a user:user :8080/customers/stream 'Accept: text/event-stream'\n----\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqvest-digital%2Fspring-boot2-sample-webflux","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqvest-digital%2Fspring-boot2-sample-webflux","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqvest-digital%2Fspring-boot2-sample-webflux/lists"}