Skip to content

Commit 18c3d42

Browse files
committed
Merge branch '1.4.x' into 1.5.x
2 parents 0c9015f + b1d2552 commit 18c3d42

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -439,11 +439,11 @@ content into your application; rather pick only the properties that you need.
439439
security.user.password= # Password for the default user name. A random password is logged on startup by default.
440440
security.user.role=USER # Granted roles for the default user name.
441441
442-
# SECURITY OAUTH2 CLIENT ({sc-spring-boot-autoconfigure}/security/oauth2/OAuth2ClientProperties.{sc-ext}[OAuth2ClientProperties]
442+
# SECURITY OAUTH2 CLIENT ({sc-spring-boot-autoconfigure}/security/oauth2/OAuth2ClientProperties.{sc-ext}[OAuth2ClientProperties])
443443
security.oauth2.client.client-id= # OAuth2 client id.
444444
security.oauth2.client.client-secret= # OAuth2 client secret. A random secret is generated by default
445445
446-
# SECURITY OAUTH2 RESOURCES ({sc-spring-boot-autoconfigure}/security/oauth2/resource/ResourceServerProperties.{sc-ext}[ResourceServerProperties]
446+
# SECURITY OAUTH2 RESOURCES ({sc-spring-boot-autoconfigure}/security/oauth2/resource/ResourceServerProperties.{sc-ext}[ResourceServerProperties])
447447
security.oauth2.resource.id= # Identifier of the resource.
448448
security.oauth2.resource.jwt.key-uri= # The URI of the JWT token. Can be set if the value is not available and the key is public.
449449
security.oauth2.resource.jwt.key-value= # The verification key of the JWT token. Can either be a symmetric secret or PEM-encoded RSA public key.
@@ -453,7 +453,7 @@ content into your application; rather pick only the properties that you need.
453453
security.oauth2.resource.token-type= # The token type to send when using the userInfoUri.
454454
security.oauth2.resource.user-info-uri= # URI of the user endpoint.
455455
456-
# SECURITY OAUTH2 SSO ({sc-spring-boot-autoconfigure}/security/oauth2/client/OAuth2SsoProperties.{sc-ext}[OAuth2SsoProperties]
456+
# SECURITY OAUTH2 SSO ({sc-spring-boot-autoconfigure}/security/oauth2/client/OAuth2SsoProperties.{sc-ext}[OAuth2SsoProperties])
457457
security.oauth2.sso.filter-order= # Filter order to apply if not providing an explicit WebSecurityConfigurerAdapter
458458
security.oauth2.sso.login-path=/login # Path to the login page, i.e. the one that triggers the redirect to the OAuth2 Authorization Server
459459

spring-boot-docs/src/main/asciidoc/howto.adoc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2004,9 +2004,10 @@ NOTE: You can output the schema creation by enabling the `org.hibernate.SQL` log
20042004
is done for you automatically if you enable the <<boot-features-logging-console-output,debug mode>>.
20052005

20062006
In addition, a file named `import.sql` in the root of the classpath will be executed on
2007-
startup. This can be useful for demos and for testing if you are careful, but probably
2008-
not something you want to be on the classpath in production. It is a Hibernate feature
2009-
(nothing to do with Spring).
2007+
startup if Hibernate creates the schema from scratch (that is if the `ddl-auto` property
2008+
is set to `create` or `create-drop`). This can be useful for demos and for testing if you
2009+
are careful, but probably not something you want to be on the classpath in production. It
2010+
is a Hibernate feature (nothing to do with Spring).
20102011

20112012

20122013
[[howto-initialize-a-database-using-spring-jdbc]]

0 commit comments

Comments
 (0)