SpringBoot默认上传文件大小不能超过1MB,超过之后会报以下异常:org.apache.tomcat.util.http.fileupload.FileUploadBase$FileSizeLimitExceededException: The field file exceeds its maximum permitted size of 1048576 bytes. 解决方法:请在配置文件(application.properties/application.yml)中加入如下设置即
配置springboot日志,输出级别为info,运行时报错: Caused by: org.springframework.boot.context.properties.bind.BindException: Failed to bind properties under 'logging.level' to java.util.Map<java.lang.String, java.lang.String> at org.springframework.boot.context.prope
因工作需要,mysql连接需要开启ssl认证,本文主要讲述客户端如何配置ssl连接. 开发环境信息: SpringBoot: 2.0.5.RELEASE mysql-connector-java: 8.0.18 mysql version:8.0.18 一.检查服务端是否开启ssl认证 show variables like '%ssl%'; 二.确认用户强制使用ssl认证 1.检查用户是否启动ssl认证 use mysql; select ssl_type from user where us
"If you're gonna play the game, boy, ya gotta learn to play it right" Spring Boot 使用事务非常简单,首先使用注解 @EnableTransactionManagement 开启事务支持后,然后在访问数据库的Service方法上添加注解 @Transactional 便可.(在下文中会有图例) 关于事务管理器,不管是JPA还是JDBC等都实现自接口 PlatformTransactionManager 如果