Using IDEA for the first time, combining mvn and Spring to build a Web project
Build a simple web project by using idea, mvn and spring
Recently, we have been using webstorm for front-end development and verification, but we haven't studied how to integrate back-end development. Now we have time to simply understand the process of front-end and back-end integration. In the middle Experienced person If th ...
Posted by gite_ashish on Sat, 28 Dec 2019 10:36:01 -0800
Advanced Functional Testing in Testing Using Docker in SpringBoot
Recently, I have learned a lot of new knowledge. Thank you for your excellent teacher's detailed explanation. This blog records what I think.
Want to learn more about functional testing in the Spring Boot project?This article takes you to learn more about using the Docker container in testing.
This article focuses on applying some best practice ...
Posted by garygay on Sat, 28 Dec 2019 02:30:12 -0800
(15) Integrating spring cloud cloud Architecture - commonservice SSO service building (1)
We have introduced the knowledge points of Spring Cloud and oauth2 in the previous several articles. Today, we will use Spring Cloud and oauth2 to build commonservice SSO service. In this section, we just build the basic platform of commonservice SSO. If you don't talk about it, record the steps directly:
1. Create the maven project commonserv ...
Posted by Beauchy on Fri, 27 Dec 2019 12:28:33 -0800
Spring boot integrates vue
order
This paper mainly studies how to integrate vue in springboot project
maven
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
Create a new springboot web project. By default, static and templat ...
Posted by Lexas on Thu, 26 Dec 2019 11:45:56 -0800
Installing maven and nexus in linux
Installing maven in linux
Download decompression
wget -c http://apache.claz.org/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz
tar -zxvf apache-maven-3.5.4-bin.tar.gz
Import environment variables
Open file
vi /etc/profile
export MAVEN_HOME=/usr/local/apache-maven-3.5.4
export MAVEN_HOME
export PATH=$PATH:$MAV ...
Posted by woolyg on Sat, 21 Dec 2019 13:07:22 -0800
maven builds executable jar package
You can pay attention to some dry goods.
Build jar package with dependency
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptorRefs>
...
Posted by jkejser on Sat, 21 Dec 2019 12:07:49 -0800
Various shape effect processing tools for Bitmap
Because many times we need to use some special effects to cut the picture, we write a simple help library. At present, we only do some processing to the shape, and then we will optimize and improve it to add more effects.
1, Various treatment effects
The first picture is the original picture, followed by cutting circle, square, ellipse, arc, r ...
Posted by goocharlton on Fri, 20 Dec 2019 12:55:12 -0800
Proficient in Spring Boot -- Part 5: write a Spring Boot starter package
In order to better understand the automatic configuration and working principle of spring boot, let's write a spring boot Hello starter today. This process is very simple, not much code. Let's see how to start.
##1. New maven project.
This is not a demonstration. If you can't do it yourself, baidu... Lala, because it's too simple
2. Create a ne ...
Posted by novicephp on Fri, 20 Dec 2019 09:15:18 -0800
Reactor rabbitmq
order
This article focuses on how to use reactor rabbitmq
maven
<dependency>
<groupId>io.projectreactor.rabbitmq</groupId>
<artifactId>reactor-rabbitmq</artifactId>
<version>1.0.0.M2</version>
</dependency>
rabbitmq
Reference resources docker b ...
Posted by djBuilder on Fri, 20 Dec 2019 08:28:41 -0800
Spring Cloud Micro Services: Service Registration and Discovery
Eureka is Netflix's open source service registration and discovery component.
Common Service Registration and Discovery Components
Zookeeper,Eureka
Eureka Service Registration and Discovery Principles
Services are registered with the registry
Get additional registry service configurations
Create Eureka Server
Create a project using Spring In ...
Posted by kankersite on Thu, 19 Dec 2019 21:06:38 -0800