Browse Source

Polish

pull/3899/head
Phillip Webb 10 years ago
parent
commit
026c3019df
  1. 1
      spring-boot-docs/src/main/asciidoc/howto.adoc
  2. 2
      spring-boot-samples/spring-boot-sample-data-jpa/pom.xml
  3. 2
      spring-boot-samples/spring-boot-sample-data-jpa/src/main/resources/application.properties

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

@ -459,6 +459,7 @@ callbacks are processed early (i.e. before the value is actually available). @@ -459,6 +459,7 @@ callbacks are processed early (i.e. before the value is actually available).
====
[[howto-configure-ssl]]
=== Configure SSL
SSL can be configured declaratively by setting the various `+server.ssl.*+` properties,

2
spring-boot-samples/spring-boot-sample-data-jpa/pom.xml

@ -27,13 +27,11 @@ @@ -27,13 +27,11 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>

2
spring-boot-samples/spring-boot-sample-data-jpa/src/main/resources/application.properties

@ -1,3 +1,3 @@ @@ -1,3 +1,3 @@
spring.h2.console.enabled=true
logging.level.org.hibernate.SQL=debug
logging.level.org.hibernate.SQL=debug

Loading…
Cancel
Save