摘要:
序列化字符串后,值变成了"2018-02-05T00:00:00" 序列化时候 需要更改一下日期转换方式: IsoDateTimeConverter timeConverter = new IsoDateTimeConverter { DateTimeFormat = "yyyy-MM-dd HH: 阅读全文
摘要:
使用FeignClient发送HTTP请求1.添加依赖<!-- spring cloud jar--><dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix- 阅读全文
摘要:
原文:WPF中使用DataGrid时操作列按钮问题 <DataGrid x:Name="datagrid" AutoGenerateColumns="False" ScrollViewer.HorizontalScrollBarVisibility="Hidden" SizeChanged="dat 阅读全文
摘要:
1,加入lib包中,在pom中添加 阅读全文
摘要:
Linux防火墙操作(经测试部分命令无效) 关闭防火墙:service iptables stop 开启防火墙:service iptables start 防火墙状态:service iptables status 永久关闭:chkconfig iptables off 永久开启:chkconfi 阅读全文
摘要:
在pom中添加<dependency> <groupId>com.sim</groupId> <artifactId>SM-1.60</artifactId> <version>1.60</version> <scope>system</scope> <systemPath>${project.ba 阅读全文
摘要:
1.创建用户 create user 'name'@'host' identified by 'psssword'; 2.授权 grant select, updata,insert (all) on database.table to 'username'@'host'; 3.查询权限 show 阅读全文
摘要:
SpringBoot注解大全 一、注解(annotations)列表 @SpringBootApplication:包含了@ComponentScan、@Configuration和@EnableAutoConfiguration注解。其中@ComponentScan让spring Boot扫描到C 阅读全文