Learn several ways of convert an integer to a Long in Java.
Also find me here:
Baeldung Author
Bogdan Cardos
I am an engineer/contractor/freelancer with ๐ญ๐ญ+ ๐๐ฒ๐ฎ๐ฟ๐ ๐ผ๐ณ ๐ฒ๐ ๐ฝ๐ฒ๐ฟ๐ถ๐ฒ๐ป๐ฐ๐ฒ. Using my passion and coding knowledge, I help companies worldwide architect and implement scalable leading-edge software solutions.
Here's what I've written (so far):
Baeldung on Java
- All
- Spring Boot (1)
- Programming (1)
- Java Numbers (1)
- Java Collections (1)
- Java (1)
Best Practices for Passing Many Arguments to a Method in Java
Filed under Programming
This article discusses the challenges of passing many arguments to a method in Java. It presents two design patterns to mitigate these issues: the Parameter Object Pattern and the Java Bean Pattern.
Fixing the No Main Manifest Attribute in Spring Boot
Filed under Spring Boot
We may sometimes get the No Main Manifest Attribute error when building our Spring Boot applications. We look at the root cause and how to fix it.
Convert a List to a Comma-Separated String
Filed under Java Collections
Learn four ways to convert a List of Strings to a comma-separated String.
Handle Classes With the Same Name in Java
Filed under Java
Explore two possible approaches regarding the use of classes having the same name in Java.