RequestMapping class
Annotation for mapping web requests onto specific handler classes and/or handler methods. Provides a consistent style between the different environments, with the semantics adapting to the concrete environment.
Look at the following example, how you can use this:
@RequestMapping(value: "/someurl", method: "GET") void index(ForceRequest req, Model model)
Constructors
- RequestMapping({String value = "", String method = "GET"})
-
const
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toString(
) → String -
A string representation of this object. [...]
override
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited