Web-side Development of Baidu LBS Map

Baidu Map API is available to developers in an open form, completely free of charge, and can be used directly without commercial authorization. This tutorial focuses on the key functions of Baidu Map, such as map display, local search, inverse/geocoding, coverage, city list and so on. 0. Effect map display Introduce to you: Click on ...

Posted by PURU on Fri, 05 Jul 2019 15:32:07 -0700

Spring MVC-Mapping Processor (Part I)

1. Brief Analysis of Mapping Processor In spring mvc, using a mapping processor can map web requests to the correct processor. Spring has many mapping processors built in, and We can also customize the mapping processor. The following examples show two of spring's most commonly used mapping processors: BeanNameUrlHandler Mapping and SimpleU ...

Posted by bigswifty on Thu, 04 Jul 2019 17:01:53 -0700

Introduction to the Foundation of tld Custom Label

Notes on tld tld is the abbreviation of taglib description. Its custom tags are usually used in jsp pages, and tld is usually used in web projects. jstl and c tags are used for validity judgment and permission judgment, which restrict and restrict some front-end page tags. Many people only know this type of tag, but they don't know what it d ...

Posted by Maiku on Wed, 03 Jul 2019 17:45:15 -0700

J2EE Series of Spring MVC Learning Notes (1) --Introduction to Spring MVC

The last blog talked about Spring's integration of Struts 2 and Hibernate (the S2SH framework). The function of Struts 2 in the framework of S2SH is to intercept front-end requests, complete the transfer of values between front-end pages and back-end logic processing codes. Hibernate's function is to complete database operations. Spring's funct ...

Posted by shaunrigby on Mon, 24 Jun 2019 12:28:45 -0700

Spring Boot - Servlet, Filter, Monitor, Interceptor

Spring Boot - Servlet, Filter, Monitor, Interceptor In the last article, we explained how to configure and integrate spring boot (json,jsp,freemarker). What is unclear is that Click to understand Two Implementations of Servlet Manual injection via @BeanImplement a method to return the Servlet Registration Bean and register the object in spring. ...

Posted by printf on Sun, 23 Jun 2019 13:16:57 -0700

Java Web Learning Notes--JSTL Label Library

1. JSTL tag library Core Label Library (Key Points of this Chapter) International Label Library (later) Database Labels (Basically Not Used) XML tags (not used at all) JSTL function (EL function, later) 1.1 < c: out > label The <c:out> tag is used to output a paragraph of text content to the "out" reference curren ...

Posted by yuppicide on Sat, 22 Jun 2019 16:52:54 -0700

Json-lib handling when using frameworks such as ajax or easyui

Whether using a framework such as ajax or easyui, the background output of data to the foreground involves JSON processing. Two processing methods are described here, one is to manually configure the JSON processing method, the other is to use json-lib processing method.The general manual configuration method is rather clumsy, and needs to be c ...

Posted by camoconnell.com on Wed, 19 Jun 2019 09:26:14 -0700

request Object JSP Learning

Author: u014470581 --- Thank you for the original, thank you for the author!! 1. The request object is an important object in JSP. Each request object encapsulates a user request, and all request parameters are encapsulated in the request object, so the request object is an important way to get request parameters. 2. Another request r ...

Posted by tomerg3 on Sat, 15 Jun 2019 10:52:38 -0700

Struts2 Learning: Use of interceptor

For websites that require login validation, privilege validation and other functions, each action writes a piece of validation code for each request, which is redundant and difficult to maintain.Strts2 provides interceptors to provide a facet, or common component, for these pages for easy maintenance and code reuse.There are many default interc ...

Posted by p2003morris on Sat, 08 Jun 2019 10:22:18 -0700

JSTL and EL Expressions

The so-called JSTL is the tag library JSP Standard Tag Library. If you are a java beginner and don't understand those $symbols, it's necessary to know JSTL. If you see <%}%> (Scriptlet) full of eyes and feel bad, you should learn JSTL. Code separation has always been a pursuit of programmers. Framework developers are working hard every da ...

Posted by RHolm on Thu, 06 Jun 2019 10:23:34 -0700