Taxi-service it's a web application.
Basic implementation of a taxi service.
Allows you to use basic CRUD operations,
as well as create, authenticate and authorize a new drivers,
add a cars and a manufacturers to the database.
Other than key CRUD operations there are other features like adding
driver to a car and showing a list of cars for currently logged in driver.
It is a training project that was created to show my skills in JavaCore, JDBC, and Web.
I don't use "Hibernate" and "Spring Framework" to better understand how a web application works in more depth.
To run this application please install:
Further
- Fork this project and clone it.
- Create schema in your "MySQL Workbench" using init_db.sql file. *Add your personal info to ConnectionUtil class to connect to your database.
- Add Tomcat 9.0.50 configuration.
If you wanna connect this project to your database, just add all the necessary information in the:
src/main/java/mate/util
public class ConnectionUtil {
private static final String URL = "YOUR CONNECTION URL";
private static final String USERNAME = "YOUR LOGIN";
private static final String PASSWORD = "YOUR PASSWORD";
private static final String JDBC_DRIVER = "JDBC DRIVER";
}