Spring Add native image support for WebSocket STOMP messaging

The native sample websocket-stomp works with AOT mode, but not in native image.I identified at least two problems:The re...

Spring Simplify hint registration for Spring AOP proxies

For JDK dynamic proxies created by Spring's AOP support, SpringProxy, Advised, and DecoratingProxy will often be include...

Spring Replace java.util.Date and TimeUnit usage in scheduling with appropiate java.time classes

Given that a lot of times we get the values for Triggers and such from configs or other places that use java.time types,...

Spring Add support for @Transactional in native images

When running the jdbc-tx sample in sb-3.0.x branch from spring-native, it fails with:java.lang.IllegalStateException: Fa...

Spring WebFlux multipart temporary file not deleted when the client disconnects early

We have a Spring WebFlux 5.3.21 application doing multipart file upload. We noticed that sometimes the Part temporary fi...

Spring @AliasFor may have a bug when dealing with repeated annotations

@Aliasfor 在处理Array类型属性覆盖时,可能导致 AnnotationTypeMapping#validateAllAliasesClaimed() 不通过Comment From: pivotal-cla@w547963 Pl...

Spring Move ApplicationContextAotInitializer to Spring Boot

AFAICT currently the only user of ApplicationContextAotInitializer is SpringApplication in Spring Boot. If we move the c...

Spring Documentation mentions password but should be personal access token

The documentation for spring-cloud-config authentication section specifies a password field, but makes no mention that t...

Spring Introduce abstraction for unified handling of bound request payload and validation errors

A typical controller method to process a request body currently looks something like this:class MyController { @PostMap...

Spring Support for javax.validation annotations on @PathVariable, @RequestHeader, @RequestParam [SPR-6380]

Gerrit Brehmer opened SPR-6380 and commentedI thought this was already done, because support for controller method-param...

Spring Fix GenericApplicationContextTests on Microsoft Windows

origin unit test will cause bug when get a resource with unknown protocol Related to:28703commit 9868c28c737cfadc50f0298...

Spring Hamcrest-free version of MockMvcResultMatchers

As documented in the wiki, JUnit5 and AssertJ are required to be used, but MockMvcResultMatchers drags in Hamcrest, whic...

Spring Fix WebClientAdapter.createHttpServiceProxyFactory() example in ref docs

Following the changes applied to HttpServiceProxyFactory and WebClientAdapter in 48c1746 and b72ee5f, this PR applies fi...

Spring Introduce StringUtils.trimAllWhitespace(CharSequence)

For use cases where we have a CharSequence instead of a String, we should introduce StringUtils.trimAllWhitespace(CharSe...

Spring Introduce lenient parsing in DataSize regarding whitespace

I've just helped a user correct a configuration mistake where they'd tried to configure a DataSize with a string of 2KB....

Spring Ensure channelExecutors and taskScheduler in STOMP WebSocket config are qualified

There are several beans require TaskExecutor or TaskScheduler without @Qualifier, which means inject wrong executors if ...

Spring TestExecutionListener does not get applied for a new context for @Nested test class

When setting up @SpringBootTest as follows:@SpringBootTest(classes = [MyTestComponent::class])@TestExecutionListeners(va...

Spring native-image: Problem with Scheduled annotation

When running the native-image from the spring-native sample scheduling-tasks on the sb-3.0.x branch, i get the following...

Spring @Import and component scan of the same class results in duplicate bean registration with different names

Talk is cheap,show you the code below Add @Import(EnglishCat.class) on the @SpringBootApplication main class,but the pac...

Spring Webclient seems to miss response on high spikes

Using Webclient we are doing the followingwhere timeout is set to 1 second.Usually this code is doing great, handling ou...
上一页 下一页
.