Blog Page 17/44
Make TomEE Embedded microprofile ready in 1s! 1/2 by Romain Manni-Bucau, 2019-03-15
Apache TomEE 8 introduced a new Microprofile distribution that is great if you are still deploying in a server. But if you moved Docker or an equivalent technology, then it is not the best you can do. Let see how to also make TomEE Embedded Microprofle!
Use JSON-P with google-httpclient and drop jackson! by Romain Manni-Bucau, 2019-03-13
Google HTTP Client, a.k.a. com.google.http-client:google-http-client, uses jackson by default. If your stack already provide a JSON-P implementation which is not jackson or not the right version you can desire to align both. Here is how to do it.
Junit5, @CsvSource and escaping by Romain Manni-Bucau, 2019-03-06
JUnit 5 new parameterized test feature is very powerful but before paying the cost to write the dataset as a dedicated method you can wonder if you can’t inject any data using @CsvSource. In general it is possible, let see how to handle corner cases.