spring-framework
spring-framework copied to clipboard
Spring Framework
The `` HTML tag was used in HTML 4 to define teletype text. It is not supported in HTML5 and its use is discouraged (https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tt).
At present, creating `LoggingCacheErrorHandler` with custom logger requires use of Commons Logging API, as the appropriate constructor expects `org.apache.commons.logging.Log` instance. As Commons Logging is rarely the logging framework of choice...
reduce unnecessary connect request when get database metadata.
Remove `clear()` call to release method of `WeakEntryReference` and `SoftEntryReference`. The code of the same behavior as the `clear` method is included inside the `enqueue` method. java.lang.ref.Reference ```java /** *...
## Bug report Bug report and reason is explained very well here #26266. In the cglib side, this issue [#80](https://github.com/cglib/cglib/issues/80#issue-160623315) is the consequence of trying to solve `CallbackFilter` leak. As...
Usage example: ```kotlin interface SuspendService { @GetExchange suspend fun execute() } ```
The `java.util.Base64` Encoder and Decoder classes have methods that accept strings as well as return strings. These can be used directly instead of converting between bytes and strings in the...
We are finding some needs to customize the ObjectReader and ObjectWriter for Jackson serialization and deserialization, while leveraging as much default behavior as possible for both our web services running...
It seems that there is a memory leak with Spring Boot 2.4.1 on my Debian 10.5 with Java 11.0.1 when using `@PreAuthorize("hasRole('ROLE')")` annotation on controller's endpoint. As you can see...
**Affects:** 2.7 --- spring-data-couchbase would like to support @Transactional support. Couchbase's transaction management aligns with the CallbackPreferringPlatformTransactionManager. There is currently support for CallbackPreferringPlatformManager in TransactionAspectSupport. invokeWithinTransaction() https://github.com/spring-projects/spring-framework/blob/5378572b00d5b9bc6978d117359b059412773288/spring-tx/src/main/java/org/springframework/transaction/interceptor/TransactionAspectSupport.java#L415 https://github.com/spring-projects/spring-framework/issues/13906 I understood...