A quick and practical guide to Java SequenceInputStream class.
Baeldung Author
baeldung
This is the standard author on the site. Most articles are published by individual authors, with their own profiles, but when multiple people have a strong contribution, we publish collectively here.
Here's what I've written (so far):
Keycloak Integration – OAuth2 and OpenID with Swagger UI
Filed under Security
Learn how to test a REST service that uses Keycloak for authentication and authorization with Swagger UI
Java Weekly, Issue 419
Filed under Weekly Review
Happy New Year 🙂
An interesting set of articles this week, from HTTP to persistence optimization and some Dilbert.
String equals() Vs contentEquals() in Java
Filed under Java
Learn the differences between the equals() and the contentEquals() methods of the String class in Java using practical examples.
Working with (Unknown Source) Stack Traces in Java
Filed under Java
Learn why we see an unknown source in our Java exception stack trace and how can we fix it.
A Brief History of the Java Programming Language
Filed under Java
Learn about the history of Java.
Multiple Line Code Example in Javadoc Comment
Filed under Java
A quick and practical tutorial to embedding code samples in JavaDoc comments.
Volatile Variables and Thread Safety
Filed under Java Concurrency
Learn why declaring a shared variable as volatile does not always guarantee thread-safety.
Replication Strategies and Partitioning in Cassandra
Filed under NoSQL
A quick and practical overview of replication strategies in Cassandra.
Why Maven Uses a Different JDK
Filed under Maven
Learn why Maven might use a different version of Java than the default one set in the system
Java Weekly, Issue 418
Filed under Weekly Review
State of Valhalla, Quarkus 2.6, Native Spring, new coroutine release, Qodana code quality, and the holy grail of keyboard layouts! A good way to end the year 🙂
Set the Name of a Thread in Java
Filed under Java Concurrency
Learn to set a Thread name in Java.
Remove a Large File from Commit History in Git
Filed under Programming
Learn how to remove large files from the commit history of a git repository using various tools.
Numeric Format Using POI
Filed under Data
Learn how to format numeric cells in Excel using Apache POI
Is Cassandra a Column-Oriented or Column-Family Database?
Filed under NoSQL
Learn how Cassandra stores data in a partitioned row store and how this differs from a column-oriented data store.
Java Weekly, Issue 417
Filed under Weekly Review
Kotlin extension and delegations, Spring Boot 2.6, custom JPA repositories, open-source dilemma, and microservices vs monoliths!
Guide to JBang
Filed under DevOps
Learn how to create, edit and run self-contained source-only or binary Java programs with ease using JBang.
Remove Duplicate Dependencies with Maven
Filed under Maven
Learn how to detect duplicate dependencies in Maven using the mvn dependency:tree and mvn dependency:analyze-duplicate commands.
Speed up Spring Boot Startup Time
Filed under Spring Boot
Learn different configurations and setups that can help decrease Spring Boot startup time.
Java HTTPS Client Certificate Authentication
Filed under Security
Learn how to use HTTPS Client Certificate Authentication in Java