8、使用注解开发

8.2、使用注解开发

  1. 注解在接口上实现

    @Select("select * from user")
    List<User> getUsers();
  2. 需要再核心配置文件中绑定接口

    <!--    绑定接口-->
        <mappers>
            <mapper class="com.yiyu.dao.UserMapper"/>
        </mappers>
  3. 测试

本质:反射机制实现

底层:动态代理

image-20220130140924421

Mybatis详细的执行流程!

image-20220402212353117

8.3、CRUD

我们可以在工具类创建的时候实现自动提交事务

public static SqlSession getSqlSession(){
    return sqlSessionFactory.openSession(true);
}

编写接口,增加注解

public interface UserMapper {
    @Select("select * from user")
    List<User> getUsers();
    
    //方法存在多个参数,所有的参数前面必须加上:@Param("id")注解
    @Select("select * from user where id=#{id}")
    User getUserById(@Param("id") int id);
    
    @Insert("insert into user(id,name,pwd) values(#{id},#{name},#{pwd})")
    int addUser(User user);
    
    @Delete("delete from user where id=#{id}")
    int deleteUser(@Param("id") int id);
    
    @Update("update user set name=#{name},pwd=#{pwd} where id=#{id}")
    int update(User user);
    
}

测试类

【注意:我们必须要将接口注册绑定到我们的核心配置文件中】

关于@Param() 注解

  • 基本类型的参数或者String类型,需要加上
  • 引用类型不需要加
  • 如果只有一个基本类型的话,可以忽略,但是建议大家都加上!
  • 我们在SQL中引用的就是我们这里的@Param()中设定的属性名!

9、LomBok

Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java.
Never write another getter or equals method again, with one annotation your class has a fully featured builder,
Automate your logging variables, and much more.
  • java library
  • plugs
  • build tools
  • with one annotation your class

使用步骤:

  1. 在IDEA中安装Lombox插件
  2. 在项目中导入lombok的jar包

    <dependency>
        <groupId>org.projectlombok</groupId>
        <artifactId>lombok</artifactId>
        <version>1.18.22</version>
    </dependency>
  3. 在实体类上加注解即可!

    @Data
    @AllArgsConstructor
    @NoArgsConstructor
@Getter and @Setter
@FieldNameConstants
@ToString
@EqualsAndHashCode
@AllArgsConstructor, @RequiredArgsConstructor and @NoArgsConstructor
@Log, @Log4j, @Log4j2, @Slf4j, @XSlf4j, @CommonsLog, @JBossLog, @Flogger, @CustomLog
@Data
@Builder
@SuperBuilder
@Singular
@Delegate
@Value
@Accessors
@Wither
@With
@SneakyThrows
@val
@var

说明:

@Data:无参构造,get、set、tostring、hashcode,equals
@FieldNameConstants
@ToString
@EqualsAndHashCode
@AllArgsConstructor, @RequiredArgsConstructor and @NoArgsConstructor
最后修改:2023 年 01 月 31 日
如果觉得我的文章对你有用,请随意赞赏