π Deploying a Quarkus or any Java based microservice behind an Nginx reverse proxy with SSL using docker
//www.javacodegeeks.com/2020/11/deploying-a-quarkus-or-any-java-based-microservice-behind-an-nginx-reverse-proxy-with-ssl-using-docker.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/11/deploying-a-quarkus-or-any-java-based-microservice-behind-an-nginx-reverse-proxy-with-ssl-using-docker.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Deploying a Quarkus or any Java based microservice behind an Nginx reverse proxy with SSL using docker - Java Code Geeks
It has been a while but as per a friend requested I am going to show you how to deploy a Quarkus microservice behind an Nginx reverse proxy using docker.
π Kafka & Zookeeper for Development: Zookeeper Ensemble
//www.javacodegeeks.com/2020/11/kafka-zookeeper-for-development-zookeeper-ensemble.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/11/kafka-zookeeper-for-development-zookeeper-ensemble.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Kafka & Zookeeper for Development: Zookeeper Ensemble | Java Code Geeks - 2021
Previously we spun up Zookeeper and Kafka locally but also through Docker. What comes next is spinning up more than just one Kafka and Zookeeper node and
π Code Generation in CUBA: What makes the magic
//www.javacodegeeks.com/2020/11/code-generation-in-cuba-what-makes-the-magic.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/11/code-generation-in-cuba-what-makes-the-magic.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Code Generation in CUBA: What makes the magic | Java Code Geeks - 2020
Introduction Code generation is a common thing in modern frameworks. There may be different reasons behind introducing code generation - from getting rid
π REST: Sorting collections
//www.javacodegeeks.com/2020/11/rest-sorting-collections.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/11/rest-sorting-collections.html
β‘οΈ @JavaLearnZone
Java Code Geeks
REST: Sorting collections
When building a RESTful API we often want to give consumers the option to order collections in a specific way (e.g. ordering users by last name). If our
π Saving JetBrains MPS models in a database using Modelix
//www.javacodegeeks.com/2020/11/saving-jetbrains-mps-models-in-a-database-using-modelix.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/11/saving-jetbrains-mps-models-in-a-database-using-modelix.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Saving JetBrains MPS models in a database using Modelix | Java Code Geeks - 2020
JetBrains MPS is our tool of choice to build Domain Specific Languages targeting professionals who are not developers. MPS is a great choice but over
π Permutation β Heapβs Algorithm
//www.javacodegeeks.com/2020/11/permutation-heaps-algorithm.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/11/permutation-heaps-algorithm.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Permutation - Heap's Algorithm | Java Code Geeks - 2021
This is a little bit of experimentation that I did recently to figure out a reasonable code to get all possible permutations of a set of
π Delete the Contents of a File in Java
https://www.baeldung.com/java-delete-file-contents
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-delete-file-contents
β‘οΈ @JavaLearnZone
Baeldung
Delete the Contents of a File in Java | Baeldung
Learn various ways to remove the contents of a file without deleting the file.
π Finding the Least Common Multiple in Java
https://www.baeldung.com/java-least-common-multiple
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-least-common-multiple
β‘οΈ @JavaLearnZone
Baeldung
Finding the Least Common Multiple in Java | Baeldung
Learn various methods to find the least common multiple of two numbers in Java
π Different Ways to Capture Java Heap Dumps
https://www.baeldung.com/java-heap-dump-capture
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-heap-dump-capture
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
Different Ways to Capture Java Heap Dumps | Baeldung
Learn multiple ways to capture a heap dump in Java
π Bitwise & vs Logical && Operators
https://www.baeldung.com/java-bitwise-vs-logical-and
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-bitwise-vs-logical-and
β‘οΈ @JavaLearnZone
Baeldung
Bitwise & vs Logical && Operators | Baeldung
Learn the difference between & and && in Java
π Checking If an Array Is Sorted in Java
https://www.baeldung.com/java-check-sorted-array
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-check-sorted-array
β‘οΈ @JavaLearnZone
Baeldung
Checking If an Array Is Sorted in Java | Baeldung
Learn how to check if an array is sorted in Java.
π Java InputStream to Byte Array and ByteBuffer
https://www.baeldung.com/convert-input-stream-to-array-of-bytes
β‘οΈ @JavaLearnZone
https://www.baeldung.com/convert-input-stream-to-array-of-bytes
β‘οΈ @JavaLearnZone
Baeldung
Java InputStream to Byte Array and ByteBuffer | Baeldung
How to convert an InputStream to a byte[] using plain Java, Guava or Commons IO.