TenantConfiguration.java 781 B

123456789101112131415161718192021222324252627
  1. package com.yihu.ehr.profile.config;
  2. import feign.RequestInterceptor;
  3. import feign.RequestTemplate;
  4. import org.springframework.beans.factory.annotation.Value;
  5. import org.springframework.context.annotation.Bean;
  6. import org.springframework.context.annotation.Configuration;
  7. /**
  8. * ehr使用 feginClient 调用eip(涉及到app应用,标准等) 时,需要此类,增加请求头信息
  9. */
  10. @Configuration
  11. public class TenantConfiguration {
  12. @Value("${eip.tenant}")
  13. private String tenant;
  14. @Bean
  15. public RequestInterceptor tenantInterceptor() {
  16. return new RequestInterceptor() {
  17. @Override
  18. public void apply(RequestTemplate requestTemplate) {
  19. requestTemplate.header("tenant_name", tenant);
  20. }
  21. };
  22. }
  23. }