jsp built-in object learning
request object
request object is mainly used to receive data transmitted from client to server through HTTP protocol link.
The main method of request is to deal with the parameters and options in the request submitted by the client browser.
Partial methods:
object getAttribute(String name) //Returns ...
Added by Perry Mason on Sat, 10 Aug 2019 13:36:11 +0300
WPF Resource Dictionary
In WPF applications, XAML resources are divided into Static Resources (static resources) and Dynamic Resources (dynamic resources). XAML resources can be divided into Framework Element. Resources and Application.Resources. Framework Element. Resources is the application of resource objects to different ...
Added by digitalecartoons on Wed, 07 Aug 2019 16:18:22 +0300
mybatis framework learning-traditional dao layer development
Preface
mybatis officially recommends using the mapper proxy method to develop the mapper interface. Programmers do not need to write mapper interface implementation classes.
When using the mapper proxy method, the input parameters can use pojo wrapper object or map object to ensure the universality of dao.
Traditional dao layer development ...
Added by xzilla on Mon, 05 Aug 2019 21:52:01 +0300
Climbing the School's Official Website to Achieve Achievements
Crawler Actual Warfare (1) -- Crawling Square System
Preface
Use tools and third-party libraries
Login page simulation
Get the post parameter at logon time
Verification Code Processing
Analysis of Achievement Climbing
Preface
Some time ago, I participated in the software cup competition, and f ...
Added by The Little Guy on Mon, 05 Aug 2019 08:37:24 +0300
security.php Source Analysis of OSSIM
Next, we begin to analyze the security.php source code, which is an important file of event in the dashboard sub-module.
// Referencing files, initializing function libraries
require_once 'av_init.php';
require_once 'sensor_filter.php';
require_once '../widget_common.php';
require_once 'common.php';
// Check if you have permission to ac ...
Added by kaukab on Sun, 04 Aug 2019 13:25:58 +0300
Forbid Cookie to use Session, Rewrite URL, Specific Solution
Let's first describe the implementation principle of session.
session server provides a memory area for each client to access, which can store some operation information of some clients.
Normally, sessions survive during the process of users accessing the server through the client until the client ...
Added by daijames on Sun, 04 Aug 2019 11:14:21 +0300
Two Ways to Save and Load Tensorflow Model
Two Methods of Preserving and Loading TensorFlow Model
1.saver.save/saver.restore:
The model saved by this method has four files:
Where model.ckpt is the name of the model
1.checkpoint text file, record path information of model file
2.model.ckpt.data-00000- ...
Added by NoSalt on Fri, 02 Aug 2019 14:26:24 +0300
Hibernate Learning Notes 7 (Configuration and Operation of One-to-Many Relations)
Relationships between database tables and tables
This one was written in mysql, and here it is written again at https://blog.csdn.net/qq_40817827/article/details/90637303.
One-to-many relationship
What kind of relationship belongs to one-to-many?
A Department corresponds to multiple employees, and ...
Added by griffith on Fri, 02 Aug 2019 06:30:39 +0300
MySQL Processlist -- View the SQL status of session execution
For MySQL version 5.7, you can use the sys.session view to view the last SQL executed by the session:
SELECT *
FROM sys.session
WHERE CONN_ID = 20036 \G
The sys.session view is associated with sys.processlist, and sys.processlist uses `performance_schema'. `events_statements_current'.
If you want to query the SQL situation that a ses ...
Added by titeroy on Wed, 31 Jul 2019 03:35:29 +0300
myBatis: sql execution process
Reprinted from the excellent articles of Nanke Meng Brothers: https://www.cnblogs.com/dongying/p/4142476.html
1. SqlSession Factory and SqlSession.
Through the introduction and use of mybatis in the previous chapters, we can all appreciate the importance of SqlSession. Yes, on the surface, we all u ...
Added by Otoom on Tue, 30 Jul 2019 12:54:38 +0300