Annotation based security support for Micronaut enabled gRPC services
WARNING: This solution does not work with micronaut-grpc at the moment.
This project is inspired by Micronaut’s security capabilities.
Features
- Basic authentication
- JSON Web Token (JWT)
Usage
Dependencies
Artifacts are published to Maven Central.
Maven
...
<dependency>
<groupId>com.enegate</groupId>
<artifactId>micronaut-grpc-security</artifactId>
<version>0.0.2</version>
</dependency>
...
Gradle
dependencies {
...
compile 'com.enegate:micronaut-grpc-security:0.0.2'
compile "io.micronaut:micronaut-security-jwt"
...
}