Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stacenko-developer/notification-service
Сервис уведомлений
https://github.com/stacenko-developer/notification-service
java java-spring lombok mapper maven modelmapper postgresql rest-api spring spring-boot spring-framework spring-mvc swagger
Last synced: 27 days ago
JSON representation
Сервис уведомлений
- Host: GitHub
- URL: https://github.com/stacenko-developer/notification-service
- Owner: stacenko-developer
- License: mit
- Created: 2024-07-21T12:19:48.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-21T13:03:44.000Z (4 months ago)
- Last Synced: 2024-09-29T00:03:59.654Z (about 1 month ago)
- Topics: java, java-spring, lombok, mapper, maven, modelmapper, postgresql, rest-api, spring, spring-boot, spring-framework, spring-mvc, swagger
- Language: Java
- Homepage:
- Size: 49.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Notification service
### Сервис уведомлений## Настройка БД
1. **Создать БД**
```
create database notification;
```2. **Создать схемы в БД notification**
```
create schema notification;
```
3. **Запустить сервис**Версия java
```
% java -version
openjdk version "20.0.1" 2023-04-18
OpenJDK Runtime Environment (build 20.0.1+10)
OpenJDK 64-Bit Server VM (build 20.0.1+10, mixed mode, sharing)
```При запуске нужно указать расположение **application.yml**.
Пример запуска:
```
java -jar notification-service.jar --spring.config.location=/directory/application.yml
```4. **Swagger**
```
http://localhost:8079/notification-service/swagger-ui/index.html#
```