Zero basic learning spring framework

Spring framework 1. spring official website Official website: https://spring.io/ 2. Spring framework Framework: a series of jar packages and the programming method for realizing a certain function are agreed at the same time, which may be different from the original programming method! Each framework solves some specific problems! Prob ...

Added by ctcmedia on Thu, 10 Feb 2022 05:29:35 +0200

Section 8: specifying the configuration file for SpringBoot

Rules for spring boot configuration propertiesPass Separate elementsthe last one. Separate prefix from attribute nameMust be letters (az) and numbers (0-9)Must be lowercaseSeparate words with hyphens -The only other characters allowed are [and], which are used for the index of the ListCannot start with a numberSame configuration itemSpring Boot ...

Added by kate_rose on Thu, 10 Feb 2022 04:13:02 +0200

Microservice architecture learning SpringBoot integration Druid

Microservice architecture learning SpringBoot integration Druid Introduction to Druid A large part of Java programs need to operate the database. In order to improve the performance, they have to use the database connection pool when operating the database. Druid is a database connection pool implementation on Alibaba's open source platf ...

Added by phpn00bf4life on Thu, 10 Feb 2022 00:41:58 +0200

SpringBoot2.x integrate websocket

##I WebSocket 1. Introduction to websocket WebSocket is a communication protocol that allows full duplex communication over a single TCP connection. WebSocket makes the data exchange between the client and the server easier, and allows the server to actively push data to the client. In WebSocket API, the browser and server only need to ...

Added by shaymol on Wed, 09 Feb 2022 20:05:31 +0200

SpringBoot - learn more about configuration files

I configuration file SpringBoot uses a global configuration file with a fixed name; •application.properties •application.yml1. Function of configuration file: Modify the default value of SpringBoot auto configuration; SpringBoot is automatically configured at the bottom;YAML(YAML Ain't Markup Language) YAML A Markup Language: is a markup l ...

Added by webstyler on Wed, 09 Feb 2022 16:59:27 +0200

springMVC, spring, control inversion, dependency injection, MyBatis, springBoot, springSecurity, Java multithreading, redis (buffer breakdown, penetration, avalanche, hotspot dataset failure)

What is spring MVC springMVC Is based on MVC Architecture to simplify WEB Application framework; A framework that belongs to the presentation layer. How spring MVC works The user sends a request to the front-end controller. The front-end controller receives the request and calls the processor mapper. The processor mapper calls the processor ...

Added by Riotblade on Wed, 09 Feb 2022 14:57:14 +0200

Difference between static folder and templates folder in springboot (solution to css style loss after page Jump)

springboot had just learned a little. Now it has been driven to the shelves to do a big innovation project. It also encountered many difficulties. Among them, it encountered static and templates folders to store static resources. After jumping, it found that there was only html code. It took a long time to check many big guys' blogs. Here ar ...

Added by ss32 on Wed, 09 Feb 2022 05:51:28 +0200

SpringBoot annotation principle, automatic assembly principle, pictures and texts, ten thousand words long text!

First, let's look at the main configuration class of SpringBoot: @SpringBootApplication public class StartEurekaApplication {     public static void main(String[] args)     {         SpringApplication.run(StartEurekaApplication.class, args);     } } Click @ SpringBootApplication to see that @ SpringBootApplication is a composite annotation. ...

Added by ossi69 on Wed, 09 Feb 2022 04:27:23 +0200

Analysis of @ Value source code in SpringBoot

1. Introduction Before SpringBoot auto assembly In this article, I introduced the ConfigurationClassPostProcessor class, which is the basic intersection of SpringBoot as the extension of a series of Spring functions. Its derived ConfigurationClassParser is the basic processing class of parsing responsibilities, covering various parsing logic, ...

Added by neox_blueline on Tue, 08 Feb 2022 18:11:15 +0200

SpringBoot builds a Markdown based blog - Part 1

In this article, I will set up a personal blog, which contains articles written in the way of Markdown. We will use Spring Boot to develop the project and some other tools and libraries. We will push the project to the GitHub repository and post the post to our blog using Heroku's automatic deployment function. In addition, we will use the ...

Added by kritikia on Tue, 08 Feb 2022 16:12:04 +0200