摘要:
一、字符串类型 类型 范围 说明 Char(N) [ binary] N=1~255 个字节binary :分辨大小写 固定长度 std_name cahr(32) not null VarChar(N) [binary] N=1~255 个字节binary :分辨大小写 可变长度 std_addr 阅读全文
摘要:
今天创建mysql表时,遇到了[Err] 1118 - Row size too large的问题,sql如下:drop table if exists Orders;create table Orders( orderNo varchar(50) not null comment '订单号', i 阅读全文
摘要:
@PropertySource只对properties文件可以进行加载,但对于yml或者yaml不能支持。追寻源码。 public class DefaultPropertySourceFactory implements PropertySourceFactory { public Default 阅读全文
摘要:
这几天在学习springboot的微服务项目,在配置文件方面也想尝试下新的yml配置,就想把原来项目properties写的文件转换成yml试一下(老项目是之前检出在了Myeclipse里面),结果写好了yml配置文件,项目启动时候报了如下错误: Exception in thread "main" 阅读全文