Skip to content

devopscloudsre/java-db-Login

 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors