LauncherConstant.java 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /*
  2. * Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are met:
  6. *
  7. * Redistributions of source code must retain the above copyright notice,
  8. * this list of conditions and the following disclaimer.
  9. * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * Neither the name of the dreamlu.net developer nor the names of its
  13. * contributors may be used to endorse or promote products derived from
  14. * this software without specific prior written permission.
  15. * Author: Chill 庄骞 (smallchill@163.com)
  16. */
  17. package org.springblade.common.constant;
  18. import org.springblade.core.launch.constant.AppConstant;
  19. /**
  20. * 通用常量
  21. *
  22. * @author Chill
  23. */
  24. public interface LauncherConstant {
  25. /**
  26. * 梧桐prefix
  27. */
  28. String APPLICATION_NAME_PREFIX = "wutong-";
  29. /**
  30. * 服务名称
  31. */
  32. String APPLICATION_SERVICE_NAME = APPLICATION_NAME_PREFIX + "okr";
  33. /**
  34. * nacos namespace id
  35. */
  36. String NACOS_NAMESPACE = "f447a694-519a-4255-95f9-bcbb5a5d6369";
  37. /**
  38. * nacos dev 地址
  39. */
  40. String NACOS_DEV_ADDR = "192.168.31.181:8848";
  41. //String NACOS_DEV_ADDR = "1.14.6.41:8848";
  42. /**
  43. * nacos prod 地址
  44. */
  45. String NACOS_PROD_ADDR = "172.27.0.8:28848";
  46. /**
  47. * nacos test 地址
  48. */
  49. String NACOS_TEST_ADDR = "127.0.0.1:8848";
  50. /**
  51. * sentinel dev 地址
  52. */
  53. String SENTINEL_DEV_ADDR = "127.0.0.1:8858";
  54. /**
  55. * sentinel prod 地址
  56. */
  57. String SENTINEL_PROD_ADDR = "172.27.0.2:28858";
  58. /**
  59. * sentinel test 地址
  60. */
  61. String SENTINEL_TEST_ADDR = "127.0.0.1:8858";
  62. /**
  63. * seata dev 地址
  64. */
  65. String SEATA_DEV_ADDR = "192.168.31.181:8091";
  66. /**
  67. * seata prod 地址
  68. */
  69. String SEATA_PROD_ADDR = "172.27.0.8:8091";
  70. /**
  71. * seata test 地址
  72. */
  73. String SEATA_TEST_ADDR = "127.0.0.1:8091";
  74. /**
  75. * dbuuo提供者
  76. */
  77. String APPLICATION_DUBBO_PROVIDER_NAME = APPLICATION_NAME_PREFIX + "dubbo-provider";
  78. /**
  79. * dbuuo消费者
  80. */
  81. String APPLICATION_DUBBO_CONSUMER_NAME = APPLICATION_NAME_PREFIX + "dubbo-consumer";
  82. /**
  83. * seata订单
  84. */
  85. String APPLICATION_SEATA_ORDER_NAME = APPLICATION_NAME_PREFIX + "seata-order";
  86. /**
  87. * seata库存
  88. */
  89. String APPLICATION_SEATA_STORAGE_NAME = APPLICATION_NAME_PREFIX + "seata-storage";
  90. /**
  91. * easypoi
  92. */
  93. String APPLICATION_EASYPOI_NAME = APPLICATION_NAME_PREFIX + "easypoi";
  94. /**
  95. * kafka
  96. */
  97. String APPLICATION_KAFKA_NAME = APPLICATION_NAME_PREFIX + "kafka";
  98. /**
  99. * rabbit
  100. */
  101. String APPLICATION_RABBIT_NAME = APPLICATION_NAME_PREFIX + "rabbit";
  102. /**
  103. * stream消费者
  104. */
  105. String APPLICATION_STREAM_CONSUMER_NAME = APPLICATION_NAME_PREFIX + "stream-consumer";
  106. /**
  107. * stream生产者
  108. */
  109. String APPLICATION_STREAM_PROVIDER_NAME = APPLICATION_NAME_PREFIX + "stream-provider";
  110. /**
  111. * seata file模式
  112. */
  113. String FILE_MODE = "file";
  114. /**
  115. * seata nacos模式
  116. */
  117. String NACOS_MODE = "nacos";
  118. /**
  119. * seata default模式
  120. */
  121. String DEFAULT_MODE = "default";
  122. /**
  123. * seata group后缀
  124. */
  125. String GROUP_NAME = "-group";
  126. /**
  127. * seata 服务组格式
  128. *
  129. * @param appName 服务名
  130. * @return group
  131. */
  132. static String seataServiceGroup(String appName) {
  133. return appName.concat(GROUP_NAME);
  134. }
  135. /**
  136. * 动态获取nacos地址
  137. *
  138. * @param profile 环境变量
  139. * @return addr
  140. */
  141. static String nacosAddr(String profile) {
  142. switch (profile) {
  143. case (AppConstant.PROD_CODE):
  144. return NACOS_PROD_ADDR;
  145. case (AppConstant.TEST_CODE):
  146. return NACOS_TEST_ADDR;
  147. default:
  148. return NACOS_DEV_ADDR;
  149. }
  150. }
  151. /**
  152. * 动态获取sentinel地址
  153. *
  154. * @param profile 环境变量
  155. * @return addr
  156. */
  157. static String sentinelAddr(String profile) {
  158. switch (profile) {
  159. case (AppConstant.PROD_CODE):
  160. return SENTINEL_PROD_ADDR;
  161. case (AppConstant.TEST_CODE):
  162. return SENTINEL_TEST_ADDR;
  163. default:
  164. return SENTINEL_DEV_ADDR;
  165. }
  166. }
  167. /**
  168. * 动态获取seata地址
  169. *
  170. * @param profile 环境变量
  171. * @return addr
  172. */
  173. static String seataAddr(String profile) {
  174. switch (profile) {
  175. case (AppConstant.PROD_CODE):
  176. return SEATA_PROD_ADDR;
  177. case (AppConstant.TEST_CODE):
  178. return SEATA_TEST_ADDR;
  179. default:
  180. return SEATA_DEV_ADDR;
  181. }
  182. }
  183. }