Package org.apache.ibatis.annotations
Annotation Type Param
-
@Documented @Retention(RUNTIME) @Target(PARAMETER) public @interface Param
The annotation that specify the parameter name.
How to use:public interface UserMapper { @Select("SELECT id, name FROM users WHERE name = #{name}") User selectById(@Param("name") String value); }
- Author:
- Clinton Begin
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.String
value
Returns the parameter name.
-