摘要:
后续:https://www.cnblogs.com/xiaostudy/p/16630910.html,新的项目,网关从Zuul换成Gateway,注册中心Eureka换成Nacos,配置中心Config换成Nacos,添加权限控制Security【Token方式,可分布式鉴权】,简单的登陆,Se 阅读全文
摘要:
1 /** 2 * 获取浏览器类型 3 * 4 * @param getVersion 5 * @returns {*} 6 */ 7 function getBrowser(getVersion) { 8 var ua_str = navigator.userAgent.toLowerCase() 阅读全文
摘要:
1、debug信息:Method breakpoints may dramatically slow down debugging 处理: Ctrl+Shift+F8打开Breakpoints,把断点删除掉 参考文章:https://www.cnblogs.com/toutou/p/debuggin 阅读全文
摘要:
1 /** 2 * 重写对象的toString方法 3 * 4 * @param object 5 * @return 6 */ 7 public static String objToString(Object object) { 8 if (null == object) { 9 return 阅读全文
摘要:
当done方法使用不行时,只能使用change方法时 1 /** 2 * laydate的year类型设值,在change方法调用 3 * 4 * @param thiz change里面的this 5 * @param value change的参数value 6 * @param date ch 阅读全文
摘要:
1 /** 2 * 判断字符是否是中文,能校验是否为中文标点符号 3 * 4 * @param str 待校验字符 5 * @return 是否为中文 6 */ 7 public static boolean isContainChinese(char str) { 8 // 中文字 9 Patte 阅读全文
摘要:
1、js处理solr特殊字符 1 function solrTransformMetacharactor(data) { 2 if ("" == data) { 3 return data; 4 } 5 var str = ''; 6 var array = data.split(''); 7 va 阅读全文
摘要:
1、修改laydate.js 全局检索:清空,只有一个结果的。添加我们自定义事件close按钮名称 全局检索:confirm,是方法的就是。添加我们close方法 2、使用laydate控件时自定义按钮 3、效果 资料(扩展laydate增加自定义范围选择按钮):https://github.com 阅读全文
摘要:
1 /** 2 * ping ip 3 * 4 * @param ip 5 * @return 6 */ 7 public static boolean pingIp(String ip) { 8 if (null == ip || 0 == ip.length()) { 9 return fals 阅读全文
摘要:
/** * 日期分隔符,处理特殊字符 * * @param splitter * @return */ private static String dealWithSplitter(char splitter) { String strSplitter = String.valueOf(splitt 阅读全文