摘要:
场景1:表B:id,name,code三个字段均有值;表A :id,name,code 其中id,name有值并且与表B相对应,code值为null。现在将B表中的code值更新到A表中。 方法1:id不能有重复: update t_a a set a.code=(select code from 阅读全文
摘要:
IDEA 无法自动装配Mapper ,运行报错org.apache.ibatis.binding.BindingException: Invalid bound statement (not found),Eclipse正常运行 解决方法: 在pom.xml文件里面加入如下代码 <build> <r 阅读全文
摘要:
地址栏传递json格式的参数时,tomcat会提示 “在请求目标中找到无效字符。有效字符在RFC 7230和RFC 3986中定义” 可以用模拟表单的方式提交 function jsSubmit(url, params, method){ let form = $("<form></form>"); 阅读全文
摘要:
目录 1.进入es安装目录下的config目录配置X-Pack 2.重启elasticsearch服务3.执行设置用户名和密码的命令linuxwindows 4.浏览器输入 ip:9200 测试 1.进入es安装目录下的config目录 elasticsearch.yml 配置X-Pack http 阅读全文
摘要:
文件过期的现象: 有(windows 日志)错误显示:License file expired 解决办法: 一、官网下载最新的授权文件 二、替换四个路径的文件 1. 安装目录下的license文件 2. 安装目录下的Server/bin下的license文件 3. 安装目录下的Cluster/bin 阅读全文
摘要:
将pdf文件路径重新编码 <script type="text/javascript"> $(function() { $("#pdfIframe").attr("src","localhost:8080/pdf/web/viewer.html?file="+encodeURIComponent(" 阅读全文
摘要:
勾选上:√ Deploy applications across restarts and redeploys就可以了 阅读全文
摘要:
位置:conf/logging.properties 将UTF-8改为GBK 阅读全文
摘要:
base64存储/显示图片 前台上传 <input name="imageFront" type="file" accept="image/*" value=""> 前台显示 <img style="height:60px;" src="https://img-blog.csdnimg.cn/202 阅读全文
摘要:
方式1 import java.net.HttpURLConnection; import java.net.URL; //创建url; URL url = new URL(filepath); //创建url连接; HttpURLConnection urlconn = (HttpURLConne 阅读全文