idea SMS verification
idea SMS verification (SMS interface: Alibaba cloud; message middleware: activeMQ)
It is mainly divided into two steps: 1. Create sending message 2. Create receiving message
1. Create a message
1.1 create maven project
1.2 pom.xml file import dependency
Note: sometimes the package of aliyun will not be automatically downloaded by idea, so ...
Added by romzer on Wed, 23 Oct 2019 18:39:23 +0300
Using FastJson to parse Json data in Spring Boot
First, we create a maven project, as shown in the following figure:Step 2: configure pom.xml
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.1.RELEASE</version>
</parent>
<properties>
<project.b ...
Added by sevenupcan on Wed, 16 Oct 2019 18:33:05 +0300
java deploy microservices to Docker
The microservice of this project is developed by spring boot, and each microservice project is made into jar package. Finally, jar is run in the Docker container. The deployment process is as follows
1. The spring boot project is finally built into Jar package.
2. Create Docker image
3. Create container
4. Start the container
Manual deploymen ...
Added by godwisam on Tue, 15 Oct 2019 17:17:58 +0300
spring boot + Quartz to configure dynamic timing tasks
OK, go straight to the subject
maven dependence
<!-- https://mvnrepository.com/artifact/org.quartz-scheduler/quartz -->
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
</dependency>
To configureFirst, rewrite the QuartJob fac ...
Added by datona on Tue, 15 Oct 2019 17:06:23 +0300
spring-aop notification example
Application of Spring AOP Notification
xml version
Create a new maven project
Project Structure Diagram
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:schemaLo ...
Added by ngolehung84 on Fri, 11 Oct 2019 22:45:17 +0300
An Example of Spring Boot Security JWT Integration for Front-end and Back-end Separated Authentication
We introduced the first two chapters. Spring Boot Security Quick Start and Spring Boot JWT Quick Start This chapter uses JWT and Spring Boot Security components as a front-end and back-end separate authentication system. The code examples in this chapter are from Spring Boot Security + JWT Hello World Example.
This chapter does not use thymele ...
Added by joelg on Fri, 11 Oct 2019 19:34:03 +0300
Spring Boot 2.x Basic Case: Integrating Dubbo 2.7.3 + Nacos 1.1.3 (latest edition)
1. Overview
This article will introduce how to register and consume Dubbo services by using Nacos as configuration and registration center based on Spring Boot 2.x.
Version description of integration components:
Spring Boot 2.1.9
Dubbo 2.7.3
Nacos 1.1.3
The highlights of this paper are as follows:
1. dubbo is configured by yml mode.
2. Rele ...
Added by nels on Thu, 10 Oct 2019 11:46:43 +0300
SpringBoot 2.0 Foundation Case (17): Custom Start Page, Project Packaging, and Specified Running Environment
A Brief Introduction to Packaging
Springboot is packaged in many ways. You can use war packages, jar packages, and jekins for packaging and deployment. It is not recommended to use war packages. SpringBoot is suitable for front-end and back-end separation. It is more convenient and fast to deploy as jar.
Custom Start Page
Content of banner.txt ...
Added by Caps on Tue, 08 Oct 2019 11:42:02 +0300
WIN10 Common Software for People
Common Software and Configuration for WIN10 Persons
development tool
IDE
Intellij IDEA
WebStorm
Android Studio
Navicat
Postman
Node
Development tools
Git
MariaDB
Java environment
JDK
Configuring System Environment Variables
Maven
Configuring System Environment Variables
Tomcat
Configuring System ...
Added by YoussefSiblini on Mon, 07 Oct 2019 19:00:28 +0300
Fuse Monitoring Turbine
Step 1: modify the ip address mapping of hosts to create the eureka cluster
Reference: https://www.cnblogs.com/noneplus/p/11374883.html
Step 2: Create a Service Provider
pom dependence
<?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-insta ...
Added by stephanie on Mon, 07 Oct 2019 18:01:27 +0300