上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 25 下一页

2020年11月5日

枚举的处理,MybaitsPlus+JackSon

摘要: 通过注解实现枚举的自动转化: import com.baomidou.mybatisplus.annotation.EnumValue; import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson. 阅读全文

posted @ 2020-11-05 17:42 滚动的蛋 阅读(324) 评论(0) 推荐(0)

SpringBoot JackSon全局配置

摘要: package com.nxe.business.bailian.bi.config; import com.fasterxml.jackson.annotation.JsonAutoDetect; import com.fasterxml.jackson.annotation.JsonInclud 阅读全文

posted @ 2020-11-05 17:35 滚动的蛋 阅读(2745) 评论(0) 推荐(1)

2020年10月28日

SQL查询数据库中所有表名

摘要: SELECT table_name,table_type,table_schema FROM information_schema.TABLES WHERE table_schema = 'security_domain' AND table_type = 'BASE TABLE'; NOTE: T 阅读全文

posted @ 2020-10-28 15:11 滚动的蛋 阅读(1465) 评论(0) 推荐(0)

2020年10月21日

Feign url配置/注解

摘要: /** * @author : Yungui.zheng * @version : 1.0 * @Describe : _Client层 * @since : 2020-10-05 20:00:21 */ @FeignClient(name = DemoConstant.BU5_CMS_SERVIC 阅读全文

posted @ 2020-10-21 10:05 滚动的蛋 阅读(3993) 评论(0) 推荐(0)

2020年10月9日

Java 通过url响应图片

摘要: @ApiOperation(value = "海报图片", httpMethod = "GET", response = Poster.class, notes = "query") @RequestMapping(path = "/posterImage", method = RequestMet 阅读全文

posted @ 2020-10-09 14:51 滚动的蛋 阅读(1948) 评论(0) 推荐(0)

2020年9月16日

Java 8 新特性

摘要: @Override public List<String> getUserRoles(String username) { //找到以ROLE_开头的,并且映射为字符串数组 return userDetailsService.loadUserByUsername(username).getAutho 阅读全文

posted @ 2020-09-16 15:23 滚动的蛋 阅读(182) 评论(0) 推荐(0)

编码习惯--日志

摘要: 1、详细的日志打印可以帮助更好的排查问题 @ServiceActivator(inputChannel = "fileChannel") public void processFile(Message<File> message) throws IOException { securityUtil. 阅读全文

posted @ 2020-09-16 11:02 滚动的蛋 阅读(252) 评论(0) 推荐(0)

2020年9月11日

Reflection on《Understanding Media》

摘要: /** The upside and downside of my understanding media * --upside-- * 1、Bring us great convenience,we don't have to do anything,cause there is someone 阅读全文

posted @ 2020-09-11 11:04 滚动的蛋 阅读(150) 评论(0) 推荐(0)

2020年8月31日

MySQL 添加字段和修改字段SQL

摘要: 1、添加字段 alter table `tm_user` Add column is_popup_notice tinyint(1) not null default 0 AFTER `notice_frequency`; 2、修改字段 alter table `tm_user` alter col 阅读全文

posted @ 2020-08-31 16:08 滚动的蛋 阅读(2103) 评论(0) 推荐(0)

2020年8月20日

精读《useEffect 完全指南》 Diff机制和其它解决方法

摘要: move to https://juejin.im/post/6844903806090608647 阅读全文

posted @ 2020-08-20 14:43 滚动的蛋 阅读(367) 评论(0) 推荐(0)

上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 25 下一页

导航