
springboot
寻梦太极
相信技术
展开
-
spring boot 启动jar包
启动spring boot 的 jar包指定配置文件:nohup java -jar eureka.jar > log.file 2>&1 &不指定配置文件nohup java -jar eureka.jar &原创 2021-08-26 11:51:37 · 160 阅读 · 0 评论 -
springboot启动错误:org.springframework.core.annotation.AnnotationUtils.clearCache()V
启动springboot 项目报如下错误:java.lang.NoSuchMethodError: org.springframework.core.annotation.AnnotationUtils.clearCache()V原因为: maven中的 spring-context的版本不一致,存在一个5.2.3 和 5.0.4改为一致即可 <dependency> <groupId>org.springframework</g..原创 2021-02-18 14:48:25 · 808 阅读 · 0 评论 -
gateway报错:ServerCodecConfigurer is that could not be found
gateway启动报错:org.springframework.cloud.gateway.config.GatewayAutoConfiguration required a bean of type 'org.springframework.http.codec.ServerCodecConfigurer' that could not be found将pom.xml中关于spring-boot-start-web模块的jar依赖去掉。错误分析:根据上面描述(Descriptio转载 2020-05-29 13:07:35 · 8123 阅读 · 0 评论 -
spring boot 上传文件时报 The field apkFile exceeds its maximum permitted size of 31457280 bytes.
1、问题:今天在spring boot 上传31M的文件,报下面的错误org.apache.tomcat.util.http.fileupload.FileUploadBase$FileSizeLimitExceededException: The field apkFile exceeds its maximum permitted size of 31457280 bytes. at ...原创 2019-04-02 21:39:14 · 802 阅读 · 0 评论