JAVAEE - The first day of Spring MVC: Introduction, introductory procedures, architecture, Spring MVC integration MyBatis, parameter binding, Spring MVC and Struts2 differences
1. Learning plan
First day
1. Introduction to Spring MVC
2. Initial Procedures
3. Explanation of Spring MVC Architecture
a) Frame structure
b) Component description
4. Spring MVC Integrates MyBatis
5. Parameter binding
a) Types of Spring MVC default support
b) Simple data types
c) Pojo type
d) Pojo packaging type
e) Custom parameter binding
6. ...
Posted by killswitchfilter on Wed, 26 Dec 2018 09:39:07 -0800
JSP action label useBean - < jsp: useBean > create an object
This label is the most important label in my opinion.
Firstly, the characteristics of Java Bean are introduced.
It can be used on any machine with JVM without recompiling.
1. Write rules for JavaBean s:
(1) If the name of the member variable of a class is xxx, two methods can be defined in the class to change or obtain the value of the m ...
Posted by Roble on Mon, 24 Dec 2018 23:33:06 -0800
Implementation of session server by Nginx reverse proxy + Tomcat+memcached
Written in frontThe previous article explained the type of session for you. Today, this article will lead you to implement a simple session server step by step, mainly to let you understand the working process of session server. Of course, for small and medium-sized websites, this structure is also fully adequate. The main structure of this sec ...
Posted by Svoboda on Sun, 23 Dec 2018 15:09:07 -0800
Day20-jsp & el & jstl
EL expression
${EL expression}
EL (Express Lanuage) expressions can be embedded in jsp pages to reduce the writing of jsp scripts. The purpose of EL is to replace the writing of scripts in jsp pages.
Expression language Expressions Language, borrowing js, jquery grammar
Effect:
1) Simplify the code in jsp, mainly to replace the JSP s ...
Posted by swasheck on Thu, 20 Dec 2018 18:12:05 -0800
SPRINGMYBATIS01 Unit03: Introduction to Spring Web MVC, MVC Application Based on XML Configuration, MVC Application Based on Annotation Configuration
(7)spring expression
Note: Read the properties of bean s
1. Use annotations to simplify configuration files
(1) What is component scanning?
The container scans the specified package and all of its subpackages
Class, if there are specific annotations in front of it, such as @Component,
Then the container will incorporate it into the ...
Posted by dan231 on Tue, 18 Dec 2018 14:51:04 -0800
Ext.MessageBox Learning, including the usage of alert, confirm, prompt, wait and show
1: Basic knowledge
Note that the MessageBox is asynchronous. Unlike a regular JavaScript alert (which
will halt browser execution), showing a MessageBox will not cause the code to stop. For this reason, if you have code that should only run after some user feedback from the MessageBox, you must use a callback function (see the functionpa ...
Posted by gnunoob on Thu, 13 Dec 2018 13:33:19 -0800
Java Web Article Management System (Jsp+Ajax+JDBC+MySql Implementation)
This example implements a simple article management system (news management system) using Java Web technology. Its main functions are as follows:
User and Administrator Logon
Users publish new articles, view details of articles, modify articles, delete and restore articles
Users view articles authorized by others and their information
Users a ...
Posted by ball420 on Wed, 12 Dec 2018 08:18:06 -0800
Asp.Net Web API 2 Lesson 4: HttpClient Message Processor
Share: I have several Aliyun coupons, which can offer up to 50% discount for purchasing or upgrading Aliyun's corresponding products. Ticket address: https://promotion.aliyun.com/ntms/act/ambassador/sharetouser.html?userCode=ohmepe03
Asp.Net Web API Navigation
Asp.Net Web API Lesson 1: Introduction http://www.cnblogs.com/aehyok/p/3432158.html
...
Posted by CanMan2004 on Tue, 11 Dec 2018 12:03:06 -0800
Based on SSH Framework-CRM Customer Resource Management System-Simple Small Project Development Record-CRM System-03
I. Editorial staff and the echo of basic information
@Override
public CrmStaff findById(String staffId) {
// TODO Auto-generated method stub
CrmStaff findStaff = this.getHibernateTemplate().get(CrmStaff.class,staffId);
return findStaff;
}
//Inquiring employees according to id
@Override
public CrmStaff findById(String staffId) {
...
Posted by Hardwarez on Mon, 10 Dec 2018 20:03:09 -0800