Month: February 2017

Last Updated on July 1, 2019 by Simanta Transcript Okay, I’d like do a quick code review of my Spring Boot Mongo DB example application. This is up on github. And you can find it under my repository springframeworkguru/spring-boot-mongodb. (pretty creative name there) This is an example Spring Bood Application connect to Mongo DB. Not […]Continue reading

Last Updated on October 21, 2024 by jt Out of the box, Spring Boot is very easy to use with the H2 Database. Spring programmers typically prefer writing code against such lightweight in-memory database, rather than on an enterprise database server such as Microsoft SQL Server or Oracle. In-memory databases come with several restrictions making […]Continue reading

Last Updated on June 5, 2019 by Simanta When developing enterprise applications, Spring programmers typically prefer writing data-centric code against a lightweight in-memory database, such as H2 rather than running an enterprise database server such as Oracle, or MySQL. Out of the box, Spring Boot is very easy to use with the H2 Database. In-memory […]Continue reading

Last Updated on June 5, 2019 by Michelle Mesiona Spring Data project provides integration for most of the popular databases around. I have already written few posts to configure Spring Boot to use Oracle, MySQL, and PostgreSQL – all RDBMS widely used in the enterprise. Recently, we’ve seen a rise in popularity of NoSQL databases. […]Continue reading