spring boot
丰丰丰的csdn
生活没有一劳永逸,想要不被抛弃,必须自己争气。
展开
-
SpringBoot整合Mybatis配置pagehelper分页插件
引入pagehelper依赖<!--pagehelper分页插件 --> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <v...原创 2020-02-13 11:33:39 · 613 阅读 · 0 评论 -
SpringBoot整合Redis模板
springboot对RedisTemplate的自动配置自动配置类RedisAutoConfiguration 源码:@Configuration@ConditionalOnClass(RedisOperations.class)@EnableConfigurationProperties(RedisProperties.class)@Import({ LettuceConnectio...原创 2020-02-08 11:00:03 · 239 阅读 · 0 评论 -
springboot自定义时间类型转换器
需求分析由于日期数据有很多种格式,所以springboot没办法把字符串转换成日期类型。所以需要自定义参数绑定。前端控制器接收到请求后,找到注解形式的处理器适配器,对RequestMapping标记的方法进行适配,并对方法中的形参进行参数绑定。在springmvc这可以在处理器适配器上自定义Converter进行参数绑定。自定义类StringToDateConverter 实现转换器Conve...原创 2020-02-08 10:35:42 · 1408 阅读 · 0 评论