我需要在lambda表达式中注释参数。我该怎么做? 我的注释
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.PARAMETER)
public @interface AddSecuredSignature {
}
方法,我想在哪里做
link = (new RestTemplate()).execute(
URI.create(url),
HttpMethod.PUT,
httprequest -> {
new AllEncompassingFormHttpMessageConverter().write(bodyFile, MediaType.MULTIPART_FORM_DATA, @AddSecuredSignature httprequest);
}, null);
简而言之,我想使用注释为请求添加安全签名