我有一个spring boot方法应用程序,一个方法具有以下特征:
@GetMapping("{accountId}/component/{id}")
public Component getComponent(@PathVariable("accountId") String accountId, @PathVariable("id") String id, Authentication auth) throws Exception {
//
}
我了解除最后一个参数之外的所有参数:身份验证auth。它在哪里/如何传递到方法中?