@Controller处理程序方法中的Spring Security Authentication参数

时间:2018-10-30 18:16:42

标签: spring-mvc spring-security

我有一个spring boot方法应用程序,一个方法具有以下特征:

@GetMapping("{accountId}/component/{id}")
public Component getComponent(@PathVariable("accountId") String accountId, @PathVariable("id") String id, Authentication auth) throws Exception {
    //
}

我了解除最后一个参数之外的所有参数:身份验证auth。它在哪里/如何传递到方法中?

0 个答案:

没有答案