Introduction to SpringBoot + multi framework integration
1 Overview
1.1 INTRODUCTION
Spring Boot is a new framework provided by the Pivotal team. It is designed based on spring 4.0, which simplifies the whole process of building and developing spring applications, and makes developers no longer need to define template configurations
In short, it helps devel ...
Posted by mayfair on Thu, 16 Jan 2020 09:11:22 +0100
Propagation mode in database transaction
Promotion "required: if there is no transaction at present, a new transaction will be created. If there is a transaction at present, the transaction will be added. This setting is the most commonly used setting.
Promotion_supports: supports the current transaction. If there is a transaction, jo ...
Posted by hailam on Wed, 15 Jan 2020 13:26:19 +0100
SSM framework building tutorial project creation
The first time I wrote back-end, I went online to find many tutorials, but I didn't find many details. I found a lot of holes when I did it myself. I filled in the process of building the holes I met. As long as I followed the tutorial, you can build a complete ssm framework
Title first create project ...
Posted by blr32 on Wed, 15 Jan 2020 03:36:11 +0100
Ribbon load balancing of spring cloud and Feign consumer call service
Article directory
1. Microservice calls Ribbon
brief introduction
Preliminary application
2. Ribbon load balancing
3. Feign introduction and Application
brief introduction
application
1. Microservice calls Ribbon
brief introduction
We have learned about eureka service registration and disc ...
Posted by NoDoze on Sat, 11 Jan 2020 11:25:19 +0100
ABCD custom entrypoint
order
This paper focuses on the use of jib custom entrypoint
maven
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>0.9.10</version>
<configuration>
<container>
<ports>
<port>8080</port&g ...
Posted by Adrianphp on Mon, 06 Jan 2020 01:09:57 +0100
JAVAEE - yicube mall 14: project deployment planning, Tomcat hot deployment, reverse agent configuration
1. Learning plan
1. System deployment
2. Project deployment
2.1. Explanation of project structure
2.2. network topology
2.3. System deployment
2.3.1. Deployment Analysis
e3-manager
e3-manager-web
e3-portal-web
e3-content
e3-search
e3-search-web
e3-item-web
e3-sso
e3-sso-web
e3-cart-web
e3-order
e3-order-web
A total of 4 ...
Posted by tbeinc on Sun, 05 Jan 2020 06:10:16 +0100
Installation and use of Jenkins
What is Jenkins?
Similar to Travis CI, it is simply an online code building platform
Official website
https://jenkins.io/
install
The server
Service provider: Tencent cloud
System: CentOS 6.8 64bit
CPU: 1 core 1G
Memory: 2G
Hard disk: 50G
Environmental configuration
In this article, I mainly configur ...
Posted by MishaPappa on Thu, 02 Jan 2020 12:29:43 +0100
IJKPlayer playing video
Operation effect
Supporting video:
http://toutiao.com/item/6431719005085499906/
Using steps
1. Add the following code to build.gradle of the project (as shown below)
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
2. Add dependency in the Module' ...
Posted by mkosmosports on Thu, 02 Jan 2020 11:47:58 +0100
Maven project combines POI to realize import import import import import Excl form Demo - pro test available
Step 1: write maven dependency (3.6 is a stable version, which can be used in production environment)
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version&g ...
Posted by YourNameHere on Tue, 31 Dec 2019 19:08:16 +0100
Java implementation of Chinese word frequency statistics
Yesterday, there was a demand for Chinese word frequency statistics. After Baidu's visit, it found a lot of party articles with titles, which were seriously inconsistent with the content. Here is a simple record of its own implementation process!
Different from the word frequency statistics of English words, the difficulty of Chinese lies i ...
Posted by markjia on Mon, 30 Dec 2019 16:59:07 +0100