Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alexsomai/encrypted-hazelcast-app

Spring Boot app with custom implementation of Encrypted Hazelcast Cache Manager 🔐
https://github.com/alexsomai/encrypted-hazelcast-app

encryption gradle hazelcast java spring spring-boot

Last synced: 4 days ago
JSON representation

Spring Boot app with custom implementation of Encrypted Hazelcast Cache Manager 🔐

Awesome Lists containing this project

README

        

# Encrypted Hazelcast Cache

Spring Boot application example that contains a custom implementation of the Hazelcast Cache Manager.
It encrypts the in-memory data stored by Hazelcast.

Step-by-step guide: https://medium.com/coders-do-read/how-to-implement-an-encrypted-distributed-cache-87be4e506f8e

### Run locally

Prerequisites:
- Gradle
- JDK 8

Build project:
```
./gradlew build
```

Start the application:
```
java -jar build/libs/encrypted-hazelcast-app.jar
```

Start the application on specific port:
```
java -jar build/libs/encrypted-hazelcast-app.jar --server.port=8090
```