π Reading an HTTP Response Body as a String in Java
https://www.baeldung.com/java-http-response-body-as-string
https://www.baeldung.com/java-http-response-body-as-string
Baeldung
Reading an HTTP Response Body as a String in Java | Baeldung
Explore several options for reading an HTTP response body as a string in Java
π ElasticSearch Multitenancy With Routing
//www.javacodegeeks.com/2020/09/elasticsearch-multitenancy-with-routing.html
//www.javacodegeeks.com/2020/09/elasticsearch-multitenancy-with-routing.html
Java Code Geeks
ElasticSearch Multitenancy With Routing | Java Code Geeks - 2021
Elasticsearch is great, but optimizing it for high load is always tricky. This wonβt be yet another βTips and tricks for optimizing Elasticsearchβ article
π Command-line JSON processing with jq
//www.javacodegeeks.com/2020/09/command-line-json-processing-with-jq.html
//www.javacodegeeks.com/2020/09/command-line-json-processing-with-jq.html
Java Code Geeks
Command-line JSON processing with jq | Java Code Geeks - 2020
In this post we will learn how to parse, pretty-print and process JSON from the command-line with jq. At the end we will even use jq to do a simple JSON
π Inheritance and Composition (Is-a vs Has-a relationship) in Java
https://www.baeldung.com/java-inheritance-composition
https://www.baeldung.com/java-inheritance-composition
Baeldung
Inheritance and Composition (Is-a vs Has-a relationship) in Java | Baeldung
Learn the differences between inheritance and composition relationships in Java.
π Extend Hibernate to Handle Java Stream Queries
//www.javacodegeeks.com/2020/10/extend-hibernate-to-handle-java-stream-queries.html
//www.javacodegeeks.com/2020/10/extend-hibernate-to-handle-java-stream-queries.html
Java Code Geeks
Extend Hibernate to Handle Java Stream Queries | Java Code Geeks - 2020
The Java Stream API released in Java 8 has proven itself to be an efficient, terse yet intuitive way of expressing application logic. The newly launched
π Monitoring Java Applications with Flight Recorder
https://www.baeldung.com/java-flight-recorder-monitoring
https://www.baeldung.com/java-flight-recorder-monitoring
Baeldung on Kotlin
Monitoring Java Applications with Flight Recorder | Baeldung
Learn about the Java Flight Recorder which collects information about events in the JVM during the execution of a Java application
π Handling NoClassDefFoundError for JAXBException in Java 9
https://www.baeldung.com/java-9-jaxbexception
https://www.baeldung.com/java-9-jaxbexception
Baeldung
Handling NoClassDefFoundError for JAXBException in Java | Baeldung
Learn how to solve the JAXBException when migrating to Java 9.
π Introduction to Hypermedia REST APIs
//www.javacodegeeks.com/2020/08/introduction-to-hypermedia-rest-apis.html
//www.javacodegeeks.com/2020/08/introduction-to-hypermedia-rest-apis.html
Java Code Geeks
Introduction to Hypermedia REST APIs | Java Code Geeks - 2020
Interested to learn about Hypermedia REST APIs? Check our article explaining what Hypermedia APIs provide for services.
π Difference Between when() and doXxx() Methods in Mockito
https://www.baeldung.com/java-mockito-when-vs-do
https://www.baeldung.com/java-mockito-when-vs-do
Baeldung
Difference Between when() and doXxx() Methods in Mockito | Baeldung
Learn the advantages and disadvantages of the configuring a mock object the when().thenXxx() or the doXxx().when() way.