SpringBoot 备忘

130 阅读1分钟
@RequiredArgsConstructor(onConstructor =@_(@Autowired)) //可以用来替代@Autowired注解,但是所定义的对象需要用final修饰,此注解在lombok中使用

@ConditionalOnProperty // 在spring boot中有时候需要控制配置类是否生效,可以使用@ConditionalOnProperty注解来控制@Configuration是否生效.

整合Mybatis

<!--
    关于MyBatis模糊查询
    1.传参时在变量中加入%
    2.使用'%${user}%'
    3.使用concat('%',#{user},'%')
    4.使用concat('%','${user}','%')
-->