Spring 5 Reactive playground

Overview

Spring Reactive Sample

This is a sandbox project for demonstrating Reactive Streams support in Spring framework and Spring ecosystem.

I've also maintained a series of repos related to ReativeStreams and the latest Spring 5.

Docs

Read online: https://hantsy.github.io/spring-reactive-sample/

Sample Codes

The following table list all sample codes related to the above posts.

Spring Samples

name description
vanilla The initial application, includes basic spring-webflux feature, use a main class to start up the application
vanilla-jetty Same as vanilla, but use Jetty as target runtime
vanilla-tomcat Same as vanilla, but use Reactor Netty as target runtime
vanilla-undertow Same as vanilla, but use Undertow as target runtime
java8 Java 8 CompletableFuture and @Async example
java9 Same as vanilla, Java 9 Flow API support is not ready in Spring 5.0.0.REALESE, planned in 5.0.1, see issue SPR-16052 and the original discussion on stackoverflow
rxjava3 Same as vanilla, but use Rxjava3 instead of Reactor, since Spring 5.3.0
smallrye-mutiny Same as vanilla, but use SmallRye Mutiny instead of Reactor, since Spring 5.3.10
war Replace the manual bootstrap class in vanilla with Spring ApplicationInitializer, it can be packaged as a war file to be deployed into an external servlet container.
routes Use RouterFunction instead of controller in vanilla
register-bean Programmatic approach to register all beans in ApplicatonContext at the application bootstrap
data-neo4j Spring Data Neo4j reactive example
data-mongo Spring Data Mongo Reactive example
data-mongo-pageable Spring Data Mongo Reactive example with pagination support
data-mongo-transaction Spring Data Mongo Reactive example with Transaction support
data-redis Spring Data Redis Reactive example
data-redis-message Spring Data Redis Reactive Example with ReactiveRedisMessageListenerContainer
data-cassandra Spring Data Cassandra Reactive example
data-couchbase Spring Data Couchbase Reactive example
security Based on vanilla, add Spring Security Reactive support
security-form Same as security, login form example
security-user-properties Same as security, but use users.properties to store users
security-method Replace URI based configuration with method level constraints
security-data-mongo Based on data-mongo and security, replace with dummy users in hard codes with Mongo driven store
multipart Multipart request handling and file uploading
multipart-data-mongo Multipart and file uploading, but data in Mongo via Spring Data Mongo Reactive GridFsTemplate
mvc-thymeleaf Traditional web application, use Thymeleaf as template engine
mvc-mustache Traditional web application, use Mustache as template engine
mvc-freemarker Traditional web application, use freemarker as template engine
sse Server Send Event example
websocket WebSocket example
web-filter WebFilter example
groovy Written in groovy
groovy-dsl Groovy DSL bean definition example
client Example of WebClient to shake hands with backend reactive APIs
kotlin Written in kotlin
kotlin-routes Use kotlin functional approach to declare beans and bootstrap the application programmatically
kotlin-dsl Kotlin DSL bean definition example
session Spring Session Example
session-header Spring Session WebSessionIdResolver Example
session-data-redis Spring Data Redis based ReactiveSessionRepository Example
session-data-mongo Spring Data Mongo based ReactiveSessionRepository Example
exception-handler Exception Handler Example
integration Spring Integration Example
integration-dsl Spring Integration Java 8 DSL Example
restdocs Spring RestDocs Example

Spring Boot Samples

name description
boot-start Spring Boot example, including 3 Maven profiles to switch to Jetty, Tomcat, Undertow as target runtime
boot-start-routes Simple RouterFunction example
boot-mvc-thymeleaf Same as mvc-thymeleaf, but based on Spring Boot
boot-mvc-mustache Same as mvc-mustache, but based on Spring Boot
boot-mvc-freemarker Same as mvc-freemarker, but based on Spring Boot
boot-groovy Written in Groovy
boot-kotlin Written in Kotlin
boot-kotlin-dsl Kotlin specific BeanDefinitionDSL Example
boot-redis Example of using ReactiveRedisConnection and RouterFunction
boot-data-redis Spring Data Redis Example
boot-data-neo4j Spring Data Neo4j example (Spring Boot 2.4)
boot-neo4j Spring Data Neo4j using ReactiveNeo4jOperations (Spring Boot 2.4)
boot-neo4j-cypher Spring Data Neo4j using ReacitveNeo4jClient (Spring Boot 2.4)
boot-data-cassandra Spring Data Cassandra Example
boot-data-couchbase Spring Data Couchbase Example
boot-data-elasticsearch Spring Data ElasticSearch Example
boot-data-mongo Spring Data Mongo Example(Repository, Auditing, testcontainers)
boot-data-mongo-querydsl Spring Data Mongo Example with QueryDSL support
boot-data-mongo-gridfs Spring Data Mongo Example with Gridfs support
boot-data-mongo-tailable Spring Data Mongo tailable document example
boot-exception-handler Global Exception Handler

Legacy Codes

Some example codes are becoming deprecated as time goes by, eg. the SDN Rx project which was maintained by the Neo4j team is discontinued now, it is highly recommended to migrate to the official Spring Data Neo4j.

And Spring Data R2dbc 1.2 added a lot of breaking changes, so I created another Spring R2dbc Sample repository to introduce the new features.

Spring removed support of RxJava/RxJava2, and other projects, such as Spring Data will remove RxJava/RxJava2 support soon.

name description
data-r2dbc Spring Data R2dbc Example. (Deprecated, go to hantsy/spring-r2dbc-sample to update yourself)
data-r2dbc-postgresql Spring Data R2dbc Example, but use PostgreSQL instead(Deprecated)
boot-r2dbc Spring Data R2dbc example using DatabaseClient(Deprecated)
boot-data-r2dbc Spring Data R2dbc example(Deprecated)
boot-data-r2dbc-auditing @EnableR2dbcAuditing example(Deprecated)
boot-data-r2dbc-postgresql Same as boot-data-r2dbc, but use PostgresSQL instead(Deprecated)
boot-data-r2dbc-mysql Same as boot-data-r2dbc, but use MySQL instead(Deprecated)
boot-data-r2dbc-mssql Same as boot-data-r2dbc, but use MS SQL instead(Deprecated)
boot-neo4j-rx SDN Rx Example but use ReactiveNeo4jClient(Deprecated)
boot-neo4j-rx-cypher SDN Rx Example using Cypher queries(Deprecated)
boot-data-neo4j-rx SDN Rx Example(Deprecated)
rxjava Same as vanilla, but use Rxjava instead of Reactor
rxjava-jdbc Accessing database with rxjava-jdbc. NOTE: rxjava-jdbc is a wrapper of blocking Jdbc APIs
rxjava2 Same as vanilla, but use Rxjava2 instead of Reactor
rxjava2-jdbc Accessing database with rxjava2-jdbc. NOTE: rxjava2-jdbc is a wrapper of blocking Jdbc APIs

References

Special Thanks

Specials thanks for Jetbrains's support by contributing an open-source license.

Comments
  • Adding TestContainers

    Adding TestContainers

    Hi, Thanks for your great samples! I learned a lot and wanted to contribute back one of the improvements I made when playing with your code. What I did is I added the TestContainers dependency and configured it so when the application is started, a Docker container with Postgres is started automatically. Once the database is ready the data initialisation will take place automatically. Also the integration tests now run without the need to start an external Postgres. Hope you like the additions I made and thanks again for your great work.

    Have a nice evening, Jonck

    opened by jonckvanderkogel 11
  • chore(deps): bump jetty-maven-plugin from 10.0.6 to 11.0.12 in /war

    chore(deps): bump jetty-maven-plugin from 10.0.6 to 11.0.12 in /war

    Bumps jetty-maven-plugin from 10.0.6 to 11.0.12.

    Release notes

    Sourced from jetty-maven-plugin's releases.

    11.0.12

    Special Thanks to the following Eclipse Jetty community members

    Changelog

    • #8497 - jetty-bom/11.0.11 depends on jetty-slf4j-impl/10.0.8-SNAPSHOT that cause 404 error (@​MoonLord-LM)

    Dependencies

    • #8389 - Bump avro to 1.11.1
    • #8239 - Bump checkstyle to 10.3.1
    • #8300 - Bump google-cloud-datastore to 2.10.1
    • #8508 - Bump grpc-core to 1.49.0
    • #8249 - Bump jakarta.annotation-api to 2.1.1
    • #8506 - Bump jboss-threads to 3.5.0.Final
    • #8254 - Bump jna-jpms to 5.12.1
    • #8529 - Bump mariadb-java-client to 3.0.7
    • #8371 - Bump maven-assembly-plugin to 3.4.2
    • #8520 - Bump maven-checkstyle-plugin to 3.2.0
    • #8248 - Bump maven-enforcer-plugin to 3.1.0
    • #8377 - Bump maven-install-plugin to 3.0.1
    • #8528 - Bump maven-javadoc-plugin to 3.4.1
    • #8368 - Bump maven-resources-plugin to 3.3.0
    • #8244 - Bump maven.version to 3.8.6
    • #8308 - Bump spotbugs-maven-plugin to 4.7.1.0
    • #8309 - Bump tycho-p2-repository-plugin to 2.7.4
    • #8369 - Bump wildfly-elytron to 1.20.0.Final

    11.0.11

    Special Thanks to the following Eclipse Jetty community members

    Critical Fix

    • #8184 - All suffix globs except first fail to match if path has . character in prefix section

    Changelog

    • #8187 - Fix test-distribution classpath re resolver (@​cstamas)
    • #8175 - Removing invalid maxConnections references
    • #8163 - RegexPathSpec documentation and MatchedPath improvements
    • #8162 - Migrate code from jetty-util Logger to slf4j Logger
    • #8161 - Improve SSLConnection buffers handling
    • #8155 - Use static exceptions for closing websocket flushers and in ContentProducer

    11.0.10

    ... (truncated)

    Commits
    • d5b8c29 Updating to version 11.0.12
    • e46f0a6 Merge github.com:eclipse/jetty.project into jetty-11.0.x
    • 2a49f86 Merge pull request #8580 from eclipse/fix/jetty-10.0.x-proxy-rewrite-null-uri
    • 8eba1c9 Issue #8578 - Changes from review
    • a6a386a Issue #8578 - restore backward compat of getRequestURL and getRequestURI when...
    • e2e2202 Merge branch 'jetty-10.0.x' into jetty-11.0.x
    • 3df45b9 Merge pull request #8569 from eclipse/dependabot/maven/jetty-10.0.x/com.faste...
    • fc45d82 Merge branch 'jetty-10.0.x' into jetty-11.0.x
    • 2b2889c Merge pull request #8566 from eclipse/dependabot/maven/jetty-10.0.x/org.codeh...
    • 3c00404 Bump jackson-databind from 2.13.3 to 2.13.4
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 5
  • chore(deps): bump testcontainers-bom from 1.16.2 to 1.16.3 in /boot-data-cassandra

    chore(deps): bump testcontainers-bom from 1.16.2 to 1.16.3 in /boot-data-cassandra

    Bumps testcontainers-bom from 1.16.2 to 1.16.3.

    Release notes

    Sourced from testcontainers-bom's releases.

    1.16.3

    What's Changed

    Highlights

    Testcontainers 1.16.3 includes many changes, but there are two key highlights in this release:

    k3s module (#4582) @​rnorth, @​kiview

    We've had plenty of feedback from users wanting to use Testcontainers to help test Kubernetes components. In particular, this is useful for people developing Kubernetes controllers/operators, who need something more than just a mocked Kubernetes API. In this release we're bringing the k3s module, which gives you a neat way to spin up the K3S lightweight Kubernetes inside of a container. We believe that k3s hits a sweet spot for ease of use and performance, so is a good option for testing Kubernetes components.

    Now, launching a lightweight single-node Kubernetes cluster within your tests is easy as:

    K3sContainer k3s = new K3sContainer(DockerImageName.parse("rancher/k3s:v1.21.3-k3s1"));
    k3s.start();
    

    String kubeConfigYaml = k3s.getKubeConfigYaml(); ApiClient client = Config.fromConfig(new StringReader(kubeConfigYaml));

    // now use client to talk to your cluster!

    Check out the docs to find out more!

    Selenium 4 compatibility (#4914) @​GannaChernyshova, @​tobiasstadler, @​kiview, @​rnorth

    Selenium 4 was announced a while back, but we needed to make some changes to Testcontainers' Selenium/Webdriver module for compatibility. We're happy to announce that these changes have now been made, so you can now use Selenium 4 with Testcontainers!

    As part of this upgrade we have to drop compatibility with Selenium 2, but believe that this will not have any practical impact.

    🚀 Features & Enhancements

    🐛 Bug Fixes

    📖 Documentation

    ... (truncated)

    Commits
    • 34cfdc8 Fix k3s for latest Docker for Mac (cgroupsv2) (#4937)
    • 04937b5 Replace jcenter with mavenCentral in all examples (#4931)
    • 19b58cd Use 2.8.8 compatible Jackson API (#4930)
    • f7dcfa8 Use jackson 2.8.8 in k3s module (#4928)
    • 631531f Merge pull request #4927 from testcontainers/combined-pr-branch
    • af7cec0 Bump up Gradle Enterprise plugin dependencies (#4926)
    • 0a04166 Merge remote-tracking branch 'origin/dependabot/gradle/modules/postgresql/io....
    • 0ff1c79 Merge remote-tracking branch 'origin/dependabot/gradle/modules/localstack/com...
    • 8186795 Basic K3S module (#4582)
    • 3a16a79 Bump r2dbc-postgresql in /modules/postgresql
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 5
  • chore(deps): bump spring-boot-starter-parent from 2.7.3 to 2.7.4 in /websocket

    chore(deps): bump spring-boot-starter-parent from 2.7.3 to 2.7.4 in /websocket

    Bumps spring-boot-starter-parent from 2.7.3 to 2.7.4.

    Release notes

    Sourced from spring-boot-starter-parent's releases.

    v2.7.4

    :star: New Features

    • Add NINETEEN to JavaVersion enum #32260

    :lady_beetle: Bug Fixes

    • DataSource logging in H2 console auto-configuration causes Hikari's threads to have the wrong thread context class loader #32406
    • Hazelcast auto-configuration recognizes hazelcast.xml and hazelcast.yaml files but not hazelcast.yml #32247
    • Detection of PeriodStyle.ISO8601 does not support lower-case input #32244
    • Detection of DurationStyle.ISO8601 does not support lower-case input #32231
    • YAML timestamps not handled properly with SnakeYaml 1.31 #32229
    • Hazelcast shutdown logs are not available out-of-the-box #32184
    • Netty 'spring.netty leak detection' default property value is always applied to resource leak detector #32145
    • Error "/var/run/docker.sock: connect: permission denied" occurs when building an image using podman on Fedora with SELinux enabled #32000

    :notebook_with_decorative_cover: Documentation

    • Document support for JDK 19 #32402
    • Clarify documentation of config sub-directory from which external application properties are read #32291
    • Clarify documentation on disabling web client request metrics #32198
    • Kotlin sample is missing for constructor binding #32177
    • Remove out-of-date link from auto-configuration documentation #32174
    • Improve @ConditionalOnClass javadoc regarding use on @Bean methods #32167
    • Document classpath* location for looking up GraphQL schemas across modules #31772

    :hammer: Dependency Upgrades

    • Upgrade to Byte Buddy 1.12.17 #32454
    • Upgrade to Couchbase Client 3.3.4 #32315
    • Upgrade to Dependency Management Plugin 1.0.14.RELEASE #32459
    • Upgrade to Dropwizard Metrics 4.2.12 #32316
    • Upgrade to Ehcache3 3.10.1 #32317
    • Upgrade to Elasticsearch 7.17.6 #32318
    • Upgrade to Embedded Mongo 3.4.9 #32319
    • Upgrade to Groovy 3.0.13 #32443
    • Upgrade to Hibernate 5.6.11.Final #32320
    • Upgrade to Hibernate Validator 6.2.5.Final #32321
    • Upgrade to Infinispan 13.0.11.Final #32322
    • Upgrade to Jackson Bom 2.13.4 #32323
    • Upgrade to Janino 3.1.8 #32324
    • Upgrade to Jetty 9.4.49.v20220914 #32444
    • Upgrade to Johnzon 1.2.19 #32325
    • Upgrade to Kafka 3.1.2 #32326
    • Upgrade to MariaDB 3.0.8 #32445
    • Upgrade to Micrometer 1.9.4 #32272
    • Upgrade to Netty 4.1.82.Final #32327
    • Upgrade to Postgresql 42.3.7 #32243
    • Upgrade to R2DBC Bom Borca-SR2 #32328
    • Upgrade to Reactor 2020.0.23 #32273

    ... (truncated)

    Commits
    • e1a8b1a Release v2.7.4
    • 88723b7 Merge branch '2.6.x' into 2.7.x
    • ca83024 Upgrade to Spring Batch 4.3.7
    • 82763de Upgrade to Spring Batch 4.3.7
    • 8f9323d Document "classpath:*" location for GraphQL Schemas
    • c5a4b1f Merge branch '2.6.x' into 2.7.x
    • 856bd84 Remove JDK 18 CI
    • 7566666 Merge branch '2.6.x' into 2.7.x
    • 5affcec Update Java 19 CI to use Bellsoft Liberica
    • 3620959 Upgrade to Dependency Management Plugin 1.0.14.RELEASE
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 4
  • chore(deps): bump testcontainers-bom from 1.16.3 to 1.17.1 in /boot-data-cassandra

    chore(deps): bump testcontainers-bom from 1.16.3 to 1.17.1 in /boot-data-cassandra

    Bumps testcontainers-bom from 1.16.3 to 1.17.1.

    Release notes

    Sourced from testcontainers-bom's releases.

    1.17.1

    What's Changed

    🐛 Bug Fixes

    📖 Documentation

    1.17.0

    What's Changed

    Highlights

    This new version of Testcontainers comes packed with many new features and quality-of-life improvements, so we appropriately bumped the version to 1.17.0.

    🐝 New Module: HiveMQ (#4797) @​YannickWeber

    Having started its Open Source life as its own 3rd-party Testcontainers library, we are very happy to welcome HiveMQ into the main repository. Now, using HiveMQ as part of your integration tests is as simple as a couple of lines of Java code:

    
    @Container
    HiveMQContainer hivemq = new HiveMQContainer(DockerImageName.parse("hivemq/hivemq-ce:2021.3"));
    hivemq.start();
    

    Mqtt5BlockingClient client = Mqtt5Client.builder() .serverPort(hivemqCe.getMqttPort()) .serverHost(hivemqCe.getHost()) .buildBlocking();

    client.connect();

    Check out the docs to learn more about its many features!

    💀 Ryuk JVM mode (#4959) (#4960) @​bsideup

    Many Testcontainers user love the convenience Ryuk brings to Testcontainers: No matter what you do in your integration tests, Ryuk has got you covered and will cleanup all Docker resources created by Testcontainers after your test run is finished.

    But some users operate Testcontainers in environments which do not support our container-based Ryuk implementation. So far their only option was to disable Ryuk alltogether.

    Coming with this release, Testcontainers will now fallback to a JVM based resource-cleanup implementation in case of Ryuk being disabled. While this won't be as robust as the Ryuk container based implementation in all circumstances, it is nevertheless a great addition and acts as a useful compromise.

    🚀 Features & Enhancements

    ... (truncated)

    Commits
    • 66e4be2 Fix StackOverflowError in DockerClientFactory#client (#5262)
    • cec4934 Update release docs to contain milestone rename step
    • af83569 Update images and theme for testcontainers.org (#5258)
    • 17407ef Increase default client ping timeout from 5 to 10 seconds (#5254)
    • d93dcea Allow to create a file in container from a Transferable (#3814) (#3815)
    • c7449ed Elasticsearch: Ensure Elasticsearch 8 works OOTB secure as default (#5099)
    • 53e80aa Fix incorrect path for RABBITMQ_CONFIG_FILE (#5184)
    • 734678f Deperecate getContainerIpAddress (#5247)
    • aed4476 Merge pull request #5248 from testcontainers/combined-pr-branch
    • ae6bc93 Merge remote-tracking branch 'origin/dependabot/github_actions/actions/checko...
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 4
  • chore(deps): bump maven-surefire-plugin from 3.0.0-M5 to 3.0.0-M6 in /data-mongo

    chore(deps): bump maven-surefire-plugin from 3.0.0-M5 to 3.0.0-M6 in /data-mongo

    Bumps maven-surefire-plugin from 3.0.0-M5 to 3.0.0-M6.

    Release notes

    Sourced from maven-surefire-plugin's releases.

    3.0.0-M6

    ... (truncated)

    Commits
    • 7ac75e5 [maven-release-plugin] prepare release surefire-3.0.0-M6
    • daf717e Bump plexus-component-metadata from 2.0.0 to 2.1.1
    • 487c6fb roadmap
    • e21a81f [index.apt.vm] remove obsolete Maven & JDK requirements
    • f2c5671 [SUREFIRE-2051] Propagate exceptions while resolving artifacts in `SurefireDe...
    • 92b9061 [SUREFIRE-2024] Replace testng-junit5 by testng-engine (#500)
    • 25425c3 [SUREFIRE-2052] Handles internal exceptions do not have suppressed exceptions...
    • 32f7dd3 [SUREFIRE-1432] trimStackTrace = false by default
    • a38bfcc [SUREFIRE-2040] No tests executed with junit-platform-suite and -Dtest=TestSuite
    • db99f16 [SUREFIRE-2046] Resolved TODOs. Updated callbacks ForkedProcessPropertyEventL...
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 4
  • chore(deps): bump maven-compiler-plugin from 3.10.0 to 3.10.1 in /java9

    chore(deps): bump maven-compiler-plugin from 3.10.0 to 3.10.1 in /java9

    Bumps maven-compiler-plugin from 3.10.0 to 3.10.1.

    Release notes

    Sourced from maven-compiler-plugin's releases.

    3.10.1

    🚀 New features and improvements

    🐛 Bug Fixes

    📦 Dependency updates

    Other contributions

    Commits
    • 4e08e2b [maven-release-plugin] prepare release maven-compiler-plugin-3.10.1
    • 6795b0f [MCOMPILER-426] add flag to enable-preview java compiler feature (#98)
    • 1de8c91 MCOMPILER 346 workaround to jdk bug: assertion error from javaxcompiler javax...
    • 96ed94f use shared release drafter
    • fa80028 [MCOMPILER-485] Fixes internal string format in generated package-info.class ...
    • f605c0f Merge pull request #94 from apache/dependabot/maven/org.apache.maven.plugins-...
    • 4a54a9a Bump maven-javadoc-plugin from 3.3.1 to 3.3.2
    • 87b5a7f [maven-release-plugin] prepare for next development iteration
    • See full diff in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 4
  • chore(deps): bump spring-boot-starter-parent from 2.6.2 to 2.6.3 in /vanilla-undertow

    chore(deps): bump spring-boot-starter-parent from 2.6.2 to 2.6.3 in /vanilla-undertow

    Bumps spring-boot-starter-parent from 2.6.2 to 2.6.3.

    Release notes

    Sourced from spring-boot-starter-parent's releases.

    v2.6.3

    :lady_beetle: Bug Fixes

    • 'spring.config.import' placeholders can resolve from profile-specific documents when they should fail #29459
    • Warning from AprLifecycleListener when using Tomcat Native and Tomcat 9.0.55 or later #29454
    • ConfigurationPropertySources.attach will always reattach when called multiple times #29410
    • @SpringBootTest does not use spring.main.web-application-type properties declared in test resource files #29374
    • Embedded launch script fails if jar is owned by an unknown user #29371
    • ResponseStatusException no longer returning response body in 2.6.2 using Spring Security when application has a custom context path #29299
    • Maven repackaging of a jar with a deeply nested package is prohibitively slow #29268
    • Health contributor exclusion rules aren't applied to child contributors #29251
    • Default value for management.info.env.enabled is outdated #29187

    :notebook_with_decorative_cover: Documentation

    • Refer to Maven Resolver rather than Aether #29480
    • Clarify documentation for RestTemplate customization #29401
    • Learning About Spring Boot Features has "logging" link twice #29380

    :hammer: Dependency Upgrades

    • Update to Spring Kafka 2.8.2 #29319
    • Upgrade to Hibernate 5.6.4.Final #29497
    • Upgrade to HttpCore5 5.1.3 #29343
    • Upgrade to Infinispan 12.1.11.Final #29344
    • Upgrade to Jaybird 4.0.5.java8 #29345
    • Upgrade to JBoss Logging 3.4.3.Final #29346
    • Upgrade to Lettuce 6.1.6.RELEASE #29347
    • Upgrade to Log4j2 2.17.1 #29184
    • Upgrade to Logback 1.2.10 #29348
    • Upgrade to MariaDB 2.7.5 #29498
    • Upgrade to Maven Jar Plugin 3.2.2 #29349
    • Upgrade to Micrometer 1.8.2 #29316
    • Upgrade to MongoDB 4.4.1 #29350
    • Upgrade to MySQL 8.0.28 #29467
    • Upgrade to Neo4j Java Driver 4.4.2 #29398
    • Upgrade to Netty 4.1.73.Final #29351
    • Upgrade to Netty tcNative 2.0.47.Final #29395
    • Upgrade to Pooled JMS 1.2.3 #29468
    • Upgrade to R2DBC Bom Arabba-SR12 #29396
    • Upgrade to Reactor 2020.0.15 #29315
    • Upgrade to SLF4J 1.7.33 #29397
    • Upgrade to Spring AMQP 2.4.2 #29318
    • Upgrade to Spring Data 2021.1.1 #29317
    • Upgrade to Spring Framework 5.3.15 #29327
    • Upgrade to Spring HATEOAS 1.4.1 #29283
    • Upgrade to Spring Integration 5.5.8 #29320
    • Upgrade to Spring REST Docs 2.0.6.RELEASE #29322

    :heart: Contributors

    ... (truncated)

    Commits
    • 5282d4e Release v2.6.3
    • 3460c24 Ignore context path when calling privilege evaluator
    • fb44e1c Merge branch '2.5.x' into 2.6.x
    • 5521a5d Next development version (v2.5.10-SNAPSHOT)
    • 94c7a60 Merge branch '2.5.x' into 2.6.x
    • c488be5 Upgrade to MariaDB 2.7.5
    • 5dbde1b Upgrade to Hibernate 5.6.4.Final
    • 6ae5bfb Upgrade to MariaDB 2.7.5
    • 5b1486c Merge branch '2.5.x' into 2.6.x
    • d211b0f Disable test is Docker is not available
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 4
  • chore(deps): bump spring-boot-starter-parent from 2.6.2 to 2.6.3 in /boot-mvc-thymeleaf

    chore(deps): bump spring-boot-starter-parent from 2.6.2 to 2.6.3 in /boot-mvc-thymeleaf

    Bumps spring-boot-starter-parent from 2.6.2 to 2.6.3.

    Release notes

    Sourced from spring-boot-starter-parent's releases.

    v2.6.3

    :lady_beetle: Bug Fixes

    • 'spring.config.import' placeholders can resolve from profile-specific documents when they should fail #29459
    • Warning from AprLifecycleListener when using Tomcat Native and Tomcat 9.0.55 or later #29454
    • ConfigurationPropertySources.attach will always reattach when called multiple times #29410
    • @SpringBootTest does not use spring.main.web-application-type properties declared in test resource files #29374
    • Embedded launch script fails if jar is owned by an unknown user #29371
    • ResponseStatusException no longer returning response body in 2.6.2 using Spring Security when application has a custom context path #29299
    • Maven repackaging of a jar with a deeply nested package is prohibitively slow #29268
    • Health contributor exclusion rules aren't applied to child contributors #29251
    • Default value for management.info.env.enabled is outdated #29187

    :notebook_with_decorative_cover: Documentation

    • Refer to Maven Resolver rather than Aether #29480
    • Clarify documentation for RestTemplate customization #29401
    • Learning About Spring Boot Features has "logging" link twice #29380

    :hammer: Dependency Upgrades

    • Update to Spring Kafka 2.8.2 #29319
    • Upgrade to Hibernate 5.6.4.Final #29497
    • Upgrade to HttpCore5 5.1.3 #29343
    • Upgrade to Infinispan 12.1.11.Final #29344
    • Upgrade to Jaybird 4.0.5.java8 #29345
    • Upgrade to JBoss Logging 3.4.3.Final #29346
    • Upgrade to Lettuce 6.1.6.RELEASE #29347
    • Upgrade to Log4j2 2.17.1 #29184
    • Upgrade to Logback 1.2.10 #29348
    • Upgrade to MariaDB 2.7.5 #29498
    • Upgrade to Maven Jar Plugin 3.2.2 #29349
    • Upgrade to Micrometer 1.8.2 #29316
    • Upgrade to MongoDB 4.4.1 #29350
    • Upgrade to MySQL 8.0.28 #29467
    • Upgrade to Neo4j Java Driver 4.4.2 #29398
    • Upgrade to Netty 4.1.73.Final #29351
    • Upgrade to Netty tcNative 2.0.47.Final #29395
    • Upgrade to Pooled JMS 1.2.3 #29468
    • Upgrade to R2DBC Bom Arabba-SR12 #29396
    • Upgrade to Reactor 2020.0.15 #29315
    • Upgrade to SLF4J 1.7.33 #29397
    • Upgrade to Spring AMQP 2.4.2 #29318
    • Upgrade to Spring Data 2021.1.1 #29317
    • Upgrade to Spring Framework 5.3.15 #29327
    • Upgrade to Spring HATEOAS 1.4.1 #29283
    • Upgrade to Spring Integration 5.5.8 #29320
    • Upgrade to Spring REST Docs 2.0.6.RELEASE #29322

    :heart: Contributors

    ... (truncated)

    Commits
    • 5282d4e Release v2.6.3
    • 3460c24 Ignore context path when calling privilege evaluator
    • fb44e1c Merge branch '2.5.x' into 2.6.x
    • 5521a5d Next development version (v2.5.10-SNAPSHOT)
    • 94c7a60 Merge branch '2.5.x' into 2.6.x
    • c488be5 Upgrade to MariaDB 2.7.5
    • 5dbde1b Upgrade to Hibernate 5.6.4.Final
    • 6ae5bfb Upgrade to MariaDB 2.7.5
    • 5b1486c Merge branch '2.5.x' into 2.6.x
    • d211b0f Disable test is Docker is not available
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 4
  • chore(deps): bump spring-boot-starter-parent from 2.6.2 to 2.6.3 in /boot-data-elasticsearch

    chore(deps): bump spring-boot-starter-parent from 2.6.2 to 2.6.3 in /boot-data-elasticsearch

    Bumps spring-boot-starter-parent from 2.6.2 to 2.6.3.

    Release notes

    Sourced from spring-boot-starter-parent's releases.

    v2.6.3

    :lady_beetle: Bug Fixes

    • 'spring.config.import' placeholders can resolve from profile-specific documents when they should fail #29459
    • Warning from AprLifecycleListener when using Tomcat Native and Tomcat 9.0.55 or later #29454
    • ConfigurationPropertySources.attach will always reattach when called multiple times #29410
    • @SpringBootTest does not use spring.main.web-application-type properties declared in test resource files #29374
    • Embedded launch script fails if jar is owned by an unknown user #29371
    • ResponseStatusException no longer returning response body in 2.6.2 using Spring Security when application has a custom context path #29299
    • Maven repackaging of a jar with a deeply nested package is prohibitively slow #29268
    • Health contributor exclusion rules aren't applied to child contributors #29251
    • Default value for management.info.env.enabled is outdated #29187

    :notebook_with_decorative_cover: Documentation

    • Refer to Maven Resolver rather than Aether #29480
    • Clarify documentation for RestTemplate customization #29401
    • Learning About Spring Boot Features has "logging" link twice #29380

    :hammer: Dependency Upgrades

    • Update to Spring Kafka 2.8.2 #29319
    • Upgrade to Hibernate 5.6.4.Final #29497
    • Upgrade to HttpCore5 5.1.3 #29343
    • Upgrade to Infinispan 12.1.11.Final #29344
    • Upgrade to Jaybird 4.0.5.java8 #29345
    • Upgrade to JBoss Logging 3.4.3.Final #29346
    • Upgrade to Lettuce 6.1.6.RELEASE #29347
    • Upgrade to Log4j2 2.17.1 #29184
    • Upgrade to Logback 1.2.10 #29348
    • Upgrade to MariaDB 2.7.5 #29498
    • Upgrade to Maven Jar Plugin 3.2.2 #29349
    • Upgrade to Micrometer 1.8.2 #29316
    • Upgrade to MongoDB 4.4.1 #29350
    • Upgrade to MySQL 8.0.28 #29467
    • Upgrade to Neo4j Java Driver 4.4.2 #29398
    • Upgrade to Netty 4.1.73.Final #29351
    • Upgrade to Netty tcNative 2.0.47.Final #29395
    • Upgrade to Pooled JMS 1.2.3 #29468
    • Upgrade to R2DBC Bom Arabba-SR12 #29396
    • Upgrade to Reactor 2020.0.15 #29315
    • Upgrade to SLF4J 1.7.33 #29397
    • Upgrade to Spring AMQP 2.4.2 #29318
    • Upgrade to Spring Data 2021.1.1 #29317
    • Upgrade to Spring Framework 5.3.15 #29327
    • Upgrade to Spring HATEOAS 1.4.1 #29283
    • Upgrade to Spring Integration 5.5.8 #29320
    • Upgrade to Spring REST Docs 2.0.6.RELEASE #29322

    :heart: Contributors

    ... (truncated)

    Commits
    • 5282d4e Release v2.6.3
    • 3460c24 Ignore context path when calling privilege evaluator
    • fb44e1c Merge branch '2.5.x' into 2.6.x
    • 5521a5d Next development version (v2.5.10-SNAPSHOT)
    • 94c7a60 Merge branch '2.5.x' into 2.6.x
    • c488be5 Upgrade to MariaDB 2.7.5
    • 5dbde1b Upgrade to Hibernate 5.6.4.Final
    • 6ae5bfb Upgrade to MariaDB 2.7.5
    • 5b1486c Merge branch '2.5.x' into 2.6.x
    • d211b0f Disable test is Docker is not available
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 4
  • chore(deps): bump spring-boot-starter-parent from 2.6.2 to 2.6.3 in /boot-neo4j

    chore(deps): bump spring-boot-starter-parent from 2.6.2 to 2.6.3 in /boot-neo4j

    Bumps spring-boot-starter-parent from 2.6.2 to 2.6.3.

    Release notes

    Sourced from spring-boot-starter-parent's releases.

    v2.6.3

    :lady_beetle: Bug Fixes

    • 'spring.config.import' placeholders can resolve from profile-specific documents when they should fail #29459
    • Warning from AprLifecycleListener when using Tomcat Native and Tomcat 9.0.55 or later #29454
    • ConfigurationPropertySources.attach will always reattach when called multiple times #29410
    • @SpringBootTest does not use spring.main.web-application-type properties declared in test resource files #29374
    • Embedded launch script fails if jar is owned by an unknown user #29371
    • ResponseStatusException no longer returning response body in 2.6.2 using Spring Security when application has a custom context path #29299
    • Maven repackaging of a jar with a deeply nested package is prohibitively slow #29268
    • Health contributor exclusion rules aren't applied to child contributors #29251
    • Default value for management.info.env.enabled is outdated #29187

    :notebook_with_decorative_cover: Documentation

    • Refer to Maven Resolver rather than Aether #29480
    • Clarify documentation for RestTemplate customization #29401
    • Learning About Spring Boot Features has "logging" link twice #29380

    :hammer: Dependency Upgrades

    • Update to Spring Kafka 2.8.2 #29319
    • Upgrade to Hibernate 5.6.4.Final #29497
    • Upgrade to HttpCore5 5.1.3 #29343
    • Upgrade to Infinispan 12.1.11.Final #29344
    • Upgrade to Jaybird 4.0.5.java8 #29345
    • Upgrade to JBoss Logging 3.4.3.Final #29346
    • Upgrade to Lettuce 6.1.6.RELEASE #29347
    • Upgrade to Log4j2 2.17.1 #29184
    • Upgrade to Logback 1.2.10 #29348
    • Upgrade to MariaDB 2.7.5 #29498
    • Upgrade to Maven Jar Plugin 3.2.2 #29349
    • Upgrade to Micrometer 1.8.2 #29316
    • Upgrade to MongoDB 4.4.1 #29350
    • Upgrade to MySQL 8.0.28 #29467
    • Upgrade to Neo4j Java Driver 4.4.2 #29398
    • Upgrade to Netty 4.1.73.Final #29351
    • Upgrade to Netty tcNative 2.0.47.Final #29395
    • Upgrade to Pooled JMS 1.2.3 #29468
    • Upgrade to R2DBC Bom Arabba-SR12 #29396
    • Upgrade to Reactor 2020.0.15 #29315
    • Upgrade to SLF4J 1.7.33 #29397
    • Upgrade to Spring AMQP 2.4.2 #29318
    • Upgrade to Spring Data 2021.1.1 #29317
    • Upgrade to Spring Framework 5.3.15 #29327
    • Upgrade to Spring HATEOAS 1.4.1 #29283
    • Upgrade to Spring Integration 5.5.8 #29320
    • Upgrade to Spring REST Docs 2.0.6.RELEASE #29322

    :heart: Contributors

    ... (truncated)

    Commits
    • 5282d4e Release v2.6.3
    • 3460c24 Ignore context path when calling privilege evaluator
    • fb44e1c Merge branch '2.5.x' into 2.6.x
    • 5521a5d Next development version (v2.5.10-SNAPSHOT)
    • 94c7a60 Merge branch '2.5.x' into 2.6.x
    • c488be5 Upgrade to MariaDB 2.7.5
    • 5dbde1b Upgrade to Hibernate 5.6.4.Final
    • 6ae5bfb Upgrade to MariaDB 2.7.5
    • 5b1486c Merge branch '2.5.x' into 2.6.x
    • d211b0f Disable test is Docker is not available
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies java 
    opened by dependabot[bot] 4
Releases(v1.0)
  • v1.0(Nov 26, 2022)

    Being switched to Spring Boot 3, mark the current codes for Spring 2.7.5.

    What's Changed

    • Fix typo by @silasmahler in https://github.com/hantsy/spring-reactive-sample/pull/3
    • Add missing [At]Configuration. by @michael-simons in https://github.com/hantsy/spring-reactive-sample/pull/22
    • enables dependency bot by @rajadileepkolli in https://github.com/hantsy/spring-reactive-sample/pull/26
    • adds github workflow to execute build by @rajadileepkolli in https://github.com/hantsy/spring-reactive-sample/pull/27
    • chore(deps): bump actions/stale from 1 to 4 by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/136
    • legacy by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/145
    • chore(deps): bump spring-boot-starter-parent from 2.2.5.RELEASE to 2.5.6 in /vanilla by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/44
    • chore(deps): bump spring-boot-starter-parent from 2.2.5.RELEASE to 2.5.6 in /vanilla-tomcat by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/85
    • chore(deps): bump spring-boot-starter-parent from 2.2.5.RELEASE to 2.5.6 in /vanilla-undertow by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/106
    • chore(deps): bump spring-boot-starter-parent from 2.2.5.RELEASE to 2.5.6 in /vanilla-jetty by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/133
    • Polish vanilla examples by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/146
    • boot start by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/148
    • rs adapters by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/149
    • chore(deps): bump spring-boot-starter-parent from 2.1.6.RELEASE to 2.5.6 in /rxjava by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/98
    • chore(deps): bump spring-boot-starter-parent from 2.1.6.RELEASE to 2.5.6 in /boot-kotlin-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/72
    • chore(deps): bump spring-boot-starter-parent from 2.1.6.RELEASE to 2.5.6 in /kotlin by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/81
    • chore(deps): bump spring-boot-starter-parent from 2.1.6.RELEASE to 2.5.6 in /boot-kotlin by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/88
    • chore(deps-dev): bump junit-jupiter-engine from 5.3.2 to 5.8.1 in /boot-kotlin-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/100
    • chore(deps): bump spring-boot-starter-parent from 2.1.6.RELEASE to 2.5.6 in /kotlin-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/116
    • chore(deps-dev): bump junit-jupiter-api from 5.3.2 to 5.8.1 in /boot-kotlin-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/122
    • chore(deps-dev): bump junit-jupiter-engine from 5.3.2 to 5.8.1 in /boot-kotlin by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/143
    • chore(deps): bump kotlin-maven-allopen from 1.2.71 to 1.5.31 in /boot-kotlin-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/89
    • chore(deps): bump kotlin.version from 1.2.71 to 1.5.31 in /boot-kotlin by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/46
    • chore(deps): bump kotlin.version from 1.2.41 to 1.2.71 in /kotlin by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/96
    • chore(deps): bump kotlin.version from 1.2.41 to 1.2.71 in /kotlin-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/113
    • chore(deps): bump kotlin.version from 1.1.61 to 1.2.71 in /kotlin-routes by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/117
    • chore(deps): bump spring-boot-starter-parent from 2.1.6.RELEASE to 2.5.6 in /kotlin-routes by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/119
    • chore(deps-dev): bump junit-jupiter-api from 5.3.2 to 5.8.1 in /boot-kotlin by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/87
    • Kotlin examples by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/150
    • Groovy examples by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/152
    • Mvc examples by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/153
    • Security examples by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/154
    • Session examples by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/155
    • Spring Integration examples by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/156
    • clean Spring Data Redis examples by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/157
    • clean Spring Data Neo4j examples by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/158
    • clean Spring Data Mongo examples by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/159
    • clean other Spring Data examples by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/160
    • fixes issue with artifact Name by @rajadileepkolli in https://github.com/hantsy/spring-reactive-sample/pull/161
    • Enable Data Auditing in boot-data-couchbase by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/162
    • Corrected artifact name by @rajadileepkolli in https://github.com/hantsy/spring-reactive-sample/pull/164
    • Fixes links in docs by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/169
    • Add testing codes to websocket by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/170
    • Deprecate rxjava and rxjava2 by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/173
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /vanilla-undertow by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/214
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /data-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/215
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /security by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/216
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /websocket by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/217
    • chore(deps): bump kotlin.version from 1.5.31 to 1.6.0 in /kotlin by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/218
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /java9 by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/219
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /kotlin-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/220
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /data-couchbase by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/221
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /data-mongo by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/222
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /smallrye-mutiny by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/223
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /data-redis by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/224
    • chore(deps): bump kotlin.version from 1.5.31 to 1.6.0 in /kotlin-routes by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/225
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /mvc-mustache by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/226
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /mvc-freemarker by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/227
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /security-form by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/228
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /vanilla by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/229
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /session by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/230
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /security-user-properties by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/231
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /security-method by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/232
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /vanilla-tomcat by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/233
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /integration-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/234
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /session-data-mongo by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/235
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /war by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/236
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /groovy by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/237
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /security-data-mongo by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/238
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /restdocs by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/239
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /vanilla-jetty by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/240
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-neo4j-cypher by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/241
    • chore(deps): bump kotlin.version from 1.5.31 to 1.6.0 in /kotlin-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/242
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /java8 by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/243
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /data-cassandra by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/184
    • chore(deps): bump kotlin-maven-allopen from 1.5.31 to 1.6.0 in /boot-kotlin by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/185
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /sse by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/186
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-data-mongo-gridfs by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/187
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-redis by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/188
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /client by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/189
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-kotlin-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/190
    • chore(deps): bump spring-boot-starter-parent from 2.6.0-RC1 to 2.6.0-SNAPSHOT in /boot-data-elasticsearch by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/191
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /kotlin-routes by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/192
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /integration by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/193
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-data-cassandra by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/194
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-groovy by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/195
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /groovy-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/196
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /register-bean by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/197
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /session-data-redis by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/198
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /mvc-thymeleaf by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/199
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-data-mongo-querydsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/200
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-mvc-freemarker by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/201
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-data-redis by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/202
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /web-filter by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/203
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-data-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/204
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-kotlin by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/205
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /multipart by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/206
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /rxjava3 by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/207
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /data-redis-message by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/208
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /session-header by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/209
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /data-mongo-pageable by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/210
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /multipart-data-mongo by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/211
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /kotlin by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/212
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /routes by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/213
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/174
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /exception-handler by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/175
    • chore(deps): bump kotlin-maven-allopen from 1.5.31 to 1.6.0 in /boot-kotlin-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/176
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-data-couchbase by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/177
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-mongo by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/178
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /data-mongo-transaction by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/179
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-start by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/180
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-mvc-mustache by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/181
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-mvc-thymeleaf by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/182
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-start-routes by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/183
    • adds boot-data-mongo-tailable module to dependency bot by @rajadileepkolli in https://github.com/hantsy/spring-reactive-sample/pull/244
    • chore(deps): bump spring-boot-starter-parent from 2.5.6 to 2.5.7 in /boot-data-mongo-tailable by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/245
    • upgrade to 2.6.0 Version by @rajadileepkolli in https://github.com/hantsy/spring-reactive-sample/pull/246
    • Upgrade to Spring Boot 2.6.0 by @hantsy in https://github.com/hantsy/spring-reactive-sample/pull/247
    • upgrades maven wrapper to 3.8.3 by @rajadileepkolli in https://github.com/hantsy/spring-reactive-sample/pull/249
    • chore(deps): bump gmavenplus-plugin from 1.13.0 to 1.13.1 in /groovy-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/256
    • chore(deps): bump gmavenplus-plugin from 1.13.0 to 1.13.1 in /groovy by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/250
    • chore(deps): bump gmavenplus-plugin from 1.13.0 to 1.13.1 in /boot-groovy by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/251
    • chore(deps): bump actions/setup-java from 2.3.1 to 2.4.0 by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/252
    • chore(deps): bump rxjava from 3.1.2 to 3.1.3 in /rxjava3 by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/255
    • chore(deps-dev): bump neo4j-harness from 4.3.7 to 4.4.0 in /boot-data-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/253
    • chore(deps): bump mutiny-bom from 1.1.2 to 1.2.0 in /smallrye-mutiny by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/254
    • Using neo4j java slim driver by @rajadileepkolli in https://github.com/hantsy/spring-reactive-sample/pull/257
    • chore(deps): bump neo4j.version from 4.4.0 to 4.4.1 in /boot-data-neo4j by @rajadileepkolli in https://github.com/hantsy/spring-reactive-sample/pull/258
    • chore(deps): bump actions/setup-java from 2.4.0 to 2.5.0 by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/262
    • chore(deps): bump kotlin.version from 1.6.0 to 1.6.10 in /kotlin-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/268
    • chore(deps): bump neo4j.version from 4.4.1 to 4.4.2 in /boot-data-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/267
    • chore(deps): bump kotlin-maven-allopen from 1.6.0 to 1.6.10 in /boot-kotlin by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/266
    • chore(deps): bump kotlin-maven-allopen from 1.6.0 to 1.6.10 in /boot-kotlin-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/265
    • chore(deps): bump kotlin.version from 1.6.0 to 1.6.10 in /kotlin-routes by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/264
    • chore(deps): bump kotlin.version from 1.6.0 to 1.6.10 in /kotlin by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/263
    • chore(deps): bump neo4j.version from 4.4.2 to 4.4.3 in /boot-data-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/382
    • chore(deps): bump testcontainers-bom from 1.16.2 to 1.16.3 in /boot-mongo by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/365
    • chore(deps): bump testcontainers-bom from 1.16.2 to 1.16.3 in /boot-data-mongo-tailable by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/378
    • chore(deps): bump testcontainers-bom from 1.16.2 to 1.16.3 in /boot-redis by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/375
    • chore(deps): bump mutiny-bom from 1.2.0 to 1.3.1 in /smallrye-mutiny by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/360
    • chore(deps): bump testcontainers-bom from 1.16.2 to 1.16.3 in /data-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/289
    • chore(deps): bump testcontainers-bom from 1.16.2 to 1.16.3 in /boot-data-couchbase by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/291
    • chore(deps): bump testcontainers-bom from 1.16.2 to 1.16.3 in /boot-data-mongo by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/292
    • chore(deps): bump testcontainers-bom from 1.16.2 to 1.16.3 in /boot-data-cassandra by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/309
    • chore(deps): bump testcontainers-bom from 1.16.2 to 1.16.3 in /boot-data-elasticsearch by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/311
    • chore(deps): bump asciidoctor-maven-plugin from 2.2.1 to 2.2.2 in /restdocs by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/313
    • chore(deps): bump testcontainers-bom from 1.16.2 to 1.16.3 in /data-mongo by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/324
    • chore(deps): bump testcontainers-bom from 1.16.2 to 1.16.3 in /boot-data-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/325
    • chore(deps): bump actions/setup-java from 2.5.0 to 3 by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/435
    • chore(deps): bump mutiny-bom from 1.3.1 to 1.4.0 in /smallrye-mutiny by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/582
    • chore(deps): bump actions/checkout from 2 to 3 by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/538
    • chore(deps): bump actions/labeler from 3.0.2 to 4 by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/527
    • chore(deps): bump neo4j.version from 4.4.3 to 4.4.5 in /boot-data-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/524
    • chore(deps): bump rxjava from 3.1.3 to 3.1.4 in /rxjava3 by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/517
    • chore(deps): bump actions/stale from 4 to 5 by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/622
    • chore(deps): bump testcontainers-bom from 1.17.1 to 1.17.2 in /data-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/716
    • chore(deps): bump testcontainers-bom from 1.17.1 to 1.17.2 in /boot-mongo by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/715
    • chore(deps): bump rxjava from 3.1.4 to 3.1.5 in /rxjava3 by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/714
    • chore(deps): bump testcontainers-bom from 1.17.1 to 1.17.2 in /boot-redis by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/713
    • chore(deps): bump mutiny-bom from 1.4.0 to 1.5.0 in /smallrye-mutiny by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/712
    • chore(deps): bump testcontainers-bom from 1.17.1 to 1.17.2 in /data-mongo by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/711
    • chore(deps): bump testcontainers-bom from 1.17.1 to 1.17.2 in /boot-data-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/710
    • chore(deps): bump testcontainers-bom from 1.17.1 to 1.17.2 in /boot-data-mongo-tailable by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/709
    • chore(deps): bump testcontainers-bom from 1.17.1 to 1.17.2 in /boot-data-cassandra by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/708
    • chore(deps): bump testcontainers-bom from 1.17.1 to 1.17.2 in /boot-data-mongo by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/707
    • chore(deps): bump maven-surefire-plugin from 3.0.0-M6 to 3.0.0-M7 in /data-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/741
    • chore(deps): bump neo4j.version from 4.4.5 to 4.4.6 in /boot-data-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/740
    • chore(deps): bump maven-surefire-plugin from 3.0.0-M6 to 3.0.0-M7 in /kotlin by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/739
    • chore(deps): bump mutiny-bom from 1.5.0 to 1.6.0 in /smallrye-mutiny by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/738
    • chore(deps): bump testcontainers-bom from 1.17.2 to 1.17.3 in /boot-data-mongo-tailable by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/736
    • chore(deps): bump kotlin.version from 1.6.21 to 1.7.0 in /kotlin by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/734
    • chore(deps): bump testcontainers-bom from 1.17.2 to 1.17.3 in /data-mongo by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/727
    • chore(deps): bump testcontainers-bom from 1.17.2 to 1.17.3 in /boot-mongo by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/733
    • chore(deps): bump testcontainers-bom from 1.17.2 to 1.17.3 in /data-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/732
    • chore(deps): bump testcontainers-bom from 1.17.2 to 1.17.3 in /boot-data-mongo by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/730
    • chore(deps): bump testcontainers-bom from 1.17.2 to 1.17.3 in /boot-redis by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/731
    • chore(deps): bump maven-surefire-plugin from 3.0.0-M6 to 3.0.0-M7 in /war by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/729
    • chore(deps): bump kotlin.version from 1.6.21 to 1.7.0 in /kotlin-routes by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/726
    • chore(deps): bump testcontainers-bom from 1.17.2 to 1.17.3 in /boot-data-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/725
    • chore(deps): bump maven-surefire-plugin from 3.0.0-M6 to 3.0.0-M7 in /data-mongo by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/721
    • chore(deps): bump kotlin-maven-allopen from 1.6.21 to 1.7.0 in /boot-kotlin-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/717
    • chore(deps): bump kotlin-maven-allopen from 1.6.21 to 1.7.0 in /boot-kotlin by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/724
    • chore(deps): bump testcontainers-bom from 1.17.2 to 1.17.3 in /boot-data-couchbase by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/722
    • chore(deps): bump testcontainers-bom from 1.17.2 to 1.17.3 in /boot-data-cassandra by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/720
    • chore(deps): bump maven-surefire-plugin from 3.0.0-M6 to 3.0.0-M7 in /boot-data-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/719
    • chore(deps): bump kotlin.version from 1.6.21 to 1.7.0 in /kotlin-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/723
    • chore(deps): bump maven-surefire-plugin from 3.0.0-M6 to 3.0.0-M7 in /data-mongo-pageable by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/718
    • chore(deps): bump maven-surefire-plugin from 3.0.0-M6 to 3.0.0-M7 in /boot-data-couchbase by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/735
    • chore(deps): bump exec-maven-plugin from 3.0.0 to 3.1.0 in /websocket by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/811
    • chore(deps): bump kotlin.version from 1.7.0 to 1.7.10 in /kotlin-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/814
    • chore(deps): bump kotlin.version from 1.7.0 to 1.7.10 in /kotlin by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/812
    • chore(deps): bump neo4j.version from 4.4.6 to 4.4.9 in /boot-data-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/796
    • chore(deps): bump kotlin-maven-allopen from 1.7.0 to 1.7.10 in /boot-kotlin-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/763
    • chore(deps): bump testcontainers-bom from 1.17.2 to 1.17.3 in /boot-data-elasticsearch by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/728
    • chore(deps): bump kotlin.version from 1.7.0 to 1.7.10 in /kotlin-routes by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/792
    • chore(deps): bump kotlin-maven-allopen from 1.7.0 to 1.7.10 in /boot-kotlin by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/750
    • chore(deps): bump mutiny-bom from 1.6.0 to 1.7.0 in /smallrye-mutiny by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/817
    • fix typos curd -> crud and repository misspelling by @mstommes in https://github.com/hantsy/spring-reactive-sample/pull/818
    • polish artifact name and increment elasticsearch version by @rajadilipkolli in https://github.com/hantsy/spring-reactive-sample/pull/819
    • chore(deps): bump jetty-maven-plugin from 10.0.6 to 11.0.12 in /war by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/889
    • chore(deps): bump actions/stale from 5 to 6 by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/824
    • chore(deps): bump gmavenplus-plugin from 1.13.1 to 2.1.0 in /groovy-dsl by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/921
    • chore(deps): bump gmavenplus-plugin from 1.13.1 to 2.1.0 in /boot-groovy by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/920
    • chore(deps): bump testcontainers-bom from 1.17.4 to 1.17.5 in /boot-data-cassandra by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/919
    • chore(deps): bump testcontainers-bom from 1.17.4 to 1.17.5 in /boot-redis by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/918
    • chore(deps): bump testcontainers-bom from 1.17.4 to 1.17.5 in /boot-data-mongo-tailable by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/917
    • chore(deps): bump testcontainers-bom from 1.17.4 to 1.17.5 in /data-mongo by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/916
    • chore(deps): bump testcontainers-bom from 1.17.4 to 1.17.5 in /boot-data-mongo by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/912
    • chore(deps): bump gmavenplus-plugin from 1.13.1 to 2.1.0 in /groovy by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/911
    • chore(deps): bump testcontainers-bom from 1.17.4 to 1.17.5 in /data-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/910
    • chore(deps): bump testcontainers-bom from 1.17.4 to 1.17.5 in /boot-data-neo4j by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/909
    • chore(deps): bump testcontainers-bom from 1.17.4 to 1.17.5 in /boot-mongo by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/915
    • chore(deps): bump testcontainers-bom from 1.17.4 to 1.17.5 in /boot-data-elasticsearch by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/914
    • chore(deps): bump testcontainers-bom from 1.17.4 to 1.17.5 in /boot-data-couchbase by @dependabot in https://github.com/hantsy/spring-reactive-sample/pull/913

    New Contributors

    • @silasmahler made their first contribution in https://github.com/hantsy/spring-reactive-sample/pull/3
    • @michael-simons made their first contribution in https://github.com/hantsy/spring-reactive-sample/pull/22
    • @rajadileepkolli made their first contribution in https://github.com/hantsy/spring-reactive-sample/pull/26
    • @dependabot made their first contribution in https://github.com/hantsy/spring-reactive-sample/pull/136
    • @mstommes made their first contribution in https://github.com/hantsy/spring-reactive-sample/pull/818
    • @rajadilipkolli made their first contribution in https://github.com/hantsy/spring-reactive-sample/pull/819

    Full Changelog: https://github.com/hantsy/spring-reactive-sample/commits/v1.0

    Source code(tar.gz)
    Source code(zip)
循序渐进,学习Spring Boot、Spring Boot & Shiro、Spring Batch、Spring Cloud、Spring Cloud Alibaba、Spring Security & Spring Security OAuth2,博客Spring系列源码:https://mrbird.cc

Spring 系列教程 该仓库为个人博客https://mrbird.cc中Spring系列源码,包含Spring Boot、Spring Boot & Shiro、Spring Cloud,Spring Boot & Spring Security & Spring Security OAuth2

mrbird 24.8k Jan 6, 2023
source code of the live coding demo for "Building resilient and scalable API backends with Apache Pulsar and Spring Reactive" talk held at ApacheCon@Home 2021

reactive-iot-backend The is the source code of the live coding demo for "Building resilient and scalable API backends with Apache Pulsar and Spring Re

Lari Hotari 4 Jan 13, 2022
Decorating Spring Boot Reactive WebClient for tracing the request and response data for http calls.

SpringBoot Reactive WebClient ?? Tracing HTTP Request through a single pane of glass Decorating Spring Boot Reactive WebClient for tracing the request

Reactive Learning LLP 7 Jul 13, 2022
该仓库中主要是 Spring Boot 的入门学习教程以及一些常用的 Spring Boot 实战项目教程,包括 Spring Boot 使用的各种示例代码,同时也包括一些实战项目的项目源码和效果展示,实战项目包括基本的 web 开发以及目前大家普遍使用的线上博客项目/企业大型商城系统/前后端分离实践项目等,摆脱各种 hello world 入门案例的束缚,真正的掌握 Spring Boot 开发。

Spring Boot Projects 该仓库中主要是 Spring Boot 的入门学习教程以及一些常用的 Spring Boot 实战项目教程,包括 Spring Boot 使用的各种示例代码,同时也包括一些实战项目的项目源码和效果展示,实战项目包括基本的 web 开发以及目前大家普遍使用的前

十三 4.5k Dec 30, 2022
A joint research effort for building highly optimized Reactive-Streams compliant operators.

reactive-streams-commons A joint research effort for building highly optimized Reactive-Streams compliant operators. Current implementors include RxJa

Reactor 350 Dec 23, 2022
Reactive Streams Specification for the JVM

Reactive Streams The purpose of Reactive Streams is to provide a standard for asynchronous stream processing with non-blocking backpressure. The lates

null 4.5k Dec 30, 2022
Non-Blocking Reactive Foundation for the JVM

Reactor Core Non-Blocking Reactive Streams Foundation for the JVM both implementing a Reactive Extensions inspired API and efficient event streaming s

Reactor 4.4k Dec 30, 2022
一个涵盖六个专栏:Spring Boot 2.X、Spring Cloud、Spring Cloud Alibaba、Dubbo、分布式消息队列、分布式事务的仓库。希望胖友小手一抖,右上角来个 Star,感恩 1024

友情提示:因为提供了 50000+ 行示例代码,所以艿艿默认注释了所有 Maven Module。 胖友可以根据自己的需要,修改 pom.xml 即可。 一个涵盖六个主流技术栈的正经仓库: 《Spring Boot 专栏》 《Spring Cloud Alibaba 专栏》 《Spring Clou

芋道源码 15.7k Dec 31, 2022
参考 DDD/Clean Architecture 设计理念,整合 Spring Boot/Spring Security/Mybatis Plus/Vavr 的 Spring Realworld 应用案例

Demo · 更多项目 · 参考资料 ms-spring-ddd-examples Unified Domain-driven Layered Architecture for MicroService Apps,试图探索一套切实可行的应用架构规范,可以复制、可以理解、可以落地、可以控制复杂性的指导

王下邀月熊 19 Sep 23, 2022
Spring Kurulumundan Başlayarak, Spring IOC ve Dependency Injection, Hibernate, Maven ve Spring Boot Konularına Giriş Yapıyoruz.

Spring Tutorial for Beginners File Directory Apache Tomcat Apache Tomcat - Eclipse Bağlantısı Spring Paketlerinin İndirilmesi ve Projeye Entegrasyonu

İbrahim Can Erdoğan 11 Apr 11, 2022
Spring Boot JdbcTemplate example with SQL Server: CRUD Rest API using Spring Data JDBC, Spring Web MVC

Spring Boot JdbcTemplate example with SQL Server: Build CRUD Rest API Build a Spring Boot CRUD Rest API example that uses Spring Data Jdbc to make CRU

null 7 Dec 20, 2022
Spring Boot & MongoDB Login and Registration example with JWT, Spring Security, Spring Data MongoDB

Spring Boot Login and Registration example with MongoDB Build a Spring Boot Auth with HttpOnly Cookie, JWT, Spring Security and Spring Data MongoDB. Y

null 15 Dec 30, 2022
Spring Boot Login and Registration example with MySQL, JWT, Rest Api - Spring Boot Spring Security Login example

Spring Boot Login example with Spring Security, MySQL and JWT Appropriate Flow for User Login and Registration with JWT Spring Boot Rest Api Architect

null 58 Jan 5, 2023
Demo microservice architecture with Spring ,Spring Cloud Gateway , Spring Cloud config server , Eureuka , keycloak and Docker.

spring-microservice Demo microservice architecture with Spring ,Spring Cloud Gateway , Spring Cloud config server , Eureuka , keycloak and Docker. Arc

null 4 Sep 13, 2022
Spring Boot JWT Authentication example with Spring Security & Spring Data JPA

Spring Boot JWT Authentication example with Spring Security & Spring Data JPA

null 1 Jan 26, 2022
Spring REST service built with Spring initializr and Spring Data.

Spring REST Service Generated with start.spring.io, using Spring Data. Documented using Spring REST Docs. Spring Initializr - Generate new Spring Rest

null 1 Jan 28, 2022
mall-swarm是一套微服务商城系统,采用了 Spring Cloud Hoxton & Alibaba、Spring Boot 2.3、Oauth2、MyBatis、Docker、Elasticsearch、Kubernetes等核心技术,同时提供了基于Vue的管理后台方便快速搭建系统。mall-swarm在电商业务的基础集成了注册中心、配置中心、监控中心、网关等系统功能。文档齐全,附带全套Spring Cloud教程。

mall-swarm 友情提示 快速体验项目:在线访问地址。 全套学习教程:《mall学习教程》。 Spring Cloud全套教程:《SpringCloud学习教程》。 专属学习路线:学习不走弯路,整理了套非常不错的《mall专属学习路线》。 项目交流:想要加群交流项目的朋友,可以加入mall项目

macro 9.7k Jan 3, 2023
芋道 mall 商城,基于微服务的思想,构建在 B2C 电商场景下的项目实战。核心技术栈,是 Spring Boot + Dubbo 。未来,会重构成 Spring Cloud Alibaba 。

[toc] 友情提示:近期在升级和优化该项目,建议先 Star 本项目。主要在做几个事情: 1、微服务技术选型以 Spring Cloud Alibaba 为中心。 2、修改项目分层,并合并部分服务,简化整体服务的复杂性。 3、将管理后台从 React 重构到 Vue 框架。 交流群:传送门 前言

芋道源码 7k Jan 6, 2023
about learning Spring Boot via examples. Spring Boot 教程、技术栈示例代码,快速简单上手教程。

Spring Boot 学习示例 Spring Boot 使用的各种示例,以最简单、最实用为标准,此开源项目中的每个示例都以最小依赖,最简单为标准,帮助初学者快速掌握 Spring Boot 各组件的使用。 Spring Boot 中文索引 | Spring Cloud学习示例代码 | Spring

纯洁的微笑 28.3k Jan 1, 2023