Creating PDF Files in Java 1. Introduction In this quick article, we’ll focus on creating PDF document from scratch based on popular iText and PdfBox library. 2. Maven Dependencies Let’s take a look at the Maven dependencies, which needs to be included in our project: <dependency> <groupId>com.itextpdf</groupId> <artifactId>itextpdf</artifactId> <version>5.5.10</version> </dependency>… Continue Reading java-pdf-creation

Display Auto-Configuration Report in Spring Boot 1. Overview The auto-configuration mechanism in Spring Boot attempts to automatically configure an application based on its dependencies. In this quick tutorial, we’ll see how Spring Boot can log its auto-configuration report at startup time. 2. Sample Application Let’s write a simple Spring Boot… Continue Reading spring-boot-auto-configuration-report