Skip to content

Instantly share code, notes, and snippets.

View daviddelamo's full-sized avatar

David del Amo Mateos daviddelamo

View GitHub Profile

Motivation

Integrate JMH (Java Microbenchmarking Harness) with Spring (Boot) and make developing and running benchmarks as easy and convinent as writing tests.

Idea

Wrap the necessary JMH boilerplate code within JUnit to benefit from all the existing test infrastructure Spring (Boot) provides. It should be as easy and convinent to write benchmarks as it is to write tests.

TL;DR;

@daviddelamo
daviddelamo / Dockerfile
Created March 19, 2019 11:18
Create docker image with fake certificate included
FROM fabric8/java-alpine-openjdk8-jdk
USER root
RUN mkdir /maven
RUN mkdir /maven/lib
# openssl is the only required thing to install
RUN yum -y install openssl