This post demonstrates how to convert your Spring Boot web application to a deployable WAR file for Tomcat.
Spring Boot – List all Beans loaded in the ApplicationContext
With Spring Boot, a lot of beans get loaded into the ApplicationContext depending on your dependencies selection. This post shows a code snippet used to list all the beans loaded in the ApplicationContext.
Spring Boot – Copy File to Another Directory using Apache Camel
This post demonstrates a basic use-case for using Apache Camel with Spring Boot – copy a file to another directory. This basic example will enable you to understand other concepts.
Spring Boot – Loading Data Using a SQL Script
This post demonstrates how loading data from an SQL script for a particular database platform. This is ideal for development stage when you need some seed data to fill in existing database tables.
Spring Boot – Embedded ActiveMQ
This post demonstrates how to embed an ActiveMQ instance in Spring Boot and produce/consume messages with a simple example.
Trim String Values From Properties Files in Spring Boot
This post demonstrates how to trim string values from .properties files using SpringApplicationBuilder and a subclass of or anonymous class of StandardEnvironment supplied to the builder with overridden getProperty(String) and getProperty(String, String) methods.
Validate Properties Files At Startup in Spring Boot
A .properties file contains lines of string pair. Each string pair consists of a parameter name (called the key), and parameter value. This post is about how to validate the parameter value at the application startup.
IBM Bluemix, Cloud Foundry, DevOps, and Spring Boot
In this post, we’ll show how to build, and deploy Spring Boot applications in IBM Bluemix using DevOps,
Read From Multiple Properties Files In Spring Boot
This post demonstrates how to read properties from multiple .properties files in Spring Boot.
Spring Boot – How to unit test RESTful API URLs
This post demonstrates how to unit test RESTful API URLs using Spring Boot 1.5.10RELEASE. We basically just want to ensure the list of URLs still work and match what has been documented per specification.