This module add developers functionality.
It contains different functionalities:
- Inspect the Caches
Functionality of this package is contained in Java package com.github.damianwajser
, and can be used using following
Maven dependency:
...
<properties>
...
<!-- Use the latest version whenever possible. -->
<spring.commons>{lastversion}</spring.commons>
...
</properties>
<dependencies>
...
<dependency>
<groupId>com.github.damianwajser</groupId>
<artifactId>spring-commons-actuator</artifactId>
<version>${spring.commons}</version>
</dependency>
...
</dependencies>
compile 'com.github.damianwajser:spring-commons-cache:{lastVersion}'
Exopose endpoints:
- curl /actuator/caches/{cacheName}/detail
- curl /actuator/cache-keys
- curl /actuator/cache-keys/{key}
- curl -X DELETE /actuator/cache-keys/{key}
The Spring Framework is released under version 2.0 of the Apache License.