Back end SSH, some methods that may be used in development projects

catalogue Login to different pages with different accounts Chinese garbled code method Search fuzzy query The permission login function is grayed out Tab child parent page display Child parent page data display Login query function Display according to year data Change Password Give multiple permissions Database connection Front end ...

Posted by EvanAgee on Sat, 01 Jan 2022 13:28:31 +0100

Explanation of array in the early stage of C language

catalogue Insert sort explanation Two dimensional array Initialization of two-dimensional array Access to two-dimensional arrays n-dimensional array Character array Character arrays and strings Input and output of character array Character input / output String input / output Simple use of string functions Comprehensive use of strin ...

Posted by Millar on Sat, 01 Jan 2022 11:18:17 +0100

Some knowledge points in Django

preface django and vue are used Tip: the following is the main content of this article. The following cases can be used for reference 1, setting configuration after installation Static resource allocation templates configuration static (note the last comma, the data type is tuple) STATICFILES_DIRS = ( os.path.join(BASE_DIR, "st ...

Posted by The Bat on Sat, 01 Jan 2022 01:58:18 +0100

There are 9 design patterns used by Mybatis. How many do you know

A large number of design patterns are used in the Mybatis source code. Reading the source code and observing the application of design patterns can have a deeper understanding of design patterns. Mybatis has encountered at least the following design patterns: Builder mode, such as SqlSessionFactoryBuilder, XMLConfigBuilder, XMLMapperBuilder, ...

Posted by chrishide87 on Fri, 31 Dec 2021 21:00:18 +0100

Learning notes for java collection

1 difference 1.1 array Fixed length You can store base and reference types 1.2 collection The length is not fixed Only reference types can be stored, and basic types can be boxed into reference types and saved into the collection through boxing operation. Collection in Java util.* Bao Xia 2 Collection interface 2.1 introduction Arra ...

Posted by hexguy on Fri, 31 Dec 2021 19:38:38 +0100

Interview build rocket series, planted in cglib and jdk dynamic agent

Hello, I'm the technical interviewer of XX Baba company. Are you Zhang Xiaoshuai. The voice came from the other end of the phone Yes, hello. Xiaoshuai was secretly pleased that Dachang finally found me. "Let's have a telephone interview. Please introduce yourself first." “balabalabla...” Xiaoshuai gave a general descrip ...

Posted by dgwade on Fri, 31 Dec 2021 18:46:25 +0100

Detailed explanation of Python data type conversion (with detailed cases attached)

Author home page: San Francisco wyx This article has been entered into the column Introduction to Python The latest version of Python Xiaobai tutorial in 2021 is for 0 basic Xiaobai and partners with weak foundation Tip: click the blue "function name" in the list to go directly to the function parsing area Function nameeffectusein ...

Posted by sarahk on Fri, 31 Dec 2021 18:10:23 +0100

[Python advanced] Decorator

Decorator Learning objectives Be able to know the syntax format of defining decorators 1. Definition of decorator It is a function that adds additional functions to existing functions. It is essentially a closure function. Functional features of decorator: Do not modify the source code of existing functionsDo not modify the calling ...

Posted by adredz on Fri, 31 Dec 2021 14:31:57 +0100

[pit you may step on when you get started-02]

Go language is a simple and interesting programming language. Like other languages, it will inevitably encounter many pits when used, but most of them are not the design defects of go itself. If you have just moved to go from another language, this article may help you. Designed to help you skip these pits and reduce a lot of debugging time. G ...

Posted by MVSS on Fri, 31 Dec 2021 13:42:37 +0100

JDK1. Lambda expression of new features of 8

Lambda is an anonymous function. We can understand lambda expression as a piece of code that can be passed (passing code like data). We can write more concise and flexible code. As a more compact code style, the language expression ability of Java has been improved. 1. How to write Lambda expressions MyInterface interface (provide show meth ...

Posted by Duswa on Fri, 31 Dec 2021 13:29:43 +0100