API Data Encryption Framework monkey-api-encrypt
I've written an encrypted article before. How to Ensure Data Security by Front-end and Back-end API Interaction . It is mainly about how to automatically encrypt and decrypt the interface data in Spring Book, and specify whether encrypt and decrypt is needed by annotation.
The principle is simple, too. Request Body Advice and Response Body Adv ...
Posted by pendelton on Sun, 19 May 2019 03:58:42 -0700
Automatic Packaging and Publishing of Code by Jenkins+Maven+Svn
Install jdk, tomcat environment
[root@centos6 ~]# tar zxf jdk-8u111-linux-x64.tar.gz -C /usr/local/
[root@centos6 ~]# tar zxf apache-tomcat-8.5.9.tar.gz -C /usr/local/
[root@centos6 local]# export JAVA_HOME=/usr/local/jdk1.8.0_111
[root@centos6 local]# export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
[ ...
Posted by expl0it on Sat, 18 May 2019 21:15:49 -0700
Summary of GreenDao Database Learning
This article refers to the simple use of A Dui's Green Dao 3.2 article: https://www.cnblogs.com/wjtaigwh/p/6394288.html
During this period of preparation, I have been preparing some technical points that need to be used in the reconstruction of old projects. One of them is the use of databases. I have consulted releva ...
Posted by hkucsis on Fri, 17 May 2019 08:39:03 -0700
Timed Task-Framework Learning Based on Quartz
Quartz Notes
Recently, I came across a scene where I need to be able to perform tasks at a specified time, such as opening a service at 3 o'clock every Saturday and Sunday. I can't say that I want to list the dates of every Saturday and Sunday in the future for the program to execute. So Baidu found such an open source ...
Posted by everydayrun on Fri, 17 May 2019 01:58:25 -0700
spark-2.4.2.tgz Download and Compile
Does 51CTO have no directory function?Good or bad
========Welcome to Penguin for any questions ^-^1176738641
========
preparation in advance
folders creating
#Create five folders in the user directory
app #Storage application
software #Store application packages
data #Store test data
lib #Store jar pa ...
Posted by xshanelarsonx on Wed, 15 May 2019 08:05:26 -0700
ActiveMQ Message Middleware Brief Note (3) - Spring Integrated JMS Interface
As a native Java-enabled messaging middleware, ActiveMQ, Spring, which interrupts everywhere, also provides a custom solution that inherits the JMS connection ActiveMQ.Based on JMS native interface specification and native implementation, Spring self-encapsulates a set of solutions that can be well integrated into the Spring framework and manag ...
Posted by PHP_mySQL__Newbie on Wed, 15 May 2019 01:44:48 -0700
Elastic search 5.2.2 plug-in development (1)
Address of this article http://blog.csdn.net/makefriend7/article/details/60323717
First put the official address https://www.elastic.co/guide/en/elasticsearch/plugins/5.2/index.html
1. Introduction to Plug-ins
Plug-in, as you know by name, is to insert something on ES to enhance ES's ability.
Here's a brief introduction to th ...
Posted by sweetmaster on Sat, 11 May 2019 13:26:08 -0700
SpringBoot Travel Part 6 - Starting Principles and Custom starter
I. Introduction
One advantage of SpringBoot is Starter, because SpringBoot has many out-of-the-box Starter dependencies that make our development easy, and we don't need to focus too much on the configuration of the framework.
In daily development, we will also customize some Starters, especially now the micro service framework, where a singl ...
Posted by kostasls on Fri, 10 May 2019 15:26:19 -0700
Application of mybatis reverse engineering and paging in spring boot
Recently springboot and mybatis have been applied in the project, and some pits have been encountered in the process of integration. Here, they are sorted out for future reference and review.
The running environment of the project is: eclispe+jdk1.8+maven
Build Spring Boot Environment
Firstly, the maven project is established, and the dependenc ...
Posted by Henks on Fri, 10 May 2019 11:04:44 -0700
maven usage records
maven Practical Tips
Multithreading and Skipping Tests
# Build with four threads and allocate one thread per core based on the number of CPU cores
$ mvn -T 4 clean install
$ mvn -T 1C clean install
-DskipTests # Do not execute the test case, but compile the test case class to generate the corresponding class file under target/ ...
Posted by subnet_rx on Fri, 10 May 2019 05:24:39 -0700