Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/main/docs/guide/databaseConsole.adoc
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
If you run the app again, you should see the same page as before. However, you can login to the DB Console and view your new database table.

Browse to `http://localhost:8080/dbconsole` and login. The default username is `sa`, without a password. The default JDBC URL is: `jdbc:h2:mem:devDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE`
Browse to `http://localhost:8080/dbconsole` and login. If that throws 404 error, browse to `http://localhost:8080/h2-console`and login. The default username is `sa`, without a password. The default JDBC URL is: `jdbc:h2:mem:devDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE`
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Screenshot from 2020-10-03 13-59-55
Screenshot from 2020-10-03 14-01-11




image::dbconsole.png[DB Console]

NOTE: You can view the JDBC url in `application.yml`, under `environments` `development` `dataSource` `url`

Once you've logged in to the DB Console, you should see your new `VEHICLES` table in the left-hand sidebar. Click the `+` icon to expand the table - you should see a list of columns, including the three `String` fields we just defined, `name`, `make,` and `model`.

image::dbconsole-2.png[DB Console]
image::dbconsole-2.png[DB Console]