Blog Archives

Adding Some Demo Data

Before we can start displaying data in our application we need to add some demo data. You could point the data source to be an external persistent data source that contains test data instead of usingĀ an in-memory data source that

Tagged with: , , , ,
Posted in Domino To Spring, None

Adding Bootstrap To The Frontend

Web applications need more than just html. You also need CSS, JavaScript, Images maybe even Fonts. All of these can be added to the resources/static folder in your SpringBoot application. Here I have added a phonebook.css file that will hold

Tagged with: , , , , ,
Posted in Domino To Spring, None

Starting The Frontend

For the frontend we are going to be using Thymeleaf. When you add Thymeleaf to your project using the spring-boot-thymeleaf-starter you will get support for both Thymeleaf V2.x and Thymeleaf V3.x. By default the V2.x support is activated by the

Tagged with: ,
Posted in Domino To Spring, None

Controlling The Frontend

Before we can start building our frontend we need to tell our Spring Boot application how to handle the incoming requests and what html page to display. This is done using Spring MVC which we added when we picked the

Tagged with: , ,
Posted in Domino To Spring, None
Archives