The static model is one click dynamic, which teaches you how to integrate motion capture ability
How is the interesting static model dynamic?Huawei 3D modeling service (3D Modeling Kit) has the ability of motion capture. Using human body detection technology, model acceleration and compression technology and monocular attitude estimation algorithm based on deep learning, it can capture the three-dimensional information of 24 bone key point ...
Added by NoFear on Thu, 10 Mar 2022 09:45:34 +0200
Understanding template engine Thymeleaf
What is a template engine?
[function] the template engine is created to separate the user interface from the business data (content). It can separate the Servlet Java code and Html web page code (this is the advantage of the template engine compared with the Servlet directly returning to the dynamic page)
Principle / process
Thymeleaf ...
Added by prakash911 on Thu, 10 Mar 2022 08:53:45 +0200
Still using RedisTemplate? Try Redis's official ORM framework. It's elegant enough to use
Previously, in the SpringBoot project, I have been using RedisTemplate to operate the data in Redis, which is also the way officially supported by Spring. Compared with Spring Data's support for MongoDB and ES, this way of using Template is really not elegant! Recently, RedisOM, Redis's exclusive ORM framework, has been officially launched by R ...
Added by JustFoo on Thu, 10 Mar 2022 07:49:55 +0200
Realize the read-write separation of mysql database through shardingsphere
In the previous document, mysql master-slave databases were deployed through docker:
Deploy mysql master-slave architecture in docker mode_ Repair Baron's blog - CSDN blog
This paper introduces how to connect and use mysql master-slave database in java code to realize the separation of reading and writing.
mybatis-plusPersistence layer frame ...
Added by Muddy_Funster on Thu, 10 Mar 2022 07:31:02 +0200
Commodity management system
Commodity management system (stored in database)
brief introduction
For the first time, if there is an error in my blog, I can send a private letter. Thank you for your correction.
If you can write, I hope you can pay attention to it, and will continue to update the learning process and make progress together.
The source code is at the end ...
Added by Ind007 on Thu, 10 Mar 2022 06:28:32 +0200
tomcat tuning and jvm parameter tuning
Tomcat tuning
First, open Tomcat / conf / server XML file, search Executor name = "tomcatThreadPool", open and adjust to:
<Executor name="tomcatThreadPool" namePrefix="catalina-exec-" maxThreads="500" minSpareThreads="20" maxSpareThreads="50" maxIdleTime="60000"/>
Then, modify the < connector... > node, add the executo ...
Added by Sinikka on Thu, 10 Mar 2022 06:14:07 +0200
MyBatis cache | MyBatis series
Related articles
MyBatis collection summary: MyBatis series
preface
Shock! MyBaits has a cache? I don't know. It's out of date~Although we usually do not use it in development, it is necessary to understand it!In actual work, the cache we use is usually Redis. Interested students can go to see the series of Redis articles I wrote earli ...
Added by echox on Thu, 10 Mar 2022 03:11:13 +0200
Recurrence analysis of Apache Dubbo deserialization vulnerability
preface
Learn the classic vulnerabilities of Apache Dubbo series
CVE-2019-17564
0x01 version affected
Dubbo 2.7.0 to 2.7.4 Dubbo 2.6.0 to 2.6.7 Dubbo all 2.5.x versions
0x02 environmental preparation
https://github.com/apache/dubbo-samples/tree/master/dubbo-samples-http Download the source code, switch the Dubbo version in pom, and fi ...
Added by Griven on Thu, 10 Mar 2022 02:05:39 +0200
Java handwriting thread pool
Thread pool
What is a thread pool
Thread pool is a thread usage mode. The thread pool will maintain multiple threads waiting to allocate tasks that can be executed concurrently. When a task needs thread execution, it will allocate threads from the thread pool to the task without actively creating threads.
Benefits of thread pooling
If we us ...
Added by ten31studios on Thu, 10 Mar 2022 02:02:59 +0200
[algorithm and data structure] talk about linear search method~
📅 preface
As we all know, algorithm and data structure is a necessary course for all computer majors. Algorithm not only reflects a person's logic ability, but also reflects a person's thinking ability. It is not only learning algorithms and data structures, but also a deep understanding of computer science.
In this article, we will star ...
Added by PunjabHaker on Thu, 10 Mar 2022 02:00:12 +0200