To run this application you must
- Make a Fork of this project (priority) or clone repository
git clone https://github.com/KondratovIvan/servlet-app- Build this application using maven
mvn clean install -Dmaven.plugin.validation=VERBOSE- Download and install WildFly https://www.wildfly.org/. Запустить WildFly. Go to the /bin directory and call standalone.bat then deploy the application using the command
mvn org.wildfly.plugins:wildfly-maven-plugin:2.0.2.Final:deploy-
Download and install the Postman request client
-
Download and install DBMS PostgreSQL, create DB - Employee
DROP DATABASE Employee;
CREATE DATABASE Employee;
USE Employee;
CREATE TABLE if not exists public.users
(
id serial
primary key,
name varchar(255),
email varchar(255),
country varchar(255)
);