以下是字段子串聚合,截取 'your_field' 前八位进行聚合的 Script script = new Script("doc['your_field'].getValue().substring(0,8)"); CardinalityAggregationBuilder pointCardi Read More
然后: 点击最上面的Show log ; 选择你要的版本: 右键, export, 然后就可以选择需要导出的文件夹 主要有时候开发新功能然后覆盖到项目里面去了,但是产品可能需要在旧版本上面修改其他东西,新版本又未经测试,可能存在相当bug, 所以我一般用这种比较龊的办法, 导出特定版本进行修改和打包 Read More
demo: <select id="queryRuralCodes" resultType="string" parameterType="map" useCache="false"> select id from <choose> <when test="type == '1'.toString( Read More
找到maven安装目录下的conf文件夹目录里的settings.xml配置文件。 大概49行的位置 <localRepository>/path/to/local/repo</localRepository> 添加如下代码即可。 <localRepository>D:\maven_repo</lo Read More
在ubuntu更新时,出现错误E: Some index files failed to download, they have been ignored, or old ones used inst
原文:https://blog.csdn.net/tian_ciomp/article/details/51339635 在ubuntu更新时,出现错误E: Some index files failed to download, they have been ignored, or old one Read More
在已经安装好docker for windows的基础上, 右键docker任务栏小图标, 选择Kitematic 然后放在docker的安装目录中C:\Program Files\Docker: 文件夹重命名未Kitematic 然后右键小图标,再次点击Kitematic就会跳到: 可以注册个账号 Read More
今天在java mybatis项目中遇到一个问题,“java mybatis Column 'AAA' in where clause is ambiguous”, 这是由于在多表连接查询的时候,遇上有相同的字段,这个需要设置一下表名的前缀: 例: select * from lw_table lt Read More
(1)使用addAll方法 ArrayListExample.java 请注意,此方法复制列表中的元素引用。因此,两个列表都引用相同的对象。如果我们更改一个列表中的对象,则另一个列表中的相同对象也将被更改。 Read More
一、安装部署 1.下载安装 https://hub.docker.com/editions/community/docker-ce-desktop-windows 需要注册完后,才可以下载。点击安装 但是这个安装似乎没有给我选择安装到具体哪个盘符的选项,所以直接就是安装到c盘去了。 现在在系统的命令 Read More
以下是vue method的demo: 其中方法需要用async修饰, 然后 Read More