Skip to content

Commit

Permalink
Polish
Browse files Browse the repository at this point in the history
Upgrade sample to use H2 and expose the web console by default.
  • Loading branch information
snicoll committed Sep 8, 2015
1 parent 15fd30e commit c85f4df
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions spring-boot-samples/spring-boot-sample-data-jpa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,13 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
debug=
spring.h2.console.enabled=true

logging.level.org.hibernate.SQL=debug

0 comments on commit c85f4df

Please sign in to comment.