The following is forked from the original repository to add necessary changes according to our COMP 354 course project requirements. For original README, attributions and credit, please check out the original repository :)
- Clone the repository
- Open the project in your IDE: IntelliJ IDEA (recommended) or Eclipse
- If you are using IntelliJ IDEA, make sure the IDE recognizes the project as a Spring Boot project. Also, you must change the working directory of the project so that the views (the actual web pages to be shown) are found by Spring Boot (check out Web Directories IntelliJ IDEA.
- Make sure you are in the
JtProject
directory - Configure the database connection in
application.properties
file (check the Database section below for more info) - Run the project (by running the
main
method inJtSpringProjectApplication.java
) - Open http://localhost:8080/ in your browser!
- If you ran the
basedata.sql
script on the database, you can log in with the following credentials as admin; otherwise you'll have to manually create an admin user in the database:- Username:
admin
- Password:
123
- Username:
- Log in as a normal user:
- Username:
lisa
- Password:
765
- Username:
- If you ran the
MySQL or MariaDB can be used as the database for this project. The database connection can be configured in the application.properties
file, with the appropriate values for the following properties:
db.url=jdbc:mysql://[ip address of db]:[port of db]/ecommjava?createDatabaseIfNotExist=true
db.username=[username]
db.password=[password, if any]
Having done that, you must create some base data in the database. You can do that by running the basedata.sql
script on the database. Check out Google for how to do that, because it depends on what tool you are using to access said database.
The views are located in src/main/webapp/views
, but for some reason, Spring Boot doesn't recognize that directory. To remedy this, you must change the working directory of the project in your IDE. If you're using IntelliJ IDEA, follow these steps:
- Click on the "Edit Configurations..." button in the top right corner of the IDE
- Click on the
JtSpringProjectApplication
configuration - Change the "Working directory" option (if not present, click on "Modify Options" and select from the list) to the
$MODULE_WORKING_DIR$
macro - Click "Apply" and "OK"
When you run the project, the views should be found by Spring Boot and you should see a login page in http://localhost:8080/ (if not logged in previously)!
For any information about Spring Boot, here are some useful links!
For further reference, please consider the following sections: