一、增加RegexUtil工具类

  1. package com.yhh.common.utils;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import java.util.regex.Matcher;
  5. import java.util.regex.Pattern;
  6. public class RegexUtil {
  7. /******************** 正则相关常量 ********************/
  8. /**
  9. * 正则:手机号(简单)
  10. */
  11. public static final String REGEX_MOBILE_SIMPLE = "^[1]\\d{10}$";
  12. /**
  13. * 正则:手机号(精确)
  14. * <p>移动:134(0-8)、135、136、137、138、139、147、150、151、152、157、158、
  15. * 159、178、182、183、184、187、188</p>
  16. * <p>联通:130、131、132、145、155、156、175、176、185、186</p>
  17. * <p>电信:133、153、173、177、180、181、189</p>
  18. * <p>全球星:1349</p>
  19. * <p>虚拟运营商:170</p>
  20. */
  21. public static final String REGEX_MOBILE_EXACT = "^((13[0-9])|(14[5,7])|(15[0-3,5-9])|(17[0,3,5-8])|(18[0-9])|(147))\\d{8}$";
  22. /**
  23. * 正则:电话号码
  24. */
  25. public static final String REGEX_TEL = "^0\\d{2,3}[- ]?\\d{7,8}";
  26. /**
  27. * 正则:身份证号码15位
  28. */
  29. public static final String REGEX_ID_CARD15 = "^[1-9]\\d{7}((0\\d)|(1[0-2]))(([0|1|2]\\d)|3[0-1])\\d{3}$";
  30. /**
  31. * 正则:身份证号码18位
  32. */
  33. public static final String REGEX_ID_CARD18 = "^[1-9]\\d{5}[1-9]\\d{3}((0\\d)|(1[0-2]))(([0|1|2]\\d)|3[0-1])\\d{3}([0-9Xx])$";
  34. /**
  35. * 正则:邮箱
  36. */
  37. public static final String REGEX_EMAIL = "^\\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*$";
  38. /**
  39. * 正则:URL
  40. */
  41. public static final String REGEX_URL = "[a-zA-z]+://[^\\s]*";
  42. /**
  43. * 正则:汉字
  44. */
  45. public static final String REGEX_ZH = "^[\\u4e00-\\u9fa5]+$";
  46. /**
  47. * 正则:用户名,取值范围为a-z,A-Z,0-9,"_",汉字,不能以"_"结尾,用户名必须是6-20位
  48. */
  49. public static final String REGEX_USERNAME = "^[\\w\\u4e00-\\u9fa5]{6,20}(?<!_)$";
  50. /**
  51. * 正则:yyyy-MM-dd格式的日期校验,已考虑平闰年
  52. */
  53. public static final String REGEX_DATE = "^(?:(?!0000)[0-9]{4}-(?:(?:0[1-9]|1[0-2])-(?:0[1-9]|1[0-9]|2[0-8])|(?:0[13-9]|1[0-2])-(?:29|30)|(?:0[13578]|1[02])-31)|(?:[0-9]{2}(?:0[48]|[2468][048]|[13579][26])|(?:0[48]| [2468][048]|[13579][26])00)-02-29)$";
  54. /**
  55. * 正则:IP地址
  56. */
  57. public static final String REGEX_IP = "((2[0-4]\\d|25[0-5]|[01]?\\d\\d?)\\.){3}(2[0-4]\\d|25[0-5]|[01]?\\d\\d?)";
  58. /************** 以下摘自http://tool.oschina.net/regex **************/
  59. /**
  60. * 正则:双字节字符(包括汉字在内)
  61. */
  62. public static final String REGEX_DOUBLE_BYTE_CHAR = "[^\\x00-\\xff]";
  63. /**
  64. * 正则:空白行
  65. */
  66. public static final String REGEX_BLANK_LINE = "\\n\\s*\\r";
  67. /**
  68. * 正则:QQ号
  69. */
  70. public static final String REGEX_TENCENT_NUM = "[1-9][0-9]{4,}";
  71. /**
  72. * 正则:中国邮政编码
  73. */
  74. public static final String REGEX_ZIP_CODE = "[1-9]\\d{5}(?!\\d)";
  75. /**
  76. * 正则:正整数
  77. */
  78. public static final String REGEX_POSITIVE_INTEGER = "^[1-9]\\d*$";
  79. /**
  80. * 正则:负整数
  81. */
  82. public static final String REGEX_NEGATIVE_INTEGER = "^-[1-9]\\d*$";
  83. /**
  84. * 正则:整数
  85. */
  86. public static final String REGEX_INTEGER = "^-?[1-9]\\d*$";
  87. /**
  88. * 正则:非负整数(正整数 + 0)
  89. */
  90. public static final String REGEX_NOT_NEGATIVE_INTEGER = "^[1-9]\\d*|0$";
  91. /**
  92. * 正则:非正整数(负整数 + 0)
  93. */
  94. public static final String REGEX_NOT_POSITIVE_INTEGER = "^-[1-9]\\d*|0$";
  95. /**
  96. * 正则:正浮点数
  97. */
  98. public static final String REGEX_POSITIVE_FLOAT = "^[1-9]\\d*\\.\\d*|0\\.\\d*[1-9]\\d*$";
  99. /**
  100. * 正则:负浮点数
  101. */
  102. public static final String REGEX_NEGATIVE_FLOAT = "^-[1-9]\\d*\\.\\d*|-0\\.\\d*[1-9]\\d*$";
  103. /************** If u want more please visit
  104. http://toutiao.com/i6231678548520731137/ **************/
  105. private RegexUtil() {
  106. throw new UnsupportedOperationException("u can't instantiate me...");
  107. }
  108. /**
  109. * 验证手机号(简单)
  110. *
  111. * @param input 待验证文本
  112. * @return {@code true}: 匹配<br>{@code false}: 不匹配
  113. */
  114. public static boolean isMobileSimple(CharSequence input) {
  115. return isMatch(REGEX_MOBILE_SIMPLE, input);
  116. }
  117. /**
  118. * 验证手机号(精确)
  119. *
  120. * @param input 待验证文本
  121. * @return {@code true}: 匹配<br>{@code false}: 不匹配
  122. */
  123. public static boolean isMobileExact(CharSequence input) {
  124. return isMatch(REGEX_MOBILE_EXACT, input);
  125. }
  126. /**
  127. * 验证电话号码
  128. *
  129. * @param input 待验证文本
  130. * @return {@code true}: 匹配<br>{@code false}: 不匹配
  131. */
  132. public static boolean isTel(CharSequence input) {
  133. return isMatch(REGEX_TEL, input);
  134. }
  135. /**
  136. * 验证身份证号码15位
  137. *
  138. * @param input 待验证文本
  139. * @return {@code true}: 匹配<br>{@code false}: 不匹配
  140. */
  141. public static boolean isIDCard15(CharSequence input) {
  142. return isMatch(REGEX_ID_CARD15, input);
  143. }
  144. /**
  145. * 验证身份证号码18位
  146. *
  147. * @param input 待验证文本
  148. * @return {@code true}: 匹配<br>{@code false}: 不匹配
  149. */
  150. public static boolean isIDCard18(CharSequence input) {
  151. return isMatch(REGEX_ID_CARD18, input);
  152. }
  153. /**
  154. * 验证邮箱
  155. *
  156. * @param input 待验证文本
  157. * @return {@code true}: 匹配<br>{@code false}: 不匹配
  158. */
  159. public static boolean isEmail(CharSequence input) {
  160. return isMatch(REGEX_EMAIL, input);
  161. }
  162. /**
  163. * 验证URL
  164. *
  165. * @param input 待验证文本
  166. * @return {@code true}: 匹配<br>{@code false}: 不匹配
  167. */
  168. public static boolean isURL(CharSequence input) {
  169. return isMatch(REGEX_URL, input);
  170. }
  171. /**
  172. * 验证汉字
  173. *
  174. * @param input 待验证文本
  175. * @return {@code true}: 匹配<br>{@code false}: 不匹配
  176. */
  177. public static boolean isZh(CharSequence input) {
  178. return isMatch(REGEX_ZH, input);
  179. }
  180. /**
  181. * 验证用户名
  182. * <p>取值范围为a-z,A-Z,0-9,"_",汉字,不能以"_"结尾,用户名必须是6-20位</p>
  183. *
  184. * @param input 待验证文本
  185. * @return {@code true}: 匹配<br>{@code false}: 不匹配
  186. */
  187. public static boolean isUsername(CharSequence input) {
  188. return isMatch(REGEX_USERNAME, input);
  189. }
  190. /**
  191. * 验证yyyy-MM-dd格式的日期校验,已考虑平闰年
  192. *
  193. * @param input 待验证文本
  194. * @return {@code true}: 匹配<br>{@code false}: 不匹配
  195. */
  196. public static boolean isDate(CharSequence input) {
  197. return isMatch(REGEX_DATE, input);
  198. }
  199. /**
  200. * 验证IP地址
  201. *
  202. * @param input 待验证文本
  203. * @return {@code true}: 匹配<br>{@code false}: 不匹配
  204. */
  205. public static boolean isIP(CharSequence input) {
  206. return isMatch(REGEX_IP, input);
  207. }
  208. /**
  209. * 判断是否匹配正则
  210. *
  211. * @param regex 正则表达式
  212. * @param input 要匹配的字符串
  213. * @return {@code true}: 匹配<br>{@code false}: 不匹配
  214. */
  215. public static boolean isMatch(String regex, CharSequence input) {
  216. return input != null && input.length() > 0 && Pattern.matches(regex,
  217. input);
  218. }
  219. /**
  220. * 获取正则匹配的部分
  221. *
  222. * @param regex 正则表达式
  223. * @param input 要匹配的字符串
  224. * @return 正则匹配的部分
  225. */
  226. public static List<String> getMatches(String regex, CharSequence input) {
  227. if (input == null) {
  228. return null;
  229. }
  230. List<String> matches = new ArrayList<>();
  231. Pattern pattern = Pattern.compile(regex);
  232. Matcher matcher = pattern.matcher(input);
  233. while (matcher.find()) {
  234. matches.add(matcher.group());
  235. }
  236. return matches;
  237. }
  238. /**
  239. * 获取正则匹配分组
  240. *
  241. * @param input 要分组的字符串
  242. * @param regex 正则表达式
  243. * @return 正则匹配分组
  244. */
  245. public static String[] getSplits(String input, String regex) {
  246. if (input == null) {
  247. return null;
  248. }
  249. return input.split(regex);
  250. }
  251. /**
  252. * 替换正则匹配的第一部分
  253. *
  254. * @param input 要替换的字符串
  255. * @param regex 正则表达式
  256. * @param replacement 代替者
  257. * @return 替换正则匹配的第一部分
  258. */
  259. public static String getReplaceFirst(String input, String regex, String replacement) {
  260. if (input == null) {
  261. return null;
  262. }
  263. return Pattern.compile(regex).matcher(input).replaceFirst(replacement);
  264. }
  265. /**
  266. * 替换所有正则匹配的部分
  267. *
  268. * @param input 要替换的字符串
  269. * @param regex 正则表达式
  270. * @param replacement 代替者
  271. * @return 替换所有正则匹配的部分
  272. */
  273. public static String getReplaceAll(String input, String regex, String replacement) {
  274. if (input == null) {
  275. return null;
  276. }
  277. return Pattern.compile(regex).matcher(input).replaceAll(replacement);
  278. }
  279. }

二、 使用正则及用户表验证手机号

image.png

三、修改发送短信接口

注1:统一起见,将接口的参数名均改为phoneNumber;
注2:由于Api包是公用于impl包的,所以对于Api包 的引用要放在ecs-impl.pom 下,不要放在子包下;
注3:由于Core包是公用于Api包、impl包,且由于impl引用了Api包,继承关系,将Core包放在ecs-api.pom下,也不要放在子包中。

3.1 优化FeignClient

由于 Api(对外接口层) 和 FeignClient 代码重复了,故去掉FeignClient 的接口,改为继承Api
image.png
image.png

3.2 修改Api的返回结果

image.png

3.3 修改调用

image.png