SPRING 第2页
Spring Boot通过注解读取配置文件内容的几种方式?-Ddmit

Spring Boot通过注解读取配置文件内容的几种方式?

Spring为我们提供的从配置文件中读取配置信息的方式主要有以下几种。 示例配置文件:application.yml,内容如下: wuhan2020: 2020年初武汉爆发了新型冠状病毒,疫情严重,但是,我相信一切都会...
ddmit的头像-DdmitDdmit4年前
017180
已解决:spring boot报错SizeLimitExceededException-Ddmit

已解决:spring boot报错SizeLimitExceededException

错误 spring boot报错: org.apache.tomcat.util.http.fileupload.FileUploadBase$SizeLimitExceededException: the request was rejected because its size (71401393) exceeds the configured...
ddmit的头像-DdmitDdmit6年前
039650
Okhttp GET/POST请求示例-Ddmit

Okhttp GET/POST请求示例

OkHTTP使用示例。 一、环境信息 JDK 1.8; 调用方式:OKHTTP 4.9.0; 二、工具类 import com.alibaba.fastjson.JSONObject; import okhttp3.*; import javax.net.ssl.SSLContext; import javax.n...
ddmit的头像-DdmitDdmit4年前
019070
已解决:spring boot报错Unexpected EOF read on the socket-Ddmit

已解决:spring boot报错Unexpected EOF read on the socket

spring boot上传文件报错: Unexpected EOF read on the socket 解决办法: server: port: 8080 connectionTimeout: 180000 参考文章: Unexpected EOF read on the socket问题解决;
ddmit的头像-DdmitDdmit6年前
090700
Java请求接口证书错误:unable to find valid certification path to requested target-Ddmit

Java请求接口证书错误:unable to find valid certification path to requested target

Java请求第三方接口,接口地址是https的,但是该接口如果申请的证书是自签名证书,那么为了安全,在进行调用时Java会报错: PKIX path building failed: sun.security.provider.certpath.SunCer...
ddmit的头像-DdmitDdmit4年前
028460
全面解析Spring中@ModelAttribute注解的用法-Ddmit

全面解析Spring中@ModelAttribute注解的用法

@ModelAttribute注解用于将方法的参数或方法的返回值绑定到指定的模型属性上,并返回给Web视图。具体用法整理如下: 1.@ModelAttribute注释方法 下面的1),2),3)这三个例子类似,被@ModelAt...
ddmit的头像-DdmitDdmit6年前
062289
调用Activiti7接口,使用ProcessRuntime获取流程实例报错:不允许访问-Ddmit

调用Activiti7接口,使用ProcessRuntime获取流程实例报错:不允许访问

背景: 使用postman调用Activiti7接口,随便找了一个用户登录,在使用Activiti7新特性ProcessRuntime查询流程实例列表时报错:不允许访问。 看提示是权限问题。 出错原因,Acitivi7默认是整合了S...
ddmit的头像-DdmitDdmit2年前
07040
SpringBoot Controller接收参数的几种方式盘点-Ddmit

SpringBoot Controller接收参数的几种方式盘点

SpringBoot Controller接收参数的几种常用方式盘点如下: 一、请求路径参数 1.@PathVariable 适用于url包含请求参数的情况,例如:/common-bsp/bsp/organ/{struIds},后台接收示例: @DeleteMap...
ddmit的头像-DdmitDdmit6年前
024230