Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏

第 28 章 FAQ

目录

28.1. Cannot execute request on any known server
28.2. @EnableDiscoveryClient与@EnableEurekaClient 区别
28.3. Feign请求超时
28.4. 已停止的微服务节点注销慢或不注销
28.5. Feign 启动出错 PathVariable annotation was empty on param 0.
28.6. Feign 提示 Consider defining a bean of type 'common.feign.Cms' in your configuration.
28.7. Load balancer does not have available server for client
28.8. Eureka Client (Dalston.SR1)
28.8.1. Maven
28.8.2. Application
28.8.3. RestController
28.8.4. application.properties
28.8.5. 测试
28.9. Config Server(1.3.1.RELEASE)
28.9.1. Server
28.9.2. Client
28.10. feign.RetryableException: Read timed out executing

28.1. Cannot execute request on any known server

com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known server

解决方法,禁用 CSRF

		
package cn.netkiller.eureka.config;

import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;

@Configuration
@EnableWebSecurity
public class SecurityConfigurerAdapter extends WebSecurityConfigurerAdapter {
	@Override
	protected void configure(HttpSecurity http) throws Exception {
		http.csrf().disable();
		super.configure(http);
	}

	@Override
	protected void configure(AuthenticationManagerBuilder auth) throws Exception {
		super.configure(auth);
	}

}