Meetup: Workshop Reactive Programming @ NS
Workshop Reactive Programming (NS & Craftsmen) Location: NS Headquarters Address: Laan van Puntenburg 100, Utrecht Date: 16 December 2016 Time: 14.00h – 18.00h Signup: via Meetup or if you don’t have a Meetup account directly via this form. Important: Please note there is maximum availability for…
Application monitoring with Graphite: an example how to integrate Dropwizard Metrics in a Spring Boot application
Introduction For a Java Spring Boot project I was working on a while ago I had to build in some application monitoring for measuring the number of requests on REST endpoints and also for monitoring JVM and OS metrics. These metrics needed to be…
Patching JAX-RS
For those who are not familiar with the term JAX-RS; it an API for building RESTful web services. The most recent release is JAX-RS 2.0 and is covered in JSR 339. Some of the most popular implementations of the API include: Apache CXF Jersey RESTeasy…
Spock als Test Framework
Spock is een Open Source framework om tests en ‘specifications’ in Groovy te schrijven. Hierdoor is het ook geschikt om (o.a.) voor Java applicatiesgebruikt te worden. Spock is opgezet met al bewezen frameworks en technologieën in het achterhoofd; JUnit, jMock, Mockito, RSpec, Groovy en Scala bijvoo…
Angular 2.0 – The new big framework?
AngularJS 2.0 AngularJS is op dit moment één van de meest populaire open Source javascript frameworks voor het bouwen van ‘single-page’ web applicaties. Enkele voordelen van Angular ten opzichte van andere MVC-frameworks zijn o.a. de declaratieve user interface, standaard componenten door ‘directives’, meer functionaliteit met…
Circuit Breaker Implementation in Java EE
Introduction One of the common patterns used when calling remote functions is the circuit breaker pattern. It is described by Martin Fowler and also in the book ‘Release It’ of Michael Nygard. The cicruit breaker acts like a circuit breaker in real life. You wrap a remote function…