Several Ways for Spring to Receive web Request Parameters
1 Query parameter
Request format: url? Parameter 1 = value 1 & parameter 2 = value 2...Suitable for both GET and POSTspring can handle query parameters in several ways:
Method 1:Method parameter name is the request parameter name
// Query parameter 1
@RequestMapping(value = "/test/query1", method = RequestMethod.GET)
public String te ...
Posted by Scud on Sat, 19 Jan 2019 06:24:12 -0800
Pluggable Annotation Processing API
Java Magic - Pluggable Annotation Processing API
Reference material
New feature 6 of JDK6: Pluggable Annotation Processing API
Java Annotation Processing and Creating a Builder
brief introduction
Pluggable Annotation Processing API JSR 269 Provide a standard API to handle Annotations JSR 175 In fact, JSR 269 is not only used to deal with Anno ...
Posted by Dave2711 on Tue, 11 Dec 2018 17:06:06 -0800