Skip to content

KondratovIvan/servlet-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

servlet-app

To run this application you must

  1. Make a Fork of this project (priority) or clone repository
git clone https://github.com/KondratovIvan/servlet-app
  1. Build this application using maven
mvn clean install -Dmaven.plugin.validation=VERBOSE
  1. 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
  1. Download and install the Postman request client

  2. 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)
);

About

Servlet CRUD app with auth and filters

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors