如何在Spring Boot中为Lambda表达式添加注释?

时间:2019-05-14 06:02:17

标签: spring-boot annotations

我需要在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);

简而言之,我想使用注释为请求添加安全签名

0 个答案:

没有答案