Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bootique/bootique-jcache
JCache integration for Bootique
https://github.com/bootique/bootique-jcache
Last synced: about 2 months ago
JSON representation
JCache integration for Bootique
- Host: GitHub
- URL: https://github.com/bootique/bootique-jcache
- Owner: bootique
- License: apache-2.0
- Created: 2016-12-05T10:45:32.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-06-26T13:52:14.000Z (6 months ago)
- Last Synced: 2024-06-26T16:58:15.250Z (6 months ago)
- Language: Java
- Homepage: http://bootique.io
- Size: 122 KB
- Stars: 2
- Watchers: 8
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![build test deploy](https://github.com/bootique/bootique-jcache/actions/workflows/maven.yml/badge.svg)](https://github.com/bootique/bootique-jcache/actions/workflows/maven.yml)
[![Maven Central](https://img.shields.io/maven-central/v/io.bootique.jcache/bootique-jcache.svg?colorB=brightgreen)](https://search.maven.org/artifact/io.bootique.jcache/bootique-jcache/)# bootique-jcache
Integration of JCache caching API with Bootique. Provides injectable CacheManager.
*For additional help/questions about this example send a message to
[Bootique forum](https://groups.google.com/forum/#!forum/bootique-user).*
# Setup## Add bootique-jcache to your build tool
**Maven**
```xml
io.bootique.bom
bootique-bom
3.0-M4
pom
import
io.bootique.jcache
bootique-jcache```
## Example Project
`bootique-jcache` **does not** bundle a JCache provider. You will need to explicitly include a provider of your choice
on the classpath of your application, such as EhCache, Caffeine, Hazelcast, etc. You can find the details of different
provider integrations in the [examples](https://github.com/bootique-examples/bootique-jcache-examples).