MyBatis Plus rookie quick start

MyBatis Plus Domestic open source framework based on MyBatis The core function is to simplify the development of MyBatis and improve efficiency. MyBatis Plus quick start 1. Create a springboot project 2. Import the dependency of mybatisplus <dependency> <groupId>com.baomidou</groupId> <artifa ...

Posted by Brad420 on Tue, 05 Oct 2021 23:11:59 +0200

Spring boot + mybatis plus to implement CRUD common simple version

Mybatis Plus Today's goal: Understand the features of mybatisplusGet started with mybatisplusBe able to master the common annotations of mybatisplusBe able to master the common additions, deletions, modifications and queries of mybatisplusBe able to master mybatis plus automatic code generation 1 MybatisPlus overview MyBatis plus (MP for sh ...

Posted by t_galan on Tue, 05 Oct 2021 20:05:00 +0200

SpringBoot interacts with Vue to solve cross-domain problems

Hello, I'm a Grey Ape, a bug-writing ape! Recently, a separate front-end and back-end personal blog site was developed using springboot+vue integration, so this article summarizes a problem encountered in the development and how to solve cross-domain problems when using Vue and springboot to separate front-end and back-end projects. Share two ...

Posted by valen53 on Tue, 05 Oct 2021 18:18:47 +0200

Second kill project -- 1. Project framework construction

Project framework construction This section is used to prepare for the construction of general projects, mainly including new projects, configuration files, public return classes, exception handling and logs; These should be common to all projects. Put it here. 1. New project Select components, generally Spring boot devtools, Mysql Driver, M ...

Posted by halojoy on Mon, 04 Oct 2021 04:23:14 +0200

SpringBoot 2. X basic tutorial: integrating Thymeleaf with SpringBoot

Micro signal: hzy1014211086. If you are learning Spring Boot, you can join our Spring technology exchange group and grow together For Web projects, the front-end and back-end separation mode is the most popular. At present, the front-end framework is very perfect, and the front-end and back-end separation scheme is also very mature. Th ...

Posted by imcomguy on Wed, 29 Sep 2021 05:17:05 +0200

SpringBoot - Implements the execution of specified tasks at startup (CommandLineRunner, ApplicationRunner)

Narration Sometimes special tasks need to be performed at system startup, such as configuration file loading, database initialization, etc. Spring Boot provides two solutions: CommandLineRunner and ApplicationRunner. They are used in a similar way, and the differences are mainly reflected in the parameters. Solution CommandLineRunner 1. In ...

Posted by atrum on Tue, 28 Sep 2021 18:43:28 +0200

SpringBoot growth 2: analyzing SpringBoot from HelloWorld

In the previous section, we mentioned that when you know a new technology, you usually start with an introductory HelloWorld, and then read some introductory documents, books and videos to master its basic use. In this section, I will take you to start with HelloWorld, first find out the core context of SpringBoot, and then gradually analyze ...

Posted by parijat_php on Tue, 28 Sep 2021 00:52:41 +0200

[Dubbo notes 7] SpringBoot integrates Dubbo (Zookeeper)

Copyright notice: This article is a small original article, non-commercial free reprint - keep the signature - indicate the source, thank you! Website of this article: https://sunkuan.blog.csdn.net/article/details/120502052 before [Dubbo notes sorting v] SpringBoot integrating Dubbo (Multicast) I introduced how to use SpringB ...

Posted by markanite on Mon, 27 Sep 2021 02:52:07 +0200

Spring Boot implements common functions of the Web

Spring Boot implements common functions of the Web Usually, in Web development, it involves the access support of static resources, the configuration of view parser, the customization of converter and formatter, file upload and download, and even the customization of Servlet related components associated with Web server. Spring Boot framework ...

Posted by rjs34 on Sun, 26 Sep 2021 12:43:51 +0200

Distributed environment, streamer, springboot implementation, token bucket

Token bucket algorithm: Production logic: the program generates tokens at a constant rate, and then puts the tokens into the token bucket. The token bucket has a capacity. When the token bucket is full, the tokens cannot be placed into the bucket; Consumption logic: when you want to process a request, take a token from the token bucket. If th ...

Posted by shylock on Sun, 26 Sep 2021 12:34:35 +0200