In this article, we explore the different packaging types available in Maven.
Also find me here:
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):
Baeldung on Java
- All
- Weekly Review (501)
- Core Java (225)
- Spring (171)
- Testing (157)
- Spring Boot (152)
- Java (142)
- Java String (121)
- REST (109)
- Spring Security (102)
- Spring MVC (99)
- Persistence (96)
- Java IO (92)
- Jakarta EE (77)
- NoSQL (76)
- Java Collections (73)
- Data (73)
- Spring Data (71)
- Algorithms (69)
- Java Concurrency (64)
- DevOps (64)
- Security (57)
- Series (56)
- Java Dates (52)
- JPA (51)
- Reactive (49)
- Maven (47)
- HTTP Client-Side (46)
- Java Map (45)
- Spring Cloud (42)
- Java Numbers (41)
- Java Streams (40)
- Java Array (40)
- JVM (40)
- Java List (38)
- JSON (37)
- Architecture (37)
- Logging (29)
- Spring Persistence (28)
- Jackson (28)
- IDE (27)
- Gradle (25)
- Spring Web (24)
- Networking (20)
- Cloud (20)
- XML (18)
- Web Services (17)
- Groovy (16)
- Spring WebFlux (15)
- Java Web (11)
- Artificial Intelligence (8)
- Docker (7)
- Spring AI (1)
- News (1)
Java Weekly, Issue 359
Filed under Weekly Review
All things Reactive: R2DBC joins Reactive Foundation, Reactive Manifesto II, and The Reactive Principles. NUMA meets G1, GraphQL at scale, and write angry!
JPA CascadeType.REMOVE vs orphanRemoval
Filed under JPA
Learn about the difference between JPA CascadeType.REMOVE and orphanRemoval for deleting entities.
Ignoring Fields With the JPA @Transient Annotation
Filed under JPA
Learn how to ignore fields using the JPA @Transient annotation in Java.
Localizing Exception Messages in Java
Filed under Core Java
Learn how to use the getLocalizedMessage() method to provide localized exception messages
Java IndexOutOfBoundsException “Source Does Not Fit in Dest”
Filed under Java Collections
Learn about the IndexOutOfBoundsException: “Source does not fit in dest” in Java.
Check if a Java Program Is Running in 64-Bit or 32-Bit JVM
Filed under JVM
Learn how a Java program can detect whether it’s running in a 64-bit or 32-bit JVM.
Java Weekly, Issue 358
Filed under Weekly Review
2 million virtual threads with Loom, reactive to coroutines, cloud-native Spring Boot, working effectively with databases and context matters!
The transient Keyword in Java
Filed under Core Java
Learn about the transient keyword and see its behavior through examples