Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kondratovivan/servlet-app
Servlet CRUD app with auth and filters
https://github.com/kondratovivan/servlet-app
authentication java logging servlets wildfly
Last synced: about 1 month ago
JSON representation
Servlet CRUD app with auth and filters
- Host: GitHub
- URL: https://github.com/kondratovivan/servlet-app
- Owner: KondratovIvan
- Created: 2023-12-27T11:57:02.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2024-01-18T12:34:39.000Z (11 months ago)
- Last Synced: 2024-01-18T15:47:54.040Z (11 months ago)
- Topics: authentication, java, logging, servlets, wildfly
- Language: Java
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# servlet-app
To run this application you must
1. Make a Fork of this project (priority) or clone repository
```bash
git clone https://github.com/KondratovIvan/servlet-app
```2. Build this application using maven
```bash
mvn clean install -Dmaven.plugin.validation=VERBOSE
```
3. 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```bash
mvn org.wildfly.plugins:wildfly-maven-plugin:2.0.2.Final:deploy
```
4. Download and install the Postman request client
5. Download and install DBMS PostgreSQL, create DB - Employee
```bashDROP 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)
);
```