spring-boot
spring-boot copied to clipboard
Spring Boot helps you to create Spring-powered, production-grade applications and services with absolute minimum fuss.
The `rest-template` smoke tests currently fails with: ``` Caused by: java.net.MalformedURLException: Accessing an URL protocol that was not enabled. The URL protocol http is supported but not enabled by default....
Running the `quartz` sample from `spring-native`, the native image fails with: ``` org.springframework.beans.factory.BeanCreationException: Unable to instantiate bean using public org.springframework.boot.autoconfigure.quartz.QuartzDataSourceScriptDatabaseInitializer org.springframework.boot.autoconfigure.quartz.QuartzAutoConfiguration$JdbcStoreTypeConfiguration.quartzDataSourceScriptDatabaseInitializer(javax.sql.DataSource,org.springframework.beans.factory.ObjectProvider,org.springframework.boot.autoconfigure.quartz.QuartzProperties) at org.springframework.beans.factory.aot.AutowiredInstantiationArgumentsResolver.instantiate(AutowiredInstantiationArgumentsResolver.java:336) ~[na:na] at org.springframework.beans.factory.aot.AutowiredInstantiationArgumentsResolver.resolveAndInstantiate(AutowiredInstantiationArgumentsResolver.java:195) ~[na:na] at org.springframework.beans.factory.aot.AutowiredInstantiationArgumentsResolver.resolveAndInstantiate(AutowiredInstantiationArgumentsResolver.java:177) ~[na:na]...
We have two `@ConfigurationProperties` annotated classes: ```java package com.example; import org.springframework.boot.context.properties.ConfigurationProperties; @ConfigurationProperties(prefix = "more") public class MoreProperties { /** * Another example property. */ private String someProperty; public void setSomeProperty(String...
## Problem Spring Boot has fantastic support for Jackson. When using Jackson for JSON serialization/deserialization--especially with spring-mvc--it's easy to configure Jackson through the `spring.jackson.*` properties (thanks autoconfigure!). Where this solution...
### Motivation URLClassLoader shows awful performance when loading Classes/Resources which doesn't exist . `URLClassPath` takes linear time to find a resource and it will traverse all over the classpath even...
The maven plugin is currently named `spring-boot:aot-generate` and The Gradle task is `generateAotSources`. While brainstorming on the names to use for the related test support, we thought renaming those was...
## Overview A very simple Spring Boot based application locks up on the very first HTTP request with `java.lang.NoClassDefFoundError` present in the logs. Killing the application also causes `java.lang.NoClassDefFoundError` in...
We should add a section that's similar to [Customizing Embedded Servlet Containers](https://docs.spring.io/spring-boot/docs/2.6.9/reference/html/web.html#web.servlet.embedded-container.customizing) for embedded reactive servers.
Reviewing #31903, the [documentation](https://docs.spring.io/spring-boot/docs/current/reference/html/actuator.html#actuator.endpoints.info.git-commit-information) states that three properties are exposed by default but the actuator doc [mentions a 4th one](https://docs.spring.io/spring-boot/docs/current/actuator-api/htmlsingle/#info.retrieving.response-structure.git). Aligning would be good. Mentioning that the output structure is...