- 博客(8)
- 收藏
- 关注
原创 Mysql char(n)、varchar(n)到底能存多少个中文?text最多能存多少个文字?
只适合MySQL(5.0)以上的版本1.char(n)、varchar(n)对于char(n)、varchar(n):都能存n个中文字符。2.text2.1 text类型大小类型大小tinytext256 bytestext65535 bytes / 64kbmediumtext16777215 bytes / 16MBlongtext4294967295 bytes / 4GB2.2 对于text需要引入编码的概念对于utf-8:一个中文
2022-03-28 17:11:50 4593
原创 记一次 Please set ~application-type=reactive or remove spring-boot-starter-web dependency所引发的系列问题
1.在搭建gateway项目时出现了一个错误 :springBoot版本:2.3.4.RELEASEspringCloud版本:Hoxton.SR122.查看maven依赖发现是由于gateway父工程里面引用了:spring-cloud-starter-netflix-eureka-server包。spring-cloud-starter-netflix-eureka-server包里引用了spring-boot-starter-web导致的。解决:将spring-cloud-starter-
2022-02-21 11:44:00 1496
原创 自定义注解与AOP结合使用与防止接口重复请求
1.自定义注解1.1自定义注解@Target({ElementType.METHOD}) //此注解的作用目标@Retention(RetentionPolicy.RUNTIME) //运行时有效@Documented //标注作用public @interface MyLog { String method() default "";}1.2 使用该注解@RestController@RequestMapping("/myAnnotation")public cla
2022-02-10 18:08:35 461
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人