Basic use of ElasticSearchLogstash
The second week, today we will talk about the use of Logstash.
First, we open ES, use postman to create a new index user, and use PUT mode in postman to send requests to localhost:9200/user. See the return information:
{
"acknowledged": true,
"shards_acknowledged": true,
"index": "user"
}
This indicates that the index was est ...
Posted by MisterWebz on Sun, 15 Mar 2020 02:19:24 -0700
The fastest building steps in the history of ssm
Details of SSM development process
SSM execution flow chart:
Step 1: create database, create table statement, use mysql database, Navicat for MySQL visual database management tool.
Step 2: create Maven web project structure and use IDEA development tools for development.
Step 3: create a project direc ...
Posted by AbeFroman on Thu, 12 Mar 2020 01:57:45 -0700
[JaveEE learning paste 1] Based on Mysql, Servlet and JSP, write student's homework management system (including login interface)
The full code has been uploaded to Github: https://github.com/Shadow1300/JavaEE
It will also be listed at the end of the article.
1, First of all, understand the operation requirements
We first need to analyze the requirements:1) Users: teachers and students2) Functions: add homework, add students, q ...
Posted by garethj on Thu, 12 Mar 2020 00:32:47 -0700
Getting started with Quartz
1, About Quartz
1.quartz is an open source and rich "task scheduling library", which can be integrated into any java application.
2.quartz is mainly divided into three components: task Job, Trigger trigger and Scheduler.
quartz architecture:
2, Introduction to the three components ...
Posted by php2MySQL on Wed, 11 Mar 2020 23:47:17 -0700
Basic steps for JPA to access database
Basic steps for JPA to access database:
1. Define the Table in the Entity class mapping database. The key is @ Entity, @ Table annotation Entity class, @ Entity annotation marks the Entity class of JPA, @ Table annotation indicates which Table in the database corresponds to the Entity class. @The Id a ...
Posted by maxrisc on Mon, 09 Mar 2020 02:59:29 -0700
Record a Connection has already been closed troubleshooting
cause
A field of online data is empty, which is calculated by running and saving (low voice force: using saved data is really unfriendly).
process
View stored procedure logic
Call the stored value through parameter test to check whether there is return value. There is no problem with the stored val ...
Posted by kaspari22 on Sun, 08 Mar 2020 21:41:25 -0700
Practice of distributed timed task scheduling framework
This article starts with WeChat official account of vivo Internet technology.Links: https://mp.weixin.qq.com/s/l4vuYpNRjKxQRkRTDhyg2QAuthor: Chen wangrong
Distributed task scheduling framework is almost a necessary tool for every large-scale application. This paper introduces the demand background and pain points of the use of task schedu ...
Posted by Wldrumstcs on Sun, 08 Mar 2020 20:32:21 -0700
Initialization of MyBatis source code analysis
Mybatis source code analysis I (initialization process)
Recently, I learned the source part of mybatis. Now I am going to record my understanding process while learning. This article mainly records the initial process of mybatis, mainly including the following points:
1. What did initialization do
2. How to parse the parameters of mybatis-confi ...
Posted by cosmo7 on Sat, 07 Mar 2020 19:37:44 -0800
Getting started with Java - advanced tutorial - 01. Data structure
Original address: http://www.work100.net/training/java-data-structure.htmlMore tutorials: Beam cloud - free course
data structure
Serial number
Chapter in text
video
1
Summary
-
2
enumeration
-
3
vector
-
4
Stack
-
5
Dictionaries
-
6
Hashtable
-
7
attribute
-
Please refer to the navigation above for reading
1. overview
The ...
Posted by jerry_louise on Sat, 07 Mar 2020 16:13:28 -0800
MySQL 5.7 common commands
1. Connect mysql
Connect this machine
mysql -u root -p
Connecting to a remote host
mysql -h 192.168.1.128 -u root -p
Sign out
exit;
2. Change password
Format: alter user user name @ host address identified by 'new password';
Change the root password to newroot
alter user root@local identified by 'newroot';
View user host add ...
Posted by BlueSkyIS on Sun, 01 Mar 2020 05:05:06 -0800