rstoyanchev
263811ecfa
Add WebFlux equivalent of ResponseEntityExceptionHandler
...
Closes gh-28665
2 years ago
Juergen Hoeller
dfae4eec2d
Merge branch '5.3.x'
...
# Conflicts:
# build.gradle
# spring-core/src/main/java/org/springframework/cglib/core/ReflectUtils.java
# spring-core/src/main/java/org/springframework/core/ResolvableType.java
# spring-jdbc/src/main/java/org/springframework/jdbc/core/StatementCreatorUtils.java
# spring-r2dbc/src/main/java/org/springframework/r2dbc/connection/R2dbcTransactionManager.java
2 years ago
Juergen Hoeller
3c3ae32f07
Upgrade to Netty 4.1.79, Jetty 9.4.48, Undertow 2.2.18, Checkstyle 10.3.1
2 years ago
Juergen Hoeller
a3e46a2db7
ResolvableType.forInstance returns NONE for null instance
...
Closes gh-28776
2 years ago
Juergen Hoeller
de1b938e2e
Improve diagnostics for CGLIB ClassLoader mismatch with --add-opens hint
...
Closes gh-28747
2 years ago
Juergen Hoeller
d72aeac319
Create well-known non-interface types without using reflection
...
Closes gh-28718
2 years ago
Juergen Hoeller
5247eeba84
Support LocalDate/Time for SQL type mappings
...
Closes gh-28778
2 years ago
Juergen Hoeller
ae70e3c81c
Apply read-only enforcement after R2DBC transaction begin
...
Includes prepareTransactionalConnection variant aligned with JDBC DataSourceTransactionManager.
Closes gh-28610
2 years ago
Juergen Hoeller
56fc64dd14
Apply read-only enforcement after R2DBC transaction begin
...
Includes prepareTransactionalConnection variant aligned with JDBC DataSourceTransactionManager.
Closes gh-28610
2 years ago
Juergen Hoeller
7055ddb489
Upgrade to R2DBC 1.0
...
Includes Reactor 2022.0.0-M4, Netty 4.1.79, Jetty 11.0.11, Undertow 2.2.18, Hibernate ORM 5.6.10, Checkstyle 10.3.1
Closes gh-28787
2 years ago
Sébastien Deleuze
b135cbe7c8
Merge branch '5.3.x'
2 years ago
Sébastien Deleuze
c942c8d2cf
Fix expectations in MockMvc Kotlin documentation
...
Closes gh-28301
2 years ago
Sébastien Deleuze
1201af20e4
Improve consistency of Kotlin injection code samples
...
Closes gh-28596
2 years ago
Sébastien Deleuze
d1df4d3739
Fix Kotlin code snippets language
...
Closes gh-28810
2 years ago
Sébastien Deleuze
1ef8800c6c
Fix Kotlin example for custom @Production
...
Closes gh-28680
2 years ago
Sébastien Deleuze
0ad558d936
Merge branch '5.3.x'
2 years ago
Sébastien Deleuze
4d7e4e0c58
Fix a typo
...
See gh-28630
2 years ago
Stephane Nicoll
2c92d7da8f
Harmonize RuntimeHintsRegistrar implementations
...
Closes gh-28801
2 years ago
Stephane Nicoll
44d7e2775f
Polish
2 years ago
Stephane Nicoll
54a3f66d1d
Move RuntimeHints predicate support to a dedicated package
...
This commit moves `RuntimeHintsPredicate` and its support classes that
form a cohesive concept in a dedicated `.predicate` package.
Closes gh-28799
2 years ago
Stephane Nicoll
40c8b7c59f
Stop using package protected code
...
See gh-28799
2 years ago
Sam Brannen
5c2870ebd9
Test support for serializable records in SerializationUtils
...
See gh-28798
2 years ago
Stephane Nicoll
18ce31f18a
Merge branch '5.3.x'
2 years ago
Stephane Nicoll
c7067269b3
Upgrade to Reactor 2020.0.21
...
Closes gh-28765
2 years ago
rstoyanchev
380aedb12a
Add ProblemDetailJacksonMixin
...
Closes gh-28665
2 years ago
Sam Brannen
1c03aaaddc
Fix Javadoc in ResponseEntityExceptionHandler
2 years ago
Sam Brannen
be5e40a9d1
Merge branch '5.3.x'
2 years ago
Sam Brannen
3af6a22b9f
Temporarily disable Javadoc links to Apache HttpClient 5.1 APIs
2 years ago
Sam Brannen
dc0f0c77c9
Merge branch '5.3.x'
2 years ago
Sam Brannen
31a9694fc8
Improve Javadoc for ContextCache#clearStatistics()
...
See gh-28795
2 years ago
Marc Wrobel
92b8e99cbc
Fix and improve Javadoc in spring-test
...
Closes gh-28795
2 years ago
Sam Brannen
49b47cc6cf
Merge branch '5.3.x'
...
# Conflicts:
# spring-tx/src/main/java/org/springframework/jca/endpoint/GenericMessageEndpointFactory.java
2 years ago
Marc Wrobel
3b68e97710
Fix and improve Javadoc in spring-tx
...
Closes gh-28794
2 years ago
Sam Brannen
3f993f8639
Merge branch '5.3.x'
...
# Conflicts:
# spring-web/src/main/java/org/springframework/web/accept/AbstractMappingContentNegotiationStrategy.java
2 years ago
Marc Wrobel
6f494ef438
Fix and improve Javadoc in spring-web
...
Closes gh-28791
2 years ago
Sam Brannen
983c6e233f
Merge branch '5.3.x'
...
# Conflicts:
# spring-webflux/src/main/java/org/springframework/web/reactive/result/view/RedirectView.java
2 years ago
Sam Brannen
19704805fd
Polish contribution
...
See gh-28790
2 years ago
Marc Wrobel
31c6965c7f
Fix and improve Javadoc in spring-webflux
...
Closes gh-28790
2 years ago
Sam Brannen
285b1b483e
Update Javadoc in DefaultHandlerExceptionResolver to reflect changes
...
See gh-27052
2 years ago
rstoyanchev
7f0abb718b
Add repo for transitive dependency on context-propagation
...
Reactor Netty M4 brings in a dependency on context-propagation, so we
need the milestone repository. The dependency will become optional for
M5, so we only need this temporarily.
See gh-28766
2 years ago
rstoyanchev
b64835d2c8
Improve ResponseEntityExceptionHandler
...
- update handler methods for lower level exceptions to create a mapping
to a ProblemDetail.
- add protected method for creating the ResponseEntity that a subclass
can override to re-create ProblemDetail without overriding the rest
of what handleExceptionInternal does.
- update Javadoc and polishing
See gh-28439
2 years ago
Sam Brannen
87a2652604
Merge branch '5.3.x'
...
# Conflicts:
# spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/support/DefaultHandlerExceptionResolver.java
2 years ago
Sam Brannen
5b1a84e395
Polish contribution
...
See gh-28789
2 years ago
Marc Wrobel
6985fa8057
Fix and improve Javadoc in spring-webmvc
...
Closes gh-28789
2 years ago
Stephane Nicoll
ee6a4e7c1e
Add predicates for Serialization hints
...
Closes gh-28772
2 years ago
Sam Brannen
7751c44487
Merge branch '5.3.x'
...
# Conflicts:
# spring-websocket/src/main/java/org/springframework/web/socket/CloseStatus.java
# spring-websocket/src/main/java/org/springframework/web/socket/adapter/standard/StandardToWebSocketExtensionAdapter.java
# spring-websocket/src/main/java/org/springframework/web/socket/sockjs/client/SockJsClient.java
2 years ago
Marc Wrobel
03f0c57704
Fix and improve Javadoc in spring-websocket
...
Closes gh-28788
2 years ago
Sébastien Deleuze
bcb6f13fc4
Add native image support for STOMP messaging
...
This commit adds reflection hints for messaging
annotations as well as for classes and methods
annotated with @MessageMapping .
Closes gh-28754
2 years ago
Sam Brannen
255a52bc7a
Fix attribute aliasing in @Reflective
...
See gh-28469
2 years ago
Sam Brannen
65f9106d49
Polishing
2 years ago