This is an automated email from the ASF dual-hosted git repository.
fmariani pushed a change to branch camel-spring-boot-4.8.x
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
from 409f5ab2cd2 camel-jolokia-starter: Enables discovery on local
environment (#1337)
new dab7b32697e CAMEL-21461: platform-http - add CORS support (#1299)
new 6b77b8b3b82 camel-platform-http-starter - improve to use a unique
filename for the uploadedTmpFile
new 527646878f8 CAMEL-21461: Add features to Platform Http SB Starter
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../camel-platform-http-starter/pom.xml | 39 ++
.../springboot/CamelRequestHandlerMapping.java | 113 +++++-
.../http/springboot/PlatformHttpMessage.java | 8 +-
.../springboot/SpringBootPlatformHttpBinding.java | 171 ++++++++-
.../PlatformHttpAsyncRequestHandlingTest.java | 11 +-
.../platform/http/springboot/PlatformHttpBase.java | 3 +-
.../http/springboot/PlatformHttpStreamingTest.java | 6 +-
...ringBootPlatformHttpCamelIntegrationsTest.java} | 96 ++---
.../SpringBootPlatformHttpCertificationTest.java | 391 +++++++++++++++++++++
.../SpringBootPlatformHttpCookiesTest.java | 160 +++++++++
.../SpringBootPlatformHttpCorsCredentialsTest.java | 201 +++++++++++
.../springboot/SpringBootPlatformHttpCorsTest.java | 173 +++++++++
.../SpringBootPlatformHttpEngineTest.java | 253 +++++++++++++
...SpringBootPlatformHttpHandleWriteErrorTest.java | 4 +-
...pringBootPlatformHttpJacksonConverterTest.java} | 65 ++--
...pringBootPlatformHttpMultipleExecutorsTest.java | 4 +-
.../SpringBootPlatformHttpOptionsTest.java | 124 +++++++
...t.java => SpringBootPlatformHttpProxyTest.java} | 100 +++---
.../SpringBootPlatformHttpRestDSLTest.java | 4 +-
.../SpringBootPlatformHttpSessionTest.java | 174 +++++++++
.../SpringBootPlatformHttpSpringSessionTest.java | 67 ++++
.../springboot/SpringBootPlatformHttpTest.java | 4 +-
.../SpringBootPlatformHttpTypeConverterTest.java | 135 +++++++
.../SpringBootPlatformHttpValidationTest.java | 191 ++++++++++
.../src/test/resources/application.properties | 22 +-
pom.xml | 2 +
26 files changed, 2381 insertions(+), 140 deletions(-)
copy
components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/{SpringBootPlatformHttpMultipleExecutorsVirtualThreadsTest.java
=> SpringBootPlatformHttpCamelIntegrationsTest.java} (50%)
create mode 100644
components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/SpringBootPlatformHttpCertificationTest.java
create mode 100644
components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/SpringBootPlatformHttpCookiesTest.java
create mode 100644
components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/SpringBootPlatformHttpCorsCredentialsTest.java
create mode 100644
components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/SpringBootPlatformHttpCorsTest.java
create mode 100644
components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/SpringBootPlatformHttpEngineTest.java
copy
components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/{SpringBootPlatformHttpVirtualThreadsTest.java
=> SpringBootPlatformHttpJacksonConverterTest.java} (56%)
create mode 100644
components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/SpringBootPlatformHttpOptionsTest.java
copy
components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/{SpringBootPlatformHttpMultipleExecutorsVirtualThreadsTest.java
=> SpringBootPlatformHttpProxyTest.java} (51%)
create mode 100644
components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/SpringBootPlatformHttpSessionTest.java
create mode 100644
components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/SpringBootPlatformHttpSpringSessionTest.java
create mode 100644
components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/SpringBootPlatformHttpTypeConverterTest.java
create mode 100644
components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/SpringBootPlatformHttpValidationTest.java