Several ways to deploy various projects with tomcat + nginx
Several ways to deploy various projects with tomcat + nginx
Background introduction
Skills list (multi-project deployment)
Multiple tomcat environment variable configurations and common part modifications
Deploy the zip package using tomcat + nginx.Custom Deployment Directory
Deploy the war package ...
Added by kataras on Tue, 14 Jan 2020 03:36:06 +0200
Active MQ learning Broker
I. concept
Equivalent to an ActiveMQ service instance
Broker actually starts ActiveMQ in the form of code, embeds MQ into java code, so that it can be started at any time. When it is used, it can save resources and ensure reliability.
2, Start ActiveMQ according to different configuration files
1. First copy and rename activemq.xml in the ...
Added by rami103 on Fri, 10 Jan 2020 21:00:53 +0200
Mybatis framework 7: integrating Spring in three ways
Required jar package:
Create a new lib folder and put it into the jar package. After build path -- > add to build path:
Original Dao development example:
Under src: create a new core configuration file sqlMapConfig.xml:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
...
Added by rowman on Fri, 10 Jan 2020 19:49:24 +0200
Call another Activity in Android and return the result - take the analog selection avatar function as an example
scene
Click the button in Android to start another Activity and transfer values between activities:
https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/103919470
How to get the return value of Acitvity after launching Activity and Value Transfer above.The following example implements clicking the Select Avatar button, jumping to the avata ...
Added by urneegrux on Fri, 10 Jan 2020 06:57:03 +0200
Excerpt of wechat payment refund exception
Wechat payment refund API address: https://pay.weixin.qq.com/wiki/doc/api/app/app.php?chapter=9_4&index=6
Precautions:
Total fee: must be the payment amount of the order, unit: minute;
Refund fee: less than the order payment amount, unit: minute;
Multiple refunds can be initiated for the same order, and the out \;
Use a merchant re ...
Added by Daguse on Mon, 06 Jan 2020 21:58:48 +0200
mybatis takes notes
mybatis integration springboot
Guide Pack
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql ...
Added by merkinmuffley on Mon, 06 Jan 2020 19:01:03 +0200
Setup of sping MVC timer task
Timed tasks are used in the project. Write a note to record with your notes.
First add the beans tag to the Spring configuration file ApplicationContext.xml file
xmlns:task="http://www.springframework.org/schema/task"
http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task-4.1.xsd
Currently, there ar ...
Added by reddevil on Mon, 06 Jan 2020 18:25:06 +0200
Content provider of Android learning notes (1)
Content provider (1)
Next, we will introduce the content resolver, one of the four components of Android
The content provider is the external access interface provided by Android internal program, which can share data.
Requirements: obtain the address book information through the content provider, and display it in your own ...
Added by jackohara on Mon, 06 Jan 2020 17:47:28 +0200
System adaptation of Android heterogeneous models: the app name defined by application is not consistent with the name displayed on the desktop after it is installed on the mobile phone
System adaptation of Android heterogeneous models: the app name defined by application is not consistent with the name displayed on the desktop after it is installed on the mobile phone
This kind of situation will appear on some domestic bizarre customized Android models. Normally, the name of the android App displayed under t ...
Added by j007w on Mon, 06 Jan 2020 03:26:57 +0200
QR code generation and scanning
We've seen QR code before. There's no nonsense here. We'll go to dry goods directly.
step
Import dependency
compile 'com.google.zxing:core:3.2.1' //zxing core dependency
compile 'com.journeyapps:zxing-android-embedded:3.3.0' //Generate QR code dependency
1
2
Generate QR code
Here, a ZxingUtils is encapsu ...
Added by mpunn on Sun, 05 Jan 2020 23:42:42 +0200