Create the first Spring application

Development tool preparation Development tool: idea2017 up Dependency management: Maven 3 or above JDK: above 1.8 Creating a Spring project using Maven Select MavenCheck Create from archetypeSelect Maven archetype QuickStart Created successfully Creating a Spring project using Java Enterprise Default Version generally selects Java ...

Posted by stonelord on Tue, 23 Nov 2021 16:33:03 -0800

[comb 1 of ORB-SLAM2 key knowledge points] the relationship among key frames, common views, extension trees and essential diagrams

preface I don't know what to write in this preface. Let's encourage each other. 1, KeyFrame In short: a key frame is a representative of several ordinary frames. 1. Function and significance Reduce the information redundancy in local adjacent key frames;In SLAM scheme, the depth of ordinary frame will be projected onto the key fr ...

Posted by slyte33 on Tue, 23 Nov 2021 16:27:34 -0800

kubernetes deploying persistent jenkins

kubernetes deploying persistent jenkins System environment: System version: CentOS 8.1 k8s version: v1.21.3 Containerd version: ctr containerd.io 1.4.3 jenkins version: 2.172 1, Set storage directory Persist Jenkins to storage. NFS network storage is used here to facilitate consistent escape data of application startup nodes in Kubernetes envi ...

Posted by tekcap on Tue, 23 Nov 2021 16:24:35 -0800

One article has a thorough understanding of Python module. Those who can't have a thorough understanding should look at their teeth

  1. Module introduction 1.1 what is a module When writing a long program, it is recommended to use a text editor instead of an interpreter to execute the input in the file, which is writing   script  . As the program gets longer and longer, in order to facilitate maintenance, it is best to split the script into multiple files. ...

Posted by chinni_77 on Tue, 23 Nov 2021 16:18:54 -0800

DRF: serializer

A Serializer serializer effect: serialize,The serializer converts the model object into a dictionary,after response Later become json character string Deserialization,Send the data sent by the client,after request Later become a dictionary,Serializers can turn dictionaries into models Deserialization,Complete data verification function 1.1 ...

Posted by menwn on Tue, 23 Nov 2021 16:15:03 -0800

Getting started with SpringBoot version of SpringSecurity

SpringSecurity Safety should be considered at the beginningFunction permissions, access permissions and menu permissions all require certain rules to configure security rules Remember several classes: WebSecurityConfigurerAdapter: custom Security policyAuthenticationManagerBuilder: custom authentication policy@Enable WebSecurity: enable WebS ...

Posted by TWD on Tue, 23 Nov 2021 16:04:11 -0800

Tars | Part 4 Subset routing rule service analysis and source code exploration

preface Through the mid-term report and exchange meeting, the author has a deep understanding of Subset business process; At the same time, I also have an understanding of some misunderstandings in the early stage. This article is to update Subset business analysis and correct misunderstandings. 1. Subset is not load balancing Bri ...

Posted by rajatr on Tue, 23 Nov 2021 15:58:34 -0800

Personal experience and source code analysis of filter chain of Spring Cloud Gateway

preface: In fact, I just want to understand the construction principle of the Filter linked list in the spring cloud gateway and the timing of injection into the Bean. If the dynamic injection Filter is a Bean, what timing injection will take effect by default. If it cannot take effect for what reason, which method classes can be forced to ...

Posted by Jip on Tue, 23 Nov 2021 15:35:56 -0800

An HTTPS to HTTP Bug. They endured it for 2 years. They forgive me for being unable to accept it. They changed overtime

Today's article tells you a story and process of tracking down bugs. I have always believed that if something goes wrong, there must be demons, and so is the Bug in the program. I hope that through this Bug troubleshooting story, we can not only learn a series of knowledge points, but also learn how to solve problems and how to do things more ...

Posted by evanesq on Tue, 23 Nov 2021 15:30:15 -0800

Introduction to Scala -- data types

1. Output statements and semicolons 1.1 output statement Mode 1: line feed output format: println(Write the data you want to print to the console); Mode 2: output without line feed format: print(Write the data you want to print to the console); Note: multiple values can be printed at the same time regardless of println() or print() ...

Posted by theresandy on Tue, 23 Nov 2021 15:02:59 -0800