https://github.com/elon-fask/brief11
Employee Management System
https://github.com/elon-fask/brief11
hibernate html-css-javascript java jee jwt jwt-auth jwt-authentication jwt-token lambok orm spring spring-boot spring-security thymeleaf webapp
Last synced: 3 months ago
JSON representation
Employee Management System
- Host: GitHub
- URL: https://github.com/elon-fask/brief11
- Owner: elon-fask
- Created: 2022-08-02T10:42:57.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-09T10:33:46.000Z (almost 3 years ago)
- Last Synced: 2024-12-28T03:14:29.192Z (5 months ago)
- Topics: hibernate, html-css-javascript, java, jee, jwt, jwt-auth, jwt-authentication, jwt-token, lambok, orm, spring, spring-boot, spring-security, thymeleaf, webapp
- Language: Java
- Homepage: https://github.com/Elon-Fask/brief11
- Size: 137 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EMPLOYEE MANAGEMENT SYSTEM
# User Registration, User Login and Autorization process.
The diagram shows flow of how we implement User Registration, User Login and Autorization process.
# Refresh Token
# Configure Spring DataSource, JPA and Application.properties
Open ```/src/main/resources/application.properties```
> For PostgreSQL:
```
spring.datasource.url= jdbc:postgresql://localhost:5432/testdb
spring.datasource.username= postgres
spring.datasource.password= 1234spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation= true
spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.PostgreSQLDialect# Hibernate ddl auto (create, create-drop, validate, update)
spring.jpa.hibernate.ddl-auto= update# App Properties
elonfask.app.jwtSecret= bezKoderSecretKey
elonfask.app.jwtExpirationMs= 7200000
```