From the course: Java Persistence API (JPA): 1 The Basics

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Review course project tools

Review course project tools - Java Tutorial

From the course: Java Persistence API (JPA): 1 The Basics

Start my 1-month free trial

Review course project tools

- [Instructor] Now let's see the Trackzilla application in action. Since the application exposes RESTful web services, Postman is the tool of choice when it comes to testing the services. There are also embedded unit tests if you prefer to exercise the code in that manner. So our unit test is called Trackzilla Controller Test. And you will see throughout the file, we have different test methods to test your application. Now let's review Trackzilla's H2N memory database. Now in memory means once the application stops running, the database is no longer present and accessible; and any data stored in it is gone. The console for the H2N memory database is accessible via local host colon 80 80 slash console. Once the console appears, make sure your database URL is set to J D B C H 2 mem bug tracker. Your username is S A and there is no password. When you click connect, you will see a SQL window on the right-hand side. You can use this window to run general purpose SQL statements. And notice…

Contents