上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: /** * 验证字符串是否为数字 * @param str * @return */ public static boolean isNumeric(String str) { Pattern pattern = Pattern.compile("[0-9]*"); return pattern.m 阅读全文
posted @ 2022-04-02 17:07 教练我想打篮球 阅读(448) 评论(0) 推荐(0) 编辑
摘要: RabbitMqKey 类存放key值 RabbitMqConnectFactory获取RabbitMq连接 RabbitMqConf rabbitmq配置类 MqMessageFrom 队列消息from MqSendMessage 生产者推送mq消息 CustomerMqClient 消费者接收m 阅读全文
posted @ 2022-03-18 11:13 教练我想打篮球 阅读(292) 评论(0) 推荐(0) 编辑
摘要: @PostContruct是Java自带的注解,在方法上加该注解会在项目启动的时候执行该方法,也可以理解为在spring容器初始化的时候执行该方法。 Java中该注解的说明:@PostConstruct该注解被用来修饰一个非静态的void()方法。被@PostConstruct修饰的方法会在服务器加 阅读全文
posted @ 2022-03-16 10:49 教练我想打篮球 阅读(442) 评论(0) 推荐(0) 编辑
摘要: 1、导入第三方jar工具包 2、web.xml配置过滤器,优先级最高 3、过滤器进行判断,跳转sso认证页面,登录后跳转回来 阅读全文
posted @ 2022-03-04 14:51 教练我想打篮球 阅读(361) 评论(0) 推荐(0) 编辑
摘要: (select t2.customerid as khid, t4.realname,t2.oldownerbyid as jiuid,t2.createtime as gxsjFROM crm_customer_handover as t2left join crm_customer as t3o 阅读全文
posted @ 2021-11-23 22:20 教练我想打篮球 阅读(195) 评论(0) 推荐(0) 编辑
摘要: <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup --> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.14.3</ 阅读全文
posted @ 2021-11-22 14:48 教练我想打篮球 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-11-16 09:08 教练我想打篮球 阅读(845) 评论(0) 推荐(0) 编辑
摘要: 父层class设置outdiv 子层设置为blingbling .outDiv { display: flex; justify-content: center; align-items: center; .blingbling { position: absolute; -webkit-anima 阅读全文
posted @ 2021-10-13 14:39 教练我想打篮球 阅读(580) 评论(0) 推荐(0) 编辑
摘要: function getNowFormatDate() { var date = new Date(); var seperator1 = "-"; var seperator2 = ":"; var month = date.getMonth() + 1; var strDate = date.g 阅读全文
posted @ 2021-09-04 16:19 教练我想打篮球 阅读(354) 评论(0) 推荐(0) 编辑
摘要: UPDATE info1 t1 JOIN info2 t2 ON t1.name = t2.name SET t1.age = t2.age, t1.class = t2.class; 阅读全文
posted @ 2021-09-04 11:04 教练我想打篮球 阅读(33) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 13 下一页