• 03 May

    Spring Boot hello world example – Thymeleaf

    In this post, we will see how to create Spring boot hello world example using Thymeleaf. Why Spring Boot? Let’s say you want to create Spring MVC MySQL project.When you are working on this project, you might be confused with a lot of dependencies it requires.You might get confused with versions too. Spring boot will […]

  • 01 May

    Spring Boot + ActiveMQ example

    In this tutorial, we will see how to create Spring boot + ActiveMQ example. Spring boot comes with embedded ActiveMQ similar to tomcat, so you don’t have to create external ActiveMQ.If want to configure with external ActiveMQ, you can do it just by change in application.properties file. Github Source code: Download Project Structure: Here are […]

  • 29 April

    Spring boot rest example

    In this tutorial, we will see how to create Restful web services using Spring boot. There are not many differences between creating Rest API using Spring Rest JSON which we have already seen earlier. Spring Boot just makes easier to Rest API. You don’t have to provide any additional JSON dependency in the classpath. Spring […]

  • 28 April

    Spring Boot web application example

    In this post, we will see how to create Spring boot web application example using JSP. Let’s see how Spring boot makes over life simpler.I am going to create Spring MVC hello world example using Spring Boot. Github Source code: Download Spring Boot web application example: Here are steps to create a Spring boot web application […]