Skip to content

Latest commit

 

History

History
45 lines (39 loc) · 1.02 KB

README.md

File metadata and controls

45 lines (39 loc) · 1.02 KB

Demo

Sign in

Home

User List

Update User

Personal Information

Tech Stack


Get Start

  • Restore database.
  • Change MySQL connection in Databases.ConnectionPoolImpl:
public ConnectionPoolImpl() {
		this.driver = "com.mysql.jdbc.Driver";
		this.url = "jdbc:mysql://localhost:3306/<your database's name>?allowMultiQueries=true";
		this.username = "your username";
		this.userpass = "your password";
		this.loadDriver();
		this.pool = new Stack<>();
}
  • Run in Views.MainView .