Spring MVC -- [quick start, execution process, component analysis]

catalogue Integration of Spring and Web Environment ApplicationContext application context acquisition method Spring provides tools for obtaining application context Spring MVC overview Introduction to spring MVC Spring MVC quick start   Spring MVC component analysis   1. Execution process of spring MVC 2. Spring MVC componen ...

Posted by escocia1 on Wed, 20 Oct 2021 16:19:54 -0700

Integrated Water Supply Management System Project: SpringBoot+Thymeleaf+mybatisPlus+bootstrap

1 Maven Maven is the most popular Java project building tool Why do I need to use Maven? Maven can help us manage jar packages and build projects automatically in Java Web development. 1.1 Install Maven Official download: Maven – Welcome to Apache Maven Installation: Decompress the package. Maven Core Profile Set.xml   1.2 Configuring ...

Posted by rgpayne on Wed, 20 Oct 2021 09:49:10 -0700

Review spring to review

Review the basic use of spring As the saying goes: knives don't need to rust after a long time, but knowledge can also be lost after a long time. This article reviews the basic use of spring. concept spring is a lightweight container (framework) for control inversion (IoC) and face-to-face (AOP) IOC: Control reversal refers to the tran ...

Posted by yogadt on Wed, 20 Oct 2021 09:13:07 -0700

Elasticsearch: connect elasticsearch from the Spring Boot application

In previous articles“ Elasticsearch: use Spring Boot to create REST APIs to access elasticsearch ”, I described in detail how to use it in Spring Boot applications   Elasticsearch rest high level client library to connect with elasticsearch. In today's article, I'll use another library   spring-boot-starter-data-elasticsea ...

Posted by callisto11 on Tue, 19 Oct 2021 19:23:52 -0700

Spring WebFlux learning record

This article explains what WebFlux is step by step in the following order: 1,Reactive Stream 2,Reactor 3,WebFlux Among them, Reactive Stream is an important new feature of Java 9, and Reactor is equivalent to Java 8 Stream + java 9 Reactive Stream. The core of the final WebFlux is developed based on the relevant API of Reactor. 1,Reac ...

Posted by johnwayne77 on Tue, 19 Oct 2021 14:12:09 -0700

day2021-10-19(Spring boot core configuration file, project deployment, hot deployment, ES6)

2. Introduction to spring boot 2.1 configuration file 2.1.1 yml and properties spring boot supports 2 configuration files: *. yaml/*.yml, *. propertiesDefault name of configuration file: application YML format: application.ymlproperties: application.properties 1) properties configuration Location:% maven%/src/main/resources/ [the exte ...

Posted by billynastie on Tue, 19 Oct 2021 11:33:15 -0700

[Spring Cloud Netflix] 02--Eureka registration and discovery

1, Preparatory work 1. Create configuration center Create a moudle for spring boot Select Eureka Server Modify pom.xml file <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 ...

Posted by kutte on Tue, 19 Oct 2021 11:25:20 -0700

Code execution + failure rerun of TestNg of SpringBoot

Code execution + failure rerun of TestNg of SpringBoot My design idea is to directly add the corresponding Controller layer and service layer in SpringBoot, and directly encapsulate the run and failure rerun into interfaces. In fact, the Controller layer to realize the call is only a way and an exit. The important thing is the design of the im ...

Posted by bicho83 on Tue, 19 Oct 2021 00:29:59 -0700

Getting started with Spring Cloud

idea installs three plug-ins first MavenHelper Spring Cloud introduce spring cloud is a collection of frameworks. Taking advantage of the development convenience of spring boot, it cleverly simplifies the development of distributed system infrastructure, such as service discovery and registration, configuration center, message bus, load b ...

Posted by noobh on Sun, 17 Oct 2021 21:25:26 -0700

Spring Batch lightweight batch combat

1 theoretical basis before actual combat 1.1 what is spring batch Spring Batch is a lightweight and comprehensive batch processing framework designed to support the development of powerful batch processing applications that are crucial to the daily operation of enterprise systems. At the same time, developers can easily access and utilize mor ...

Posted by theblacksheep on Fri, 15 Oct 2021 22:35:32 -0700