π Digital Signatures in Java
https://www.baeldung.com/java-digital-signature
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-digital-signature
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
Digital Signatures in Java | Baeldung
Java provides support for digital signature via the JCA APIs. See how to digitally sign and verify messages with public/private key cryptography.
π REST: Deleting resources
//www.javacodegeeks.com/2020/10/rest-deleting-resources.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/10/rest-deleting-resources.html
β‘οΈ @JavaLearnZone
Java Code Geeks
REST: Deleting resources | Java Code Geeks - 2020
In RESTful APIs resources are typically deleted using the HTTP DELETE method. The resource that should be deleted is identified by the request URI. DELETE
π JMetro Version 8.6.14 And 11.6.14 Released
//www.javacodegeeks.com/2020/10/jmetro-version-8-6-14-and-11-6-14-released.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/10/jmetro-version-8-6-14-and-11-6-14-released.html
β‘οΈ @JavaLearnZone
Java Code Geeks
JMetro Version 8.6.14 And 11.6.14 Released
Another release of JMetro has just came out. This time the focus has been on fixing bugs and tweaking existing styles. A bunch of these have been fixed in
π How to get Type-Safe and Intuitive Hibernate/JPA Queries by Leveraging Java Streams
//www.javacodegeeks.com/2020/10/how-to-get-type-safe-and-intuitive-hibernate-jpa-queries-by-leveraging-java-streams.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/10/how-to-get-type-safe-and-intuitive-hibernate-jpa-queries-by-leveraging-java-streams.html
β‘οΈ @JavaLearnZone
Java Code Geeks
How to get Type-Safe and Intuitive Hibernate/JPA Queries by Leveraging Java Streams | Java Code Geeks - 2021
A large proportion of Java database applications are using Hibernate/JPA to bridge the gap between Java and SQL. Until recently, we were forced to mix
π Bulk vs Individual Compression
//www.javacodegeeks.com/2020/09/bulk-vs-individual-compression.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/09/bulk-vs-individual-compression.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Bulk vs Individual Compression | Java Code Geeks - 2020
Interested to learn about Compression? Check our article explaining the differences between Bulk and Individual Compression
π Creational Design Patterns in Core Java
https://www.baeldung.com/java-creational-design-patterns
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-creational-design-patterns
β‘οΈ @JavaLearnZone
Baeldung
Creational Design Patterns in Core Java | Baeldung
Learn about creational design patterns along with examples of core Java classes that use them to create and obtain instances of objects.
π Throw Exception in Optional in Java 8
https://www.baeldung.com/java-optional-throw-exception
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-optional-throw-exception
β‘οΈ @JavaLearnZone
Baeldung
Throw Exception in Java Optional | Baeldung
Explore how to throw an exception from Java 8 Optional.
π Guide to Java Parallel Collectors Library
https://www.baeldung.com/java-parallel-collectors
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-parallel-collectors
β‘οΈ @JavaLearnZone
Baeldung
Guide to Java Parallel Collectors Library | Baeldung
Learn how to use Parallel Collectors, a library of Java Stream API collectors designed to overcome limitations of standard Parallel Streams.
π Pragmatic database migrations with Quarkus and Flyway
//www.javacodegeeks.com/2020/08/pragmatic-database-migrations-with-quarkus-and-flyway.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2020/08/pragmatic-database-migrations-with-quarkus-and-flyway.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Pragmatic database migrations with Quarkus and Flyway | Java Code Geeks - 2020
Interested to learn about database migrations? Check our article explaining how to perform database migrations in Quarkus applications.
π Collect a Java Stream to an Immutable Collection
https://www.baeldung.com/java-stream-immutable-collection
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-stream-immutable-collection
β‘οΈ @JavaLearnZone
Baeldung
Collect a Java Stream to an Immutable Collection | Baeldung
Learn how to collect Java Streams to immutable Collections.
π Java βprotectedβ Access Modifier
https://www.baeldung.com/java-protected-access-modifier
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-protected-access-modifier
β‘οΈ @JavaLearnZone
Baeldung
Java βprotectedβ Access Modifier | Baeldung
The protected modifier helps Java classes to encapsulate their implementation and also share it with related types. Explore how this modifier works in practice.