[UI interface development] basic component - slide bar
abstract
This article is about the study and summary of UGUI component SliderFor better learning, we will analyze the component from the perspective of "self-made imitation", and finally make a simple Slider as the end.
Basic elements of Slider
As a sliding rod, its main feature is sliding. Therefore, it must have a control tha ...
Posted by ttaceman on Mon, 07 Mar 2022 05:29:37 +0100
Summary of spring MVC learning notes [7] - ajax
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 Google suggest. Go ...
Posted by joeywoodbury on Sat, 05 Mar 2022 09:28:39 +0100
01spring MVC brief introduction and use
01spring MVC brief introduction and use
1. What is MVC?
MVC is the abbreviation of model, view and controller. It is a software design specification. It is to organize code by separating business logic, data and display. The main function of MVC is to reduce the two-way coupling between view and business logic. MVC is not a design pattern, MV ...
Posted by shams on Sun, 27 Feb 2022 15:47:43 +0100
@ModelAttribute and @ SessionAttributes and @ SessionAttribute and @ RequestAttribute
1, @ ModelAttribute
usage
Bind request parameters to command object (input parameter object): when placed on the input parameter of the controller method, it is used to bind multiple request parameters to a command object, so as to simplify the binding process, and is automatically exposed as model data for use in view page display; When t ...
Posted by everurssantosh on Thu, 24 Feb 2022 18:59:42 +0100
Detailed explanation of web layer filter in mvc
web layer
Filter
Three technologies involved in the Web core Servlet: server applet small program on the server side (mainly dealing with the part of request response) Filter: filter, filter: leave the content you need and eliminate the unwanted content Listener: listener
summary
Need to configure web XML (key)
filter creation steps
Cre ...
Posted by patnet2004 on Wed, 23 Feb 2022 11:22:40 +0100
Spring MVC learning - Introduction and initial page construction
1, Introduction to spring MVC
1. What is MVC
MVC is an idea of software architecture, which divides software according to model, view and controller
M: Model, the model layer, refers to the JavaBean in the project, which is used to process data
JavaBean s fall into two categories:
One is called entity Bean: it is used to store business dat ...
Posted by travelerBT on Sat, 19 Feb 2022 19:21:14 +0100
Common annotations and usage in spring MVC
Common annotations and usage in spring MVC
Introduction to MVC
Introduction to spring MVC
Common annotations in spring MVC
@GetMapping
@RequestParam
@RequestBody
@PathVariable
@RequestHeader
@CookieValue
@ModelAttribute
@SessionAttributes
New annotation
@Difference between RequestMapping and @ GetMapping @PostMapping
I ...
Posted by d1223m on Fri, 18 Feb 2022 00:55:33 +0100
35 spring MVC (Introduction to ssm and microservices, temporary)
1. Spring MVC overview
1.1 spring MVC concept
Spring MVC is also called Spring web mvc. Spring is a built-in MVC framework in spring 3 Publish after 0. Spring MVC framework solves the common problems in WEB Development (parameter receiving, file uploading, form verification, etc.), and it is simple to use and has nothing to do with spring Sea ...
Posted by shelbytll on Mon, 14 Feb 2022 02:43:06 +0100
Spring mvc02: the first MVC program
Configuration version
1. Create a new Moudle, springmvc-02-hello, and add web support!
2. Make sure the dependency of spring MVC is imported!
3. Configure web XML, register DispatcherServlet
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema ...
Posted by phbock on Sat, 12 Feb 2022 07:15:53 +0100
Spring MVC workflow from the perspective of source code
Spring MVC workflow from the perspective of source code
1.1 build a source code debugging environment for gradle
1) Build gradle environment 4 steps 1,File-New-Module Select java and web
2. Fill in package information 3. Storage path
2) Increase start dependence The dependent items can be directly copied and pasted 1. Dependence on s ...
Posted by iSpeedDevil! on Sat, 29 Jan 2022 09:19:30 +0100