Skip to content

Start work with project

Igor Bukur edited this page Dec 29, 2022 · 4 revisions
  1. Main setup
  2. Change application poperties

Main setup

  1. At start, you need to fork this repository.

  2. To run this project, you need to make sure you have the following components installed:

  3. Use MySql Workbench for create a new conntection.

  4. Create new Schema (database).

    • In Default Charset drop-down list use UTF-8.
    • In Default Collation drop-down list use utf8_general_ci.
  5. You need create tables used workbench.

    • You need find file src -> main -> resources -> init_db.sql*
    • In file yo can find SQL commands.
    • Copy SQL script from it. Move the copied script to editor panel, then execute it.

Change application poperties

You nedd to find ConnectionUtil.class

private static final String URL = "YOURE URL"
private static final String USERNAME = "YOURE USERNAME";
private static final String PASSWORD = "YOURE PASSWORD";
private static final String JDBC_DRIVER = "YOURE DRIVER";
Clone this wiki locally