我正在开发一个单页应用程序(vaadin 11 + CAS + Spring)
这些网址是安全的:
nunjucks.configure('node_modules');
要登录,请输入“ localhost:8080 / secured”
我想重定向“ /” URL,以便如果我调用“ localhost:8080”,它将重定向到“ / secured”
为此,我添加:
.regexMatchers("/secured.*").authenticated()
但是现在,当我呼叫localhost:8080时,每5秒就会收到405个错误:
@GetMapping("/")
public String index() {
return "redirect:secured";
}
我认为这来自于vaadin引擎...
我该如何进行这项工作?
安全配置:
Request URL: http://localhost:8080/?v-r=uidl&v-uiId=0
Request Method: POST
Status Code: 405