[SSM basics] Spring learning notes

Spring notes 1, Spring understand Spring concept: make the existing technology easier to use, integrate the existing technical framework, and simplify enterprise application development; advantage: Spring is a free and open source framework Spring is a lightweight, non intrusive framework that has no impact after adding the spring framework ...

Added by pinhead on Sat, 12 Feb 2022 01:18:35 +0200

Notes on Java from introduction to mastery

Special course (comprehensive case) Programming thinking training 1. Programming thinking The ability to use the learned Java technology to solve problems and write code 2. Suggestions on improving programming thinking and programming ability Programming thinking and programming ability are not formed overnight. It takes time to precip ...

Added by MnilinM on Sat, 12 Feb 2022 00:58:10 +0200

Regular expression review

@[TOC] table of contents according to Rookie tutorial Add a few personal understanding and finishing, which can be used to review the knowledge points. For details, please refer to the original link 1. re.match function re match(pattern,string,flags=0) re.match only matches the beginning of the string. If the beginning of the string does not ...

Added by hoogeebear on Sat, 12 Feb 2022 00:01:17 +0200

Basic usage of Python datetime module

import datetime as dtThe module mainly has five classes, datetime class: displays the date and time Date class: displays the date Time class: display time timedelta class: used to calculate date and time objects timezone class: used to adjust the time zone For a class, the functions in the class are collectively referred to as methods. 1. Use ...

Added by namasteaz on Fri, 11 Feb 2022 23:47:00 +0200

netty series: byte or message? This is a problem

brief introduction UDT gives you two choices, byte stream or message. Which one do you choose? Experience tells us that only primary school students do multiple-choice questions, and we should all! Definition of type How are the two types of UDT defined? Check out com barchart. UDT package, you can find that these two types are defined ...

Added by jv2222 on Fri, 11 Feb 2022 22:43:04 +0200

[java basics] static Single case design pattern Math class Arrays class

static keyword Variables, methods, code blocks and internal classes used for modification (not involved for the time being). The modified members belong to the class, not just It belongs to an object. In other words, since it belongs to a class, it can be called without creating an object. Class variable When static modifies a member variabl ...

Added by michaellunsford on Fri, 11 Feb 2022 20:58:12 +0200

Examples of IO stream classification

1, FileInputStream method explain int available() Returns an estimate of the number of bytes that can be read (or skipped) from the input stream without blocking, which may be 0, or 0 when the end of the stream is detected int read() Write a character to the stream int read​(byte[] b) Read multiple bytes into b array int read​(byte[] ...

Added by treppers on Fri, 11 Feb 2022 17:48:36 +0200

Java reflection mechanism and Application

Java reflection mechanism and Application 1. Java reflection In the running state, for any class, you can get all the properties and methods of the class, and for any object, you can call any of its methods and properties (including private methods and properties). This dynamically obtained information and the function of dynamically calling ...

Added by linusx007 on Fri, 11 Feb 2022 17:04:04 +0200

C language string function summary

<string. h> There are many commonly used string functions in the library. Mengxin blogger has made some summary here catalogue 1.strlen 2.strcpy  3.strcat 4.strcmp 5.strncpy 6.strncat 7.strncmp 8.strstr  9.strtok 10.strerror  11.memcpy 12.memmove 13.memcmp 1.strlen Function prototype: size_t strlen ( const char * str ); ...

Added by enemeth on Fri, 11 Feb 2022 16:31:31 +0200

SpringBoot+flowable to quickly implement workflow

Overview Use the flowable UI that comes with flowable to make the flow chart Use the interface used by the springboot development process to complete the business functions of the process 1, Deployment and operation of flowable UI flowable-6.6.0 run the official demo Reference documents: https://flowable.com/open-source/docs/bpmn/ch14 ...

Added by dserf on Fri, 11 Feb 2022 16:11:38 +0200