UPGRADE TO MICRONAUT 3
Are you curious what new features Micronaut version 3 brings and do you want to know how to upgrade your applications? In this post we will do the upgrade to Micronaut 3 for an existing application and show you how. For a complete overview of…
REFLECTION IN NATIVE IMAGES
Are you struggling getting the configuration right for reflection in native images? Here are some tips and tricks to get you up and running! Building native images can take a lot of time so trial and error is not the optimal way to get the…
ZALANDO LOGBOOK
Do you need http request and response logging without it polluting your business code? Use Zalando Logbook and add this aspect to your stack! In this post we will add logging for all http requests and play around with the configurations. For more in depth…
NATIVE IMAGE
Are you looking for a way to build super fast starting images with a low memory footprint? Use GraalVM’s native image and make the difference! To skip the details on when building a native image is possible we will use a framework that advertises with…
MICRONAUT TESTING
Having trouble testing your micronaut application? Or just interested on my take on micronaut testing? Just read along! In this post we will make some integration and unit tests for a micronaut gRPC API. For a wider view of the micronaut testing capabilities look at…
GRAPHQL WITH MICRONAUT
Are you working around the clock creating new REST endpoints for you clients? Are the requirements constantly changing? Use graphQL with micronaut and give more control to the client. The graphQL website is a great place to start reading. Also the tutorial by micronaut on…
GRPCURL
Are you looking for an easy way to test your gRPC endpoints? Use gRPCurl from the command line and see the result in Json. It’s basically curl for gRPC endpoints. In this post we will explore my method of exploratory testing a gRPC server. The…
GRPC WITH MICRONAUT
Are you sick of writing client libraries for all your clients? Do you have trouble sticking to a contract-first approache with REST? Use gRPC! Specifically gRPC with micronaut! To get familiar with micronaut check out this previous post on micronaut. The complete code for this…
TRAVIS CI
Looking for a free and easy way to build your open source projects? Travis CI enables you to build, test and deploy your code in minutes! In this post we will setup a Travis CI build to get you going quickly. For a complete overview…
HEROKU PLAYGROUND
Do you want to deploy your applications instantly to a cloud environment? Heroku offers a free account to get you started right away! In this post we set up our Heroku playground and deploy an app. You can read more on all other possibilities of…
MICRONAUT FRAMEWORK
Do you like Spring Boot? It can be better, faster and with a smaller memory footprint! Take a look at the modern, JVM based Micronaut framework. In this post we will get started and create an API in Kotlin. For more reading on Micronaut go…