会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
小猪_佩奇
博客园
首页
新随笔
联系
订阅
管理
2020年2月23日
ES在项目中的测试
摘要: 1、application.yml server: port: ${port:40100}spring: application: name: xc-search-servicexuecheng: elasticsearch: hostlist: ${eshostlist:127.0.0.1:920
阅读全文
posted @ 2020-02-23 13:10 小猪_佩奇
阅读(1189)
评论(0)
推荐(0)
编辑
2020年2月17日
使用fastDFS上传和下载图片文件
摘要: package com.xuecheng.test.fastdfs;import org.csource.common.MyException;import org.csource.fastdfs.*;import org.junit.Test;import org.junit.runner.Run
阅读全文
posted @ 2020-02-17 00:13 小猪_佩奇
阅读(1761)
评论(0)
推荐(0)
编辑
2020年1月31日
Java 重写(Override)与重载(Overload)
摘要: 重写(Override) 重写是子类对父类的允许访问的方法的实现过程进行重新编写, 返回值和形参都不能改变。即外壳不变,核心重写! 重写的好处在于子类可以根据需要,定义特定于自己的行为。 也就是说子类能够根据需要实现父类的方法。 重写方法不能抛出新的检查异常或者比被重写方法申明更加宽泛的异常。例如:
阅读全文
posted @ 2020-01-31 00:35 小猪_佩奇
阅读(185)
评论(0)
推荐(0)
编辑
2020年1月21日
Vue中如何书写js来渲染页面填充数据的部分代码
摘要: new Vue({ el:"#app" , data:{ user:{ id:"", username:"", password:"", age:"", sex:"", }, userList:[] }, methods:{ findAll:function () { //在当前方法中定义一个变量,
阅读全文
posted @ 2020-01-21 18:21 小猪_佩奇
阅读(2120)
评论(0)
推荐(0)
编辑
2020年1月19日
springboot中如何向redis缓存中存入数据
摘要: package com.hope;import com.fasterxml.jackson.core.JsonProcessingException;import com.fasterxml.jackson.databind.ObjectMapper;import com.hope.domain.U
阅读全文
posted @ 2020-01-19 23:39 小猪_佩奇
阅读(7361)
评论(0)
推荐(0)
编辑
2020年1月17日
使用Spring Data ElasticSearch框架来处理索引
摘要: /**步骤:创建工程,导入相应的包 》配置文件 》创建实体类对象 》创建接口 》测试增删改查的方法 **/ //步骤:创建工程,导入相应的包 <dependencies> <dependency> <groupId>org.elasticsearch</groupId> <artifactId>el
阅读全文
posted @ 2020-01-17 17:53 小猪_佩奇
阅读(1720)
评论(0)
推荐(0)
编辑
elasticSearch索引库查询的相关方法
摘要: package com.hope.es;import org.elasticsearch.action.search.SearchResponse;import org.elasticsearch.client.transport.TransportClient;import org.elastic
阅读全文
posted @ 2020-01-17 15:27 小猪_佩奇
阅读(1276)
评论(0)
推荐(0)
编辑
2020年1月16日
java客户端的elasticSearch索引库的相关操作
摘要: package com.hope.es;import org.elasticsearch.client.transport.TransportClient;import org.elasticsearch.common.settings.Settings;import org.elasticsear
阅读全文
posted @ 2020-01-16 20:56 小猪_佩奇
阅读(845)
评论(0)
推荐(0)
编辑
2020年1月15日
lucene索引的增、删、改
摘要: package com.hope.lucene;import org.apache.lucene.document.Document;import org.apache.lucene.document.Field;import org.apache.lucene.document.StoredFie
阅读全文
posted @ 2020-01-15 19:15 小猪_佩奇
阅读(262)
评论(0)
推荐(0)
编辑
lucene的索引查询
摘要: package com.hope.lucene;import org.apache.lucene.document.Document;import org.apache.lucene.document.LongPoint;import org.apache.lucene.index.Director
阅读全文
posted @ 2020-01-15 19:13 小猪_佩奇
阅读(301)
评论(0)
推荐(0)
编辑
下一页