摘要: 序列化字符串后,值变成了"2018-02-05T00:00:00" 序列化时候 需要更改一下日期转换方式: IsoDateTimeConverter timeConverter = new IsoDateTimeConverter { DateTimeFormat = "yyyy-MM-dd HH: 阅读全文
posted @ 2019-09-11 11:33 Fernando_Y 阅读(1378) 评论(0) 推荐(0) 编辑
摘要: 使用FeignClient发送HTTP请求1.添加依赖<!-- spring cloud jar--><dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix- 阅读全文
posted @ 2019-08-25 22:28 Fernando_Y 阅读(5468) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qmdweb/article/details/81564761 阅读全文
posted @ 2019-08-22 15:39 Fernando_Y 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 阿 阅读全文
posted @ 2019-08-22 15:38 Fernando_Y 阅读(814) 评论(1) 推荐(1) 编辑
摘要: 原文:WPF中使用DataGrid时操作列按钮问题 <DataGrid x:Name="datagrid" AutoGenerateColumns="False" ScrollViewer.HorizontalScrollBarVisibility="Hidden" SizeChanged="dat 阅读全文
posted @ 2019-08-15 11:35 Fernando_Y 阅读(6053) 评论(0) 推荐(2) 编辑
摘要: 1,加入lib包中,在pom中添加 阅读全文
posted @ 2019-08-14 09:55 Fernando_Y 阅读(627) 评论(0) 推荐(0) 编辑
摘要: Linux防火墙操作(经测试部分命令无效) 关闭防火墙:service iptables stop 开启防火墙:service iptables start 防火墙状态:service iptables status 永久关闭:chkconfig iptables off 永久开启:chkconfi 阅读全文
posted @ 2019-08-12 14:45 Fernando_Y 阅读(76906) 评论(3) 推荐(3) 编辑
摘要: 在pom中添加<dependency> <groupId>com.sim</groupId> <artifactId>SM-1.60</artifactId> <version>1.60</version> <scope>system</scope> <systemPath>${project.ba 阅读全文
posted @ 2019-08-02 18:01 Fernando_Y 阅读(2494) 评论(0) 推荐(0) 编辑
摘要: 1.创建用户 create user 'name'@'host' identified by 'psssword'; 2.授权 grant select, updata,insert (all) on database.table to 'username'@'host'; 3.查询权限 show 阅读全文
posted @ 2019-07-31 14:32 Fernando_Y 阅读(238) 评论(0) 推荐(0) 编辑
摘要: SpringBoot注解大全 一、注解(annotations)列表 @SpringBootApplication:包含了@ComponentScan、@Configuration和@EnableAutoConfiguration注解。其中@ComponentScan让spring Boot扫描到C 阅读全文
posted @ 2019-07-24 11:25 Fernando_Y 阅读(801) 评论(0) 推荐(0) 编辑