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
-
-
Element Detail
-
value
String value
Returns the parameter name.- Returns:
- the parameter name
-
-