Programming     Travel Logs     Life Is Good     Surfing Online     About Me
Specific knowledge is often highly technical or creative. It cannot be outsourced or automated.
-Naval Ravikant
Published at: 2018-06-10 13:47:04

I've learned several techniques that I need to know to create this application, and I also have added the "Birthday of celebrities" information to my "Today in History" application. Now it is time to finish the main part of this application: displaying all kinds of information of today in history.

Published at: 2018-06-10 13:28:14

There is no doubt that a single table is not enough. In my application, besides the table "day" which stores the general information of a day, I need other tables to store more information, such as the birthdays of famous celebrities. And these tables surely have relations. So I'm gonna learn how to handle these relations of tables in Spring MVC and Hibernate.

Published at: 2018-05-12 17:08:21

Since the database was created, the next step will be using it in my application. I don't want to deal with the database directly. Instead, I want to select an ORM (Object-relational Mapping) framework. Since the Hibernate framework is the most popular, I want to know how it works.

Published at: 2018-05-12 16:53:17

1. Download "MySQL Community Server" from https://dev.mysql.com/downloads/ Here is the .zip file that I have chosen: "mysql-5.7.19-winx64.zip". 2. Unzip "mysql-5.7.19-winx64.zip" to your favorite folder. Here is my favorite folder: "C:\Program Files\mysql" 3. Create a file named "my.ini" in the "C:\Program Files\mysql" folder, and put the following text in:

Published at: 2018-05-12 16:35:27

To learn the Spring MVC framework, I'm going to create a web application named "Today in History", which has only one web page and it will display what happened today in history, such as historical facts, events, famous birthdays, world history, etc.