Learn SpringBoot--ch06- interface architecture style RESTful

Interface: API (Application Programming Interface) refers to some pre-defined interfaces (such as function and HTTP interface), or refers to the Convention for the connection of different components of the software system. It is used to provide a set of routines that can be accessed by applications and developers based on some software or h ...

Posted by renegade44 on Sat, 19 Feb 2022 17:19:55 +0100

Platform management background and merchant menu resource management: access control design of platform management background

Access control design of platform management background The access control design here is implemented by spring security, which is not much different from the implementation method of the access control part in Chapter 10 SSO design. The difference is that OAuth 2 is not required here, and a simpler method is used for the design of permission ...

Posted by arsitek on Tue, 15 Feb 2022 08:10:50 +0100

The most complete summary of JDK new features in history, covering jdk8 to jdk15!

preface In this article, I will describe the most important and developer friendly features of Java since version 8. Why do you have such an idea? On the Web, you can find many articles containing a list of new features for each java version. However, due to the lack of articles, it is not possible to briefly outline the most important changes ...

Posted by GundamSV7 on Thu, 10 Feb 2022 10:31:44 +0100

Static compilation of QT based on different CPU architectures and related problems

Recently, when compiling linux client, there was a bottleneck. Different CPU + operating system + kernel versions caused more and more cumbersome client maintenance. In order to improve maintenance efficiency and reduce maintenance cost, we decided to adopt static compilation. Because it was years ago, many errors encountered during compilation ...

Posted by CWebguy on Wed, 09 Feb 2022 18:57:32 +0100

Application guide and project practice of WorkManager of Android architecture components

Let's start with an introduction video of WorkManger: Chinese official introduction video (mainly because the little sister looks good ~) Usage scenario WorkManager is applicable to the needs that tasks need to continue to be executed after the application exits (such as the application data reporting server). For those cases that task ...

Posted by davidforbes on Mon, 07 Feb 2022 14:26:51 +0100

Construction of micro cluster system

Project start In August 2021, the idle teacher found some old friends and joined the whole department in a new job. The work content is relatively easy. The idle teacher is the front-end identity in the team. In January 2022, one month before the new year, the idle teacher basically completed the work of the whole year and was relatively idle. ...

Posted by benzrf on Mon, 07 Feb 2022 03:59:33 +0100

Assessment task of the ninth week of javaEE group = = main part: multi thread knowledge summary and related exercises==

1, Concept questions 1. Briefly describe the relationship among programs, processes and threads. What is a multithreaded program? Relationship between programs, processes and threads: Program: a program is a set of ordered instructions and stored in a medium. It is a static concept. Process: process is a concept introduced to enable pro ...

Posted by reddymade on Sun, 06 Feb 2022 18:59:25 +0100

Java reflection: Class class, dynamically loading Class, obtaining method and member variable construction information, basic operation of method reflection, essence of collection generics

System.out.println(c2.getSimpleName());//The name of the class that does not contain the package name System.out.println(c5.getName()); } } ClassDemo3.java public class ClassDemo3 { public static void main(String[] args) { String s = ...

Posted by ThEMakeR on Fri, 04 Feb 2022 08:19:24 +0100

page fault of linux (AMD64 Architecture) (handle_mm_fault)

handle_mm_fault is an architecture independent page fault processing part, which is mainly processed according to the virtual address of page fault, the corresponding vma found in the above steps and the specific error type of flag after error code conversion. It is the core function of the kernel to process page fault. Its interface is as foll ...

Posted by hehachris on Wed, 02 Feb 2022 15:43:21 +0100

Personal online learning website (Chapter II back-end architecture improvement and interface development)

Integrated persistence layer framework Mybatis Integrated Mybatis Introduce dependency <!-- integrate mybatis--> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.1.3</version&gt ...

Posted by bqheath on Tue, 01 Feb 2022 03:18:38 +0100