Thread pool in SpringBoot

During the project two days ago, I wanted to improve the performance optimization of inserting tables, because there are two tables. Insert the old table first, and then insert the new table. More than 10000 data are a little slow The thread pool ThreadPoolExecutor comes to mind later, and the Spring Boot project is used. The thread pool Th ...

Posted by WildcatRudy on Sat, 04 Sep 2021 02:29:57 +0200

Spring Boot 2 learning notes: quick use -- HelloWorld project

1. Get started HelloWorld 1.1 system requirements Java 8 uses java -version to view Maven 3.3 + viewing with mvn -v You must check the Maven version used in the idea, because the idea binds a maven 3 by default 1.2 create maven project and introduce dependency <!--Introduce parent project for version control--> <parent> ...

Posted by DeathStar on Thu, 02 Sep 2021 01:09:26 +0200