spring-boot
spring-boot copied to clipboard
Spring Boot helps you to create Spring-powered, production-grade applications and services with absolute minimum fuss.
If the source file given to the layertools is not an archive file, the error message says that the file cannot be found. That might be confusing, if the file...
Currently `management.endpoint.health.show-components` and `management.endpoint.health.show-details` aren't applied to JMX endpoints. This is a little confusing and we think it would be better to create technology specific variants: For JMX we can...
We currently expose more endpoints by default over JMX than we do over the web. For consistency, we've decided to change the default exposure over JMX to align it with...
Directly seeing the path would make it easier for developers and administrators to find and fix a configuration issue.
Short version - running `bootBuildImage` on a freshly created Spring Initializr project fails with the following: ``` $ ./gradlew bootBuildImage > Task :bootBuildImage Building image 'docker.io/library/demo:0.0.1-SNAPSHOT' > Pulling builder image...
The [Flyway smoke tests](https://ci.spring.io/teams/spring-aot-smoke-tests/pipelines/spring-aot-smoke-tests-1.0.x/jobs/flyway/builds/1) currently fail with GraalVM complaining about proxy generation, which could be related to `@FlywayDataSource`: ``` org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'dataSource': Unsatisfied dependency expressed through...
With thanks to @rwinch, I've just learned that Boot doesn't work with Logback 1.3 (still in alpha). It fails on launch with the following exception: ``` java.lang.NoClassDefFoundError: org/slf4j/impl/StaticLoggerBinder at org.springframework.boot.logging.logback.LogbackLoggingSystem.getLoggerContext(LogbackLoggingSystem.java:273)...
Spring Boot could resolve JDBC driver class names for AWS variants of MySQL and PostgreSQL drivers: - https://github.com/awslabs/aws-mysql-jdbc (production ready) - for `jdbc:mysql:aws:` prefix - https://github.com/awslabs/aws-postgresql-jdbc (in developer preview) -...
During a penetration test one finding was the information disclosure of using a Tomcat webserver. If a request with an invalid URL (e.g. http://localhost:8080/[test ) is executed the configured custom...