bit1.uk

Java and DevOps; using Kubernetes, Terraform, and Spring

Latest writing

Resilience4j Circuit Breaker in Spring Boot

This is another post in a series on Resilience4j with SpringBoot. Resilience4j provides common resilience patterns that can be used with SpringBoot. In this post I want to look at the Circuit Breaker pattern.

Read post

Resilience4j Bulkhead in Spring Boot

This is the first of a series of posts on Resilience4j with SpringBoot. Resilience4j provides some common resilience patterns that can be used with SpringBoot. In this post I want to look at the Bulkhead pattern.

Read post

Six Ways to Map One-to-One Relationships in Spring JPA

For a seemingly straightforward JPA annotation, @OneToOne relationships can be mapped in a surprising number of ways. The problem is not choosing a mapping — it’s understanding the trade-offs between them. I want to explore some[1] variants of these mappings using a...

Read post

Component directives in AngularJS 1.3 - Transclusion

Transclusion is the process of extracting a collection of DOM element from one part of the DOM and copying them to another part of the DOM, while maintaining their connection to the original AngularJS scope from where they were taken. ~ Angular...

Read post

Component Directives in AngularJS 1.3 - Fundamentals

With Angular directives we can build custom web components that ‘extend’ HTML to the needs of our application, or add completely new functionality using a familiar HTML-like syntax. These ‘component directives’ take the script and HTML that constitute the component, and isolate...

Read post