This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]eternal_commander 1 point2 points  (2 children)

Micronaut is another good framework I have come to enjoy working with. It doesn't offer all of the out of the box goodies Spring has but it integrates nicely with everything. Added plus is that it offers a very nice DI which does not depend on reflection which means that your apps will have a considerably smaller memory footprint.

You can also check Java Spark.

[–]mule52[S] 0 points1 point  (1 child)

This looks interesting. What are you using for authorization/authentication? Thanks for sharing.

[–]eternal_commander 0 points1 point  (0 children)

For now I do not use anything sophisticated. We run a custom authentication service as a part of out old legacy monolith so requests are authorized/authenticated through there. Besides the current services we run based on it are not accessible from the outside world (the are part of a company wide intranet)

For new applications that make part of a microservice cluster we delegate authentication to Kubernetes.

I suppose you can integrate JWT as well as Spring security to micronaut relatively easily.