2. Spring integrates Spring data jpa complex query

Article directory Environment creation and simple query, see the previous article 1Specifications dynamic query 1.1 query single object according to conditions 1.2 multi criteria query 1.3 fuzzy matching, sorting 1.4 paging query 2. Relationship between multiple tables and operation steps of multip ...

Posted by SpaceLincoln on Fri, 07 Feb 2020 13:21:16 +0100

Using DDD to develop classification module in e-commerce system

Using DDD to develop the classification module of e-commerce system. We will discuss two commodity classifications in e-commerce system, namely, the commodity classification of e-commerce system category and the commodity classification customized by merchants. The domain model is used to implement thes ...

Posted by BobcatM on Fri, 07 Feb 2020 09:25:21 +0100

Optimizing multiple method calls using Java reflection

I haven't been writing a blog for a while, and I've been missing my thoughts. I have time to write a post today.Previous leaders proposed to optimize part of the system module, according to business requirements, there are many products in the system, there are N indicators under the product, one indicator corresponds to a method, so the system ...

Posted by nazariah on Thu, 06 Feb 2020 17:11:12 +0100

Initialization process of Spring MVC-01-DispatchServlet

1, Initialization process of dispatcher Servlet The dispatcher servlet inherits the HttpServletBean class, which contains the initialization method init(), whose code is as follows: /** * Map config parameters onto bean properties of this servlet, and * invoke subclass initialization. * @throws ServletException if bean properties are in ...

Posted by artfuldrone on Thu, 06 Feb 2020 12:05:32 +0100

WPF Learning Notes: x Namespace Details

The letter X is actually the first letter of XML, and the X namespace corresponds to this statement: xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml", which contains classes related to parsing the XAML language and is divided into three main categories: Attribute, tag extension, instr ...

Posted by serial on Thu, 06 Feb 2020 03:42:17 +0100

2020.2.4 / 2.5 holiday java consolidation review

Class Object The Object class (base class) is the root parent of all java classes. Multi level inheritance. The parent class at the highest level must be the Object class. For example, if you want to set a parameter parameter for the test method, which class will be passed in if you are not sure about ...

Posted by stormcloud on Wed, 05 Feb 2020 12:42:46 +0100

OpenGL ES for Android play video

Why play video with OpenGL ES We all know that there is a VideoView control in Android that can play video directly, which is both simple and practical. So why do we use OpenGL ES to play video? That's because OpenGL ES can do more cool dynamic effects, such as rotating video, double finger zooming v ...

Posted by _off_axis_ on Wed, 05 Feb 2020 11:38:07 +0100

python realizes the airplane battle game (pygame version)

Catalog   brief introduction Implementation process epilogue brief introduction Using python to realize pygame version of the aircraft war game; Environment: Windows system + python3.8.0 Rules of the game: 1. Click "PLAY" or press "P" to start the game; 2. The enemy air ...

Posted by sfarid on Tue, 04 Feb 2020 13:43:34 +0100

Spring framework learning notes Xml advanced configuration

The second chapter has written the basic configuration method of XML, so this one starts to write the advanced configuration of XML (nothing, maybe I just said that...) Talk less now 1. Relationship between beans: inheritance or dependency If you configure two beans, but find that many of the prope ...

Posted by todding01 on Tue, 04 Feb 2020 11:11:47 +0100

gui design example based on tkinter

gui design example based on tkinter (beast speech generator v1.0.0) Take the beast first speech generator as an example Previous article address, beast speech generator v0.1.0 Main event cycle Similar to other gui window implementations, it is based on a circular refresh of the main window, and th ...

Posted by jantheman on Mon, 03 Feb 2020 09:12:43 +0100