Learn about Java 8 Stream

Links to the original text: https://www.runoob.com/java/java8-streams.html Reference address for this article: https://www.runoob.com/java/java8-streams.html   What is Stream? The Java 8 API adds a new abstraction called Stream, which ...

Posted by salmanshafiq on Mon, 19 Aug 2019 09:47:51 +0200

Dynamic SQL Statements in Mybatis

The Foundation of MyBatis Series (10) Dynamic SQL Statements in Mybatis 1. Overview of Dynamic SQL Referring to the official documents, it is described as follows: They are: if choose (when, otherwise) trim (where, set) foreach 2. Label of ...

Posted by guttyguppy on Sun, 18 Aug 2019 11:34:11 +0200

20 Enterprise Tuning 2-Table Optimization

1. Small and large tables join 1.Definition //Keys are relatively dispersed and tables with small amounts of data are placed on the left side of the join, which effectively reduces the chance of memory overflow errors. //Further, you can use map ...

Posted by BigMike on Sun, 18 Aug 2019 04:24:46 +0200

Servlet&HTTP&Reques

Servlet: 1. Concept 2. Steps 3. Executive Principle 4. Life cycle 5. Servlet 3.0 Annotation Configuration 6. Servlet architecture Servlet -- Interface | GenericServlet -- abstract class | HttpServlet -- abstract class * Generic Servl ...

Posted by kaveman50 on Thu, 15 Aug 2019 13:41:12 +0200

mysql database learning notes (summary)

mysql database learning collation Log in to the database Mysql-u username-p password Look at the database and note that it ends with a semicolonshow databases; # Display all databases (# is the symbol for mysql annotations) _____________________ ...

Posted by mikster on Wed, 14 Aug 2019 10:59:39 +0200

Lucene Full Text Retrieval

Based on lucene 8 1 Lucene Brief Introduction Lucene is an open source full-text search engine toolkit under apache. 1.1 Full-text Search Full-text retrieval is the process of creating index by participle and then performing search. Word segmentation is to divide a paragraph of text into words. Full-text retrieval divides a paragraph of text ...

Posted by adamjblakey on Tue, 13 Aug 2019 14:19:31 +0200

RBAC permission framework_MVC permission framework

RBAC Role-Based Access Control (RBAC) is a role-based access control framework. It is very convenient to manage privileges through user-role-privilege association. What is it? RBAC Please do it yourself. Baidu. Thank you for your support. If there are any mistakes in the article, please contact me or email me linjie.rd@gmail.com. A small gift ...

Posted by nilesh on Tue, 13 Aug 2019 13:48:42 +0200

Membership Card Management System

Membership Card Management System Membership Card Management System mysql Database Creation Statement Member card management system oracle database creation statement Membership card management system SQL Server database creation statement Membership card management system mysql database v ...

Posted by parboy on Tue, 13 Aug 2019 12:04:29 +0200

Mybatis additions, deletions, modifications, dynamic SQL statements, multi-table operations (easy to understand, graphics and text teaching, a whole set of actual combat)

1. Optimizing code Let's start with a little optimization of yesterday's code. Test methods written in test classes. If we write one test method at a time, we need to build factories or something, and there will be a lot of repetitive code.Modify the test method Mybatis Test public class MybatisTest { ...

Posted by Jon12345 on Tue, 13 Aug 2019 11:40:37 +0200

SpringBoot Initial - Interceptor

Interceptor can help us to complete some unified checks of user status, request parameters, log records, etc. In SpringBook, we can inherit Handler Interceptor to implement our interceptor, and then simply configure it to make the interceptor effective. One additional interceptor We add a login int ...

Posted by steadyguy on Tue, 13 Aug 2019 10:48:28 +0200