Solve the problem of eight hours time difference in MySQL insertion Generally, several parameters need to be added to the jdbc url. Most blogs give tutorials with these parameters: The configuration result is: To solve the time zone problem, I used serverTimezone=UTC in the past, but I ran into a small pit today and realized that this is not a panacea. First, insert a record normally It is found that the database record time is different from the local time The first method: Check the time in MySQL First use mysql -u username -p password in cmd to log in to mysql Enter Check MySQL time If the time is consistent with your local current time This means that there is no problem with MySQL time, but the problem lies with Java time. Try changing the jdbc url parameter to Second: If the query MySQL time is inconsistent with the local time, use the following statement to set the MySQL time zone show variables like '%time_zone%'; //Query the current time zone set global time_zone='+8:00'; //Add +8 hours to the standard time zone, i.e. Eastern Time Zone 8 flush privileges; # Take effect immediately Final test results success Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. You may also be interested in:
|
<<: Introduction and use of js observer mode
Table of contents 1. New usage of watch 1.1. Watc...
Development environment windows Development Tools...
The interviewer will sometimes ask you, tell me h...
Table of contents Vue monitor properties What is ...
Table of contents Introduction The following is a...
Anyone who has read my articles recently knows th...
Use meta to implement timed refresh or jump of th...
Recently, the business side reported that some us...
<br />Adding pictures reasonably can make a ...
Table of contents Passing parameters between pare...
1. Connect to MySQL Format: mysql -h host address...
Table of contents 1. Current situation 2. Communi...
1. Download the installation package Download add...
Copy code The code is as follows: height:auto !im...
1. CSS element hiding <br />In CSS, there ar...