摘要:
ec_perform_sh_sailing_plan表,上数日期字段shangshuDate;预到日期yuji_daoda_date; 如果上数日期有值,按预到时间降序。如果上数日期没有值,按预到时间升序,上数日期没有值的排在有值的前面; SELECT * FROM ec_perform_sh_sa 阅读全文
摘要:
1.挂在目录是可以使用$PWD/表示当前目录下 2.启动失败可以使用docker logs --tail 50 --follow --timestamps mysqltest查看原因 问题1:chown: changing ownership of '/var/lib/mysql/': Permis 阅读全文
摘要:
第一种: 1.添加依赖 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-hystrix</artifactId> </dependency> <dep 阅读全文
摘要:
pom文件的build中添加 <resources> <resource> <!-- 需要强制放入的目录 --> <!-- 一般写为 <directory>src/main/java</directory> --> <!--但是这里yml在resources文件夹中,就将地址写为 <director 阅读全文
摘要:
执行 yum -y install mysql-community-server命令时报错GPG key retrieval failed: [Errno 14] curl#37 - "Couldn't open file /etc/pki/rpm-gpg/RPM-GPG-KEY-mysql-202 阅读全文
摘要:
本次使用的是centOS6.7 64位系统 第一步:处理阿里云磁盘挂载问题 查看磁盘情况,本次机器系统盘为阿里云赠送的20G,数据盘为100G 其中/dev/xvda为系统盘,/dev/xvdb为数据盘,数据盘暂未做任何操作,要使用的话,先做挂载 输入fdisk /dev/xvdb 对数据盘进行分区 阅读全文
摘要:
<input type="text" lay-verify="required|number" lay-verType="tips" autocomplete="off" class="layui-input"> 这样的输入框在form表单中,输入完数字超过三位数,输入框会自动加入千位符",",表单 阅读全文
摘要:
select a.name,b.company from a a,b b where a.tag like concat ('%',b.tag ,'%') 阅读全文
摘要:
jvm架构理解 jvm程序执行流程 编译器和解释器协调工作流程 在部分商用虚拟机中(如HotSpot),java程序最初是通过解释器进行解释执行的,当虚拟机发现某个方法或者某段代码执行的特别频繁后就会把这些代码作为【热点代码】,为了提高【热点代码】的执行效率,在运行时,虚拟机会把这些【热点代码】编译 阅读全文
摘要:
1.下载压缩包 https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.6.2.tar.gz 2.解压修改配置文件 cd elasticsearch目录 tar -zxf elasticsearch-6.6.2.tar 阅读全文