北斗定位
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

45 Zeilen
1.2KB

  1. package com.telpo.dipperposition.config;
  2. import com.alibaba.nacos.api.config.annotation.NacosValue;
  3. import com.alibaba.nacos.spring.context.annotation.config.NacosPropertySource;
  4. import com.telpo.dipperposition.common.OkHttpUtil;
  5. import lombok.Getter;
  6. import lombok.Setter;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.context.annotation.Configuration;
  9. import javax.annotation.PostConstruct;
  10. /**
  11. * @program: gateway
  12. * @description: jwt设置
  13. * @author: linwl
  14. * @create: 2020-06-18 17:45
  15. */
  16. @Getter
  17. @Setter
  18. @Configuration
  19. @NacosPropertySource(dataId="dipperposition-service", autoRefreshed=true)
  20. public class NettyServerConfig {
  21. @NacosValue(value = "${position-server.serverAddr}")
  22. private String serverAddr;
  23. @NacosValue(value = "${position-server.timeAsycPort:9011}")
  24. private String timeAsycServerPort;
  25. @NacosValue(value = "${position-server.posAsycPort}")
  26. private String posAsycServerPort;
  27. @NacosValue(value = "${position-server.starsAsycPort}")
  28. private String starsAsycServerPort;
  29. public static NettyServerConfig nettyServerConfig;
  30. @PostConstruct
  31. public void init() {
  32. nettyServerConfig = this;
  33. }
  34. }