SpringBoot JwtDecoderConfiguration support for non-web environment

Please support auto-configuring the JwtDecoderConfiguration for non-web environment.Currently the config is import...

SpringBoot Embedded web servers behave inconsistently when server.port is set to -1

The behaviour is as follows when starting with server.port=-1:Jetty: app starts and stays running, but is not listening ...

SpringBoot Update Java conventions so that projects creating jars from jars don't have to exclude duplicate LICENSE and NOTICE files

The build creates a handful of jars from other jars. This results in duplicate LICENSE.txt and NOTICE.txt files as they ...

SpringBoot Do not auto-configure a ReactiveUserDetailsService when an AuthenticationManagerResolver bean is present

As pointed out in https://github.com/spring-projects/spring-boot/issues/26766#issuecomment-1149546094 we should look at ...

SpringBoot Spring autoconfigure JDBC pool with Hikari in tests that refreshes context

Affects: Spring boot (with dependencies) 2.7.0Hello there,I have found quite a strange behaviour in tests (and possibly...

SpringBoot Add WebClient based sender for Zipkin

PR DescriptionIntroduce abstract HttpSender classIntroduce ZipkinWebClientSenderAdd ZipkinWebClientSender bean to config...

SpringBoot Unexpected Memory usage with spring boot 2.7.0

After upgrading from spring boot 2.6.7 to 2.7.0 we experience an unexpected increase in memory usage. The average memory...

SpringBoot Metadata generated by the configuration properties annotation processor can miss inherited properties from nested classes

Some properties of 3rd party provided class with inheritance relationship cannot be render to configuration metadata.Ver...

SpringBoot Provide a more memory-efficient NIO-based file system watcher in DevTools

File Watcher thread takes about of 98% of entire application memory.Memory consumption is still growing after applicatio...

SpringBoot Provide convenience methods to disable actuator CSRF

See #24611 for background. It would be nice if there was a easier DSL to configure Spring Security.Comment From: DiegoPC...

SpringBoot Add log level guards in org.springframework.boot.autoconfigure.graphql

This PR adds log level guards in org.springframework.boot.autoconfigure.graphql package.Comment From: philwebbThanks for...

SpringBoot Use java.util.HexFormat where appropriate

Hi,this PR closes #28154 by using java.util.HexFormat where possible.Cheers,ChristophComment From: dreis2211Thanks @wilk...

SpringBoot Add property to allow configuring Spring MVC trailing slash match

See #31232.Comment From: vpavicI'd put this on hold until there are some conclusions around spring-projects/spring-frame...

SpringBoot Normalize DataSize inputs via removing all whitespaces

Trim all whitespaces before parsing a given DataSize string so that the parsing is more robustThis relates to the follow...

SpringBoot Consider removing support for Querydsl project

Querydsl project is not maintained anymore, issues are not solved and pull requests are not reviewed. As you can see fro...

SpringBoot Adopt java.util.HexFormat

There are a few places in Boot where we work with hex strings, for example:https://github.com/spring-projects/spring-boo...

SpringBoot @RequestParam string data type always null if parameter contains '%' character

@GetMapping("/path/to/url") public List<Entry> getEntries(@RequestParam Optional<String> condit...

SpringBoot Use pattern matching for instanceof where appropriate

Hi,this PR uses pattern matching for instanceof where appropriate and closes #28181.I explicitly didn't make use of it w...

SpringBoot Use pattern matching for instanceof where appropriate

if (obj instanceof String) { String s = (String) obj; // use s}becomesif (obj instanceof String s) { // use s}C...

SpringBoot Springboot 2.7 inconsistent behaviour in health indicator registration

HiI am upgading a mono repo multi app project on springboot 2.7 / spring cloud 2021.0.3.In this repository I have multip...
上一页 下一页
.