Package org.apache.ibatis.annotations
Annotation Type Insert
The annotation that specify an SQL for inserting record(s).
How to use:
public interface UserMapper { @Insert("INSERT INTO users (id, name) VALUES(#{id}, #{name})") void insert(User user); }
- Author:
- Clinton Begin
-
Nested Class Summary
Nested Classes -
Required Element Summary
Required Elements -
Optional Element Summary
Optional Elements