摘要: 在确保IDEA开发环境无误后->file->invalidate Cache/restart,之后再重新build。问题解决。 阅读全文
posted @ 2020-08-24 16:08 波神丶 阅读(1245) 评论(0) 推荐(0) 编辑
摘要: 这是一个线上服务器验证码加载不出来的相关问题。 tomcat提示 Could not initialize class sun.awt.X11GraphicsEnvironment 验证码采用awt图形处理并内存中生成,java程序会去寻找linux上的图形界面是否启动 ,如linux缺少组件则, 阅读全文
posted @ 2020-05-22 10:05 波神丶 阅读(1637) 评论(0) 推荐(1) 编辑
摘要: JavaScript 1 //获取手机短信验证码 2 $("#smsCaptchaButton").on('click', function () { 3 4 var btn = $("#smsCaptchaButton"); 5 //按钮text值 6 var oldBtnText = btn.t 阅读全文
posted @ 2020-05-18 11:08 波神丶 阅读(601) 评论(0) 推荐(0) 编辑
摘要: 引入dubbo后spring相关包全是引入的4.3.16版本的,例如: spring-web-4.3.16.RELEASE.jar spring-context-4.3.16.RELEASE.jar 等 而spring boot 2.x版本的spring版本都是5.x的 仔细检查了下pom文件,发现 阅读全文
posted @ 2020-01-09 01:55 波神丶 阅读(2098) 评论(0) 推荐(0) 编辑
摘要: 一、简介 MySQL在5.5.3之后增加了这个utf8mb4的编码,mb4就是most bytes 4的意思,专门用来兼容四字节的unicode。好在utf8mb4是utf8的超集,除了将编码改为utf8mb4外不需要做其他转换。当然,为了节省空间,一般情况下使用utf8也就够了。 二、内容描述 那 阅读全文
posted @ 2019-09-16 19:13 波神丶 阅读(338) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-08-29 18:13 波神丶 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 合并方法(直接可用) 效果图: 阅读全文
posted @ 2019-08-02 14:18 波神丶 阅读(3322) 评论(1) 推荐(0) 编辑
摘要: 使用三种插件 uploadImg.min.css uploadImg.min.js CompressImgUpload.js class = "uploadImg" 阅读全文
posted @ 2019-07-26 10:18 波神丶 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 问题原因:HTTPS页面里动态的引入HTTP资源,比如引入一个js文件,会被直接block掉的.在HTTPS页面里通过AJAX的方式请求HTTP资源,也会被直接block掉的。 解决方案: <meta http-equiv="Content-Security-Policy" content="upg 阅读全文
posted @ 2019-07-17 15:12 波神丶 阅读(4599) 评论(1) 推荐(0) 编辑
摘要: <style> .fr-wrapper > div[style*='z-index: 9999'] { /*position: absolute; top: -10000px; opacity: 0;*/ display: none; } </style> </head> 方法1: 如果我们直接用c 阅读全文
posted @ 2019-07-17 15:10 波神丶 阅读(1368) 评论(0) 推荐(0) 编辑