SpringBoot+Vue+HIKVSION enables camera multi selection and multi window preview (plug-in version)
scene
If you follow the instructions of the front-end and back-end separate versions to build a local environment and run the project:
If you follow the front-end and back-end separation version, you can teach you how to build a local environment and run the project_ BADAO_LIUMANG_QIZHI blog - CSDN blog
SpringBoot+Vue+Openlayers can add and ...
Posted by suspect on Sat, 06 Nov 2021 16:53:55 -0700
Introduction and practice of global unified exception handling
PS: This article is detailed, so it is long. Reading time: 30m~1h. Please read it carefully. I hope you can have a clear understanding of unified exception handling in an hour.
1. Background
In the process of software development, it is inevitable to deal with all kinds of exceptions. For myself, at least more than half of the time is dealing ...
Posted by cheechm on Thu, 04 Nov 2021 23:24:19 -0700
Bus of spring cloud 2020.0.4 series
1. General
As the old saying goes: people who can rest can work better. Body is the capital of revolution. If their body breaks down, they can no longer work.
To get back to business, we talked about the distributed configuration center config of SpringCloud before. In this article, we talked about the dynamic refresh of config configuration, ...
Posted by mbdonner on Thu, 04 Nov 2021 13:54:57 -0700
Analysis of SpringBoot Auto-assembly Principle
In springBoot, we don't need to do any configuration to write directly at the business level
Code, because springBoot Help US configure all the environments.
Here's a simple springboot Project Analysis
Project Code
springBoot main program
```java
@SpringBootApplication
public class HelloApplication {
public static void main(String[] arg ...
Posted by sgs-techie on Thu, 04 Nov 2021 12:08:59 -0700
Quartz simple application (Springboot environment)
Requirements: in the project, it is inevitable to use scheduled tasks to perform some automatic operations. For simple scheduled tasks, you can add @ Schedule annotation to the method to execute scheduled tasks. However, if multiple modules of the same level execute the same method at different time points, there is no way to use @ Schedule onl ...
Posted by vietnamese on Thu, 04 Nov 2021 11:18:21 -0700
Spring Security Series tutorial 28 -- implementing CAS single sign on with spring security Part 2 -- building CAS client
preface
In the previous chapter, I took you to build the CAS Server side project, that is, we built a unified single sign on authentication center. Next, we can build the CAS client project, and then realize the interactive authentication between the client and the server, so as to complete single sign on.
Next, you will follow brother Yige t ...
Posted by richcrack on Wed, 03 Nov 2021 21:31:12 -0700
Integrating Elasticsearch with Java SpringBoot
Integrating Elasticsearch with Java SpringBoot
Create a project and import dependencies into pom.xml:
<!-- SpringBoot Core package -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>Import version number< ...
Posted by powerspike on Wed, 03 Nov 2021 18:55:50 -0700
Spring cloud 2020.0.4 series Config
1. General
As the old saying goes: if one road doesn't work, go the other way. If plan A can't be implemented, follow Plan B. It's always useful to prepare more plans.
Well, let's get down to business. Today, let's talk about the distributed configuration center Config of spring cloud. There are many service nodes in the microservice architec ...
Posted by Scud on Wed, 03 Nov 2021 00:11:19 -0700
Mybatis plus from entry to earth
Mybatis plus is a mybatis enhancement tool to simplify development and improve efficiency. The abbreviation mp is used below To simplify the representation of mybatis plus , This article mainly introduces the use of mp with SpringBoot.
Note: the mp version used in this article is the latest version 3.4.2. Please refer to ...
Posted by timvw on Tue, 02 Nov 2021 23:43:57 -0700
SpringCloud microservice practice -- building an enterprise level development framework: OpenFeign+Ribbon to achieve load balancing
Ribbon is a load balancing project under Netflix, which mainly realizes the load balancing of middle tier applications. After configuring the service provider address list for the Ribbon, the Ribbon will automatically help the service caller to request based on a load balancing algorithm. The Ribbon provides a variety of load balancing a ...
Posted by gthri on Tue, 02 Nov 2021 14:51:33 -0700