Skip to content

Commit

Permalink
Merge pull request #31887 from marcwrobel
Browse files Browse the repository at this point in the history
* gh-31887:
  Fix links in documentations

Closes gh-31887
  • Loading branch information
wilkinsona committed Aug 1, 2022
2 parents c0daede + 3e0665e commit d69fcf8
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ You need to populate your database when your application starts and be prepared

TIP: The "`How-to`" section includes a <<howto#howto.data-initialization, section on how to initialize a database>>.

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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,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`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
7 changes: 2 additions & 5 deletions spring-boot-project/spring-boot-starters/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -152,7 +149,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
Expand Down Expand Up @@ -218,7 +215,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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 1 addition & 4 deletions src/nohttp/allowlist.lines
Original file line number Diff line number Diff line change
@@ -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.*
^http://www.w3.org/2000/09/xmldsig.*

0 comments on commit d69fcf8

Please sign in to comment.