- 报错:
feign.FeignException: status 403 reading` IActService#todoList(String,String,String);
{"timestamp":1582297415705,"status":403,"error":"Forbidden","message":"Forbidden","path":"/act/task/todoTaskList"}
- 这个是因为你开启了CSRF保护,关闭即可,在configure(HttpSecurity http)方法中追加http.csrf().disable();关闭CSRF保护即可。