Talk about handleRegularMessage of artemis ClientConsumer
order
This paper mainly studies handleRegularMessage of artemis ClientConsumer
handleRegularMessage
activemq-artemis-2.11.0/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/client/impl/ClientConsumerImpl.java
public final class ClientConsumerImpl implements ClientConsumerInternal {
//......
private final PriorityLinked ...
Posted by wafawj on Sat, 18 Jan 2020 07:50:51 -0800
SpringBoot - web Development
4, Web development
1, introduction
Use SpringBoot;
1) . create a spring boot application and select the modules we need;
2) Spring boot has configured these scenarios by default. You only need to specify a few configurations in the configuration file to run them
3) . write your own business code;
Pr ...
Posted by googlit on Fri, 17 Jan 2020 21:21:44 -0800
IOC container and dependency injection of Laravel
We combed before Laravel inversion of control and dependency injection In this article, we combine the Laravel framework to see how it is implemented.
1. Entry document
<?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylor@laravel.com>
*/
define('LARAVEL_START', ...
Posted by ConcreteDJ on Fri, 17 Jan 2020 06:54:21 -0800
Java uses selenium to crawl the source code of web page and send it by email
1. Project construction: idea + gradle + springboot
build.gradle: introduce selenium related dependency
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
sourceCompatibility = 1.8
group = 'com.boom.basement'
def version = '1.0.0.RELEASE'
de ...
Posted by John_wilson on Thu, 16 Jan 2020 10:09:47 -0800
store (mall project) Springboot+springmvc+ajax+mybatis(11)
44. Receiving address - display list - controller layer
(a) Handling newly created exceptions
nothing
(b) Requests to be processed for design
Request path / addresses/
Request parameter: HttpSession session
Request method: GET
Response result: jsonresult < list < address > >
(c) P ...
Posted by tengkie on Thu, 16 Jan 2020 05:31:01 -0800
EMQ X plug-in persistence series MySQL MQTT data store
In this paper, the actual example in CentOS 7.2 is used to illustrate how to store the relevant MQTT data through MySQL
MySQL is a traditional relational database product. Its open architecture makes users highly selective. With the gradual maturity of technology, MySQL supports more and more functions, ...
Posted by bob on Wed, 15 Jan 2020 01:36:11 -0800
Analysis of Shiro security framework
Shiro function introduction
The following describes the meaning of each function point:
Authentication: authentication / login, to verify whether the user has the corresponding identity;
Authorization: authorization, that is, permission verification, to verify whether an authenticated user has a cert ...
Posted by rednaxel on Tue, 14 Jan 2020 22:12:51 -0800
Source reading of ONNX Runtime: overview of model reasoning process
brief introduction
The ONNX Runtime is an engine for ONNX(Open Neural Network Exchange) model reasoning. Microsoft, together with Facebook and other companies, launched an in-depth learning and machine learning model format standard - ONNX in 2017. Along the way, it provides an engine dedicated to ONN ...
Posted by Replika on Tue, 14 Jan 2020 03:50:57 -0800
Jenkins installation of Linux system
1, background
Why Jenkins?
It's more convenient than writing your own scripts. You don't need to care about the corners. You just need to add core compiled scripts to save developers' attention and energy
You can let the test or project manager who does not understand the relevant development gen ...
Posted by aalmos on Tue, 14 Jan 2020 02:34:50 -0800
01 tensorflow linear regression
Article directory
Preparation
Important concepts
Graph and Session
Computation flow
Data preparation
Prepare the placeholder
Initialization parameters / weights
Calculate forecast results
Calculate loss value
Initialize optimizer
Specify the number of iterations and execute graph in the session
Oper ...
Posted by mapleshilc on Mon, 13 Jan 2020 23:12:46 -0800