In the past, we usually turned the html page given to us by the front end into a jsp page, and easily realized the data display and front-end and back-end interaction through jsp. However, spring boot does not support jsp by default. If you directly use pure static pages, the development will be very troublesome, which introduces the template e ...
Posted by Highland3r on Mon, 04 Apr 2022 20:57:07 +0300
The corresponding excerpt code file after the end of this chapter: Gangbb-Vue-05-Log
Historical legacy TODO:
Chapter III
The mybatis cache is not used for the time being. After integrating redis, redis will be used as the cache (the integration of redis is completed).Rewrite the mybatis configuration file and scan the mapper (the log inte ...
Posted by im8kers on Mon, 04 Apr 2022 11:26:07 +0300
● case realization scheme analysis ◆ entity class development - use Lombok to quickly create entity classes ◆ DAO development - integrate MyBatisPlus and make data layer test classes ◆ Service development - carry out incremental development based on MybatisPlus and make business layer test classes ◆ Controller development - based on Restful dev ...
Posted by iamali on Mon, 04 Apr 2022 10:35:32 +0300
This chapter will introduce how to install and use mysql, integrate MySQL database with Spring Boot, integrate Druid with Spring Boot, and explain the specific application of Spring Boot through examples.
MySQL introduction and installation
There are many database types, such as relational databases such as MySQL and Oracle, and non relationa ...
Posted by MatrixGL on Sun, 03 Apr 2022 15:21:29 +0300
preface:
Today, let's talk about sharding JDBC sub database and table middleware. This middleware belongs to the application layer dependent middleware, which is strongly coupled with the application layer. It needs to display and add the dependent Jar package in the application;
After a brief talk about sharding JDBC, this article main ...
Posted by Chris_Mc_1985 on Sat, 02 Apr 2022 20:53:40 +0300
Project source code can be found in
https://gitee.com/ShayneC/community obtain
Redis, one-stop high-performance storage solution
1. Introduction to redis
Redis is a NoSQL database based on key value pairs. Its values support a variety of data structures: Strings, hashes, lists, sets, sorted sets, etc.Redis stores all data in memory, so i ...
Posted by kesmithjr on Sat, 02 Apr 2022 08:19:32 +0300
Request mapping source code
First of all, let's look at a complete flow chart of the request (here we thank the great God in the blog Park, I forgot the blog address):
How does the access request sent from the foreground to the background find the corresponding controller mapping and perform subsequent background operations? Its core is dispat ...
Posted by scofansnags on Fri, 01 Apr 2022 21:44:36 +0300
1, Background
With the increasingly stringent security requirements of various platforms (for example, the docking of wechat applet must use HTTPS access), the HTTPS of the website is imperative.
2, Access requirements
To connect a service to HTTPS service, at least the following steps are required:
Purchase SSL certificate from author ...