diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/attributes.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/attributes.adoc index 9e60a72d9b..3c56f98cc7 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/attributes.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/attributes.adoc @@ -94,7 +94,6 @@ :spring-security: https://spring.io/projects/spring-security :spring-security-docs: https://docs.spring.io/spring-security/reference/{spring-security-version} :spring-security-oauth2: https://spring.io/projects/spring-security-oauth -:spring-security-oauth2-docs: https://projects.spring.io/spring-security-oauth/docs/oauth2.html :spring-session: https://spring.io/projects/spring-session :spring-webservices-docs: https://docs.spring.io/spring-ws/docs/{spring-webservices-version}/reference/html/ :ant-docs: https://ant.apache.org/manual diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/data/sql.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/data/sql.adoc index 6e6dc96210..330c7c522a 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/data/sql.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/data/sql.adoc @@ -22,7 +22,7 @@ You need to populate your database when your application starts and be prepared TIP: The "`How-to`" section includes a <>. -Spring Boot can auto-configure embedded https://www.h2database.com[H2], http://hsqldb.org/[HSQL], and https://db.apache.org/derby/[Derby] databases. +Spring Boot can auto-configure embedded https://www.h2database.com[H2], https://hsqldb.org/[HSQL], and https://db.apache.org/derby/[Derby] databases. You need not provide any connection URLs. You need only include a build dependency to the embedded database that you want to use. If there are multiple embedded databases on the classpath, set the configprop:spring.datasource.embedded-database-connection[] configuration property to control which one is used. diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/external-config.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/external-config.adoc index 8738b9661d..d3e996c4b6 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/external-config.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/external-config.adoc @@ -565,7 +565,7 @@ If you need a secure way to store credentials and passwords, the https://cloud.s [[features.external-config.yaml]] === Working with YAML https://yaml.org[YAML] is a superset of JSON and, as such, is a convenient format for specifying hierarchical configuration data. -The `SpringApplication` class automatically supports YAML as an alternative to properties whenever you have the https://bitbucket.org/asomov/snakeyaml[SnakeYAML] library on your classpath. +The `SpringApplication` class automatically supports YAML as an alternative to properties whenever you have the https://github.com/snakeyaml/snakeyaml[SnakeYAML] library on your classpath. NOTE: If you use "`Starters`", SnakeYAML is automatically provided by `spring-boot-starter`. diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/logging.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/logging.adoc index 7f839553a5..b83de101f2 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/logging.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/logging.adoc @@ -266,7 +266,7 @@ In order to release logging resources when your application terminates, a shutdo This shutdown hook is registered automatically unless your application is deployed as a war file. If your application has complex context hierarchies the shutdown hook may not meet your needs. If it does not, disable the shutdown hook and investigate the options provided directly by the underlying logging system. -For example, Logback offers http://logback.qos.ch/manual/loggingSeparation.html[context selectors] which allow each Logger to be created in its own context. +For example, Logback offers https://logback.qos.ch/manual/loggingSeparation.html[context selectors] which allow each Logger to be created in its own context. You can use the configprop:logging.register-shutdown-hook[] property to disable the shutdown hook. Setting it to `false` will disable the registration. You can set the property in your `application.properties` or `application.yaml` file: diff --git a/spring-boot-project/spring-boot-starters/README.adoc b/spring-boot-project/spring-boot-starters/README.adoc index aff9058bd9..f0ae70f15d 100644 --- a/spring-boot-project/spring-boot-starters/README.adoc +++ b/spring-boot-project/spring-boot-starters/README.adoc @@ -34,9 +34,6 @@ do as they were designed before this was clarified. | https://qpid.apache.org/components/jms/[Apache Qpid] | https://github.com/amqphub/amqp-10-jms-spring-boot -| https://rocketmq.apache.org/[Apache RocketMQ] -| https://github.com/ThierrySquirrel/rocketmq-spring-boot-starter - | https://wicket.apache.org/[Apache Wicket] | https://github.com/MarcGiffing/wicket-spring-boot @@ -158,7 +155,7 @@ do as they were designed before this was clarified. | https://github.com/liquigraph/liquigraph | https://logback.qos.ch/access.html[Logback-access] -| https://github.com/akihyro/logback-access-spring-boot-starter +| https://github.com/akkinoc/logback-access-spring-boot-starter | https://github.com/mulesoft/mule[Mule 4] | https://github.com/hawkore/mule4-spring-boot-starter @@ -224,7 +221,7 @@ do as they were designed before this was clarified. | https://github.com/fonimus/ssh-shell-spring-boot | https://github.com/savantly-net/sprout-platform[Sprout Platform] -| https://github.com/savantly-net/sprout-platform/tree/master/spring/sprout-spring-boot-starter +| https://github.com/savantly-net/sprout-platform/tree/master/backend/starters/sprout-spring-boot-starter | SSH Daemon | https://github.com/anand1st/sshd-shell-spring-boot diff --git a/spring-boot-project/spring-boot/src/test/resources/org/springframework/boot/env/test-yaml.yml b/spring-boot-project/spring-boot/src/test/resources/org/springframework/boot/env/test-yaml.yml index 044c8aef44..61c902e2be 100644 --- a/spring-boot-project/spring-boot/src/test/resources/org/springframework/boot/env/test-yaml.yml +++ b/spring-boot-project/spring-boot/src/test/resources/org/springframework/boot/env/test-yaml.yml @@ -1,4 +1,4 @@ -# https://docs.ansible.com/ansible/YAMLSyntax.html +# https://docs.ansible.com/ansible/latest/reference_appendices/YAMLSyntax.html name: Martin D'vloper job: Developer diff --git a/src/nohttp/allowlist.lines b/src/nohttp/allowlist.lines index 69d702f86e..351e601bb7 100644 --- a/src/nohttp/allowlist.lines +++ b/src/nohttp/allowlist.lines @@ -1,9 +1,6 @@ -^http://exslt.org/common.* ^http://ganglia.sourceforge.net.* -^http://hsqldb.org.* ^http://livereload.com/.* -^http://logback.qos.ch/manual/loggingSeparation.html ^http://schemas.xmlsoap.org/.* ^http://www.jdotsoft.com.* ^http://www.liquibase.org/xml/ns/dbchangelog/.* -^http://www.w3.org/2000/09/xmldsig.* \ No newline at end of file +^http://www.w3.org/2000/09/xmldsig.*