7. Ajax research [notes]
Ajax research
brief introduction
AJAX = Asynchronous JavaScript and XML. AJAX is a technology that can update some web pages without reloading the whole web page. Ajax is not a new programming language, but a technology for creating better, faster and more interactive Web applications. In 2005, Google made AJAX popular through its Goo ...
Posted by umol on Thu, 27 Jan 2022 13:29:41 +0100
SpringMVC Notes: @RequestMapping Notes
Catalog
1. @RequestMapping annotation
1. @RequestMapping annotation function
2. @RequestMapping annotation location
3. @RequestMapping annotation value property
4. @RequestMapping annotation method property
5. @RequestMapping annotation params property (understand)
6. @RequestMapping annotation headers property (understand)
7. SpringMVC ...
Posted by maGGot_H on Tue, 25 Jan 2022 21:19:11 +0100
Spring MVC learning notes 02 ------ the first spring MVC program
In the last section, we explained what spring MVC is and how it works!
SpringMVC learning notes 01 - Introduction to SpringMVC
Now let's take a look at how to quickly use spring MVC to write our program!
Method 1: configuration version
Step 1: create a maven project and introduce the required dependencies
<!-- springMVC Related dependency ...
Posted by injh85 on Tue, 25 Jan 2022 12:52:01 +0100
Spring MVC framework (dispatcher service, request parameter handling, exception handling, interceptor)
Introduction to spring MVC framework
Spring mvc is a web framework based on mvc.Spring MVC has a controller, which is similar to Struts. It is used to receive external requests, parse parameters and pass them to the service layer.MVC is short for Model, View and Controller.The main function of MVC is to reduce the two-way coupling between ...
Posted by Garcia on Tue, 25 Jan 2022 06:09:27 +0100
Java project: design and implementation of luggage deposit management system in scenic spot (java+ssm+springboot)
Main technical implementation: spring, springmvc, springboot, springboot security permission control, mybatis, session, jquery, md5, bootstart JS, tomcat, interceptor, etc.
Main functions: login, user management, role authority management, menu management, department management, luggage cabinet management, user deposit management, record que ...
Posted by MoombaDS on Mon, 24 Jan 2022 11:09:02 +0100
Detailed explanation of spring mybatis configuration items
pom
<!-- Mybatis -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.2.8</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<arti ...
Posted by j7n5u on Mon, 24 Jan 2022 08:58:22 +0100
Spring MVC learning notes - interceptor
Spring MVC learning
Official documents: https://docs.spring.io/spring/docs/current/spring-framework-reference/web.htmlReference video: [crazy God says Java] the latest tutorial of spring MVC, the IDEA version, is easy to understand_ Beep beep beep_ bilibiliProject complete code reference: lexiaoyuan/SpringMVCStudy: My SpringMVC study notes (gi ...
Posted by jbrave on Sun, 23 Jan 2022 09:56:25 +0100
Spring MVC view and how to share data in domain objects
Review the native Servlet to get the request parameters
Get through Servlet API
Take HttpServletRequest as the formal parameter of the controller method. At this time, the parameter of HttpServletRequest type represents the object encapsulating the request message of the current request.
An HTTP request message consists of four p ...
Posted by mjohnson025 on Sun, 23 Jan 2022 08:14:36 +0100
Spring MVC -- 12 cross domain issues
15 cross domain issues
15.1 different domains
As long as there is one difference among protocol, domain name and port, they are called different domains
For example: From http: / moon COM / test to pull the resources corresponding to the following url
URLCross domainhttp:/moon.com/testNot cross domainhttp:/www.moon.com/testCompu ...
Posted by zulfer on Sat, 22 Jan 2022 08:20:49 +0100
Introduction to SpringMvc and related interview questions
1. Spring MVC overview
Spring MVC is a WEB layer and control layer framework, which is mainly used to interact with clients and call business logic. Spring MVC is a major component of the spring family. Spring MVC can achieve seamless integration. Features: easy to use and good performance
2. Advantages of spring MVC over Servlet
a. The deve ...
Posted by The Cat on Thu, 20 Jan 2022 14:52:16 +0100