Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 🔐
- Host: GitHub
- URL: https://github.com/alexsomai/encrypted-hazelcast-app
- Owner: alexsomai
- Created: 2018-02-23T11:44:25.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-26T14:19:58.000Z (over 6 years ago)
- Last Synced: 2024-11-09T11:12:16.507Z (2 months ago)
- Topics: encryption, gradle, hazelcast, java, spring, spring-boot
- Language: Java
- Homepage: https://medium.com/coders-do-read/how-to-implement-an-encrypted-distributed-cache-87be4e506f8e
- Size: 88.9 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 8Build 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
```