Databases

Spring MVC Hibernate MySQL Integration CRUD Example Tutorial — step-by-step Databases tutorial on Progressive Robot

Spring MVC Hibernate MySQL Integration CRUD Example Tutorial

URL: https://www.progressiverobot.com/spring-mvc-hibernate-mysql-integration-crud-example-tutorial/ We learned how to integrate [Spring and Hibernate](/community/tutorials/spring-hibernate-integration-example-tutorial "Spring Hibernate Integration Example Tutorial (Spring 4 + Hibernate 3 and Hibernate 4)") in our last tutorial. Today we will move forward and integrate Spring MVC and Hibernate frameworks in a web application CRUD example. Our final project structure looks like below image, we will […]

Read more
How To Optimize Queries and Tables in MySQL and MariaDB on a VPS — step-by-step Databases tutorial on Progressive Robot

How To Optimize Queries and Tables in MySQL and MariaDB on a VPS

MySQL and MariaDB are popular database management systems that can be used in conjunction with an application or a website. While the querying syntax is easy to learn and very powerful, some operations take a long time. This article will discuss some steps you can take to optimize your queries and table structure.

Read more
How To Set Up Replication in MySQL — step-by-step Databases tutorial on Progressive Robot

How To Set Up Replication in MySQL

MySQL replication is a process that allows you to easily maintain multiple copies of a MySQL data by having them copied automatically from a master to a slave database. This can helpful for many reasons including facilating a backup for the data,a way to analyze it without using the main database, or simply as a means to scale out.

Read more
How To Use Lithium to Create a Web App — step-by-step Databases tutorial on Progressive Robot

How To Use Lithium to Create a Web App

In this tutorial, we’ll continue where we left off previously when we installed Lithium onto our Ubuntu 12.04 VPS and configured all the necessary requirements for building our web application. If you remember, we also connected a MySQL database and had a glimpse of how to print out “Hello World” onto the page. What will follow now is illustrating how to use the three MVC components (Models, Views and Controllers) together with the Lithium framework.

Read more
CHAT