Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 640 Bytes

File metadata and controls

22 lines (13 loc) · 640 Bytes

LoginRegisterApp

install MySQL version 8.0.21 (ie. 8.0.x)

database username: root database password: admin

If you are using another user then needs to be changed in java file: DbUtil.java

mysql> create database tempdb;

mysql> use tempdb;

mysql> create table user(name varchar(100),password varchar(100), address varchar(1000), age int, profession varchar(100));

mysql> select * from User;

#Update files with the new database details

- /root/java-db-Login/src/main/webapp/WEB-INF/web.xml

- /root/java-db-Login/src/main/java/com/example/application.properties

- /root/java-db-Login/src/main/java/com/example/DbUtil.java