Skip to content

Latest commit

 

History

History
83 lines (52 loc) · 3.93 KB

File metadata and controls

83 lines (52 loc) · 3.93 KB

This blog post is the example application of the following blog posts:

You might also want to read the other parts of my Spring Data JPA Tutorial:

Note: This application is still work in progress.

Prerequisites

You need to install the following tools if you want to run this application:

Backend

  • JDK 8
  • Maven (the application is tested with Maven 3.2.1)

Frontend

You can install these tools by following these steps:

  1. Install Node.js by using a downloaded binary or a package manager. You can also read this blog post: How to install Node.js and NPM

  2. Install Bower by using the following command:

    npm install -g bower
    
  3. Install Gulp by using the following command:

     npm install -g gulp
    

Running the Tests

You can run the unit tests by using the following command:

mvn clean test -P dev

You can run the integration tests by using the following command:

mvn clean verify -P integration-test

Running the Application

You can run the application by using the following command:

mvn clean jetty:run -P dev

Credits

Known Issues

  • If you refresh the login page, you aren't redirected away from it after successful login.