java 集成ES 实现高亮显示 时间排序 条件过滤


package com.supwisdom.portal.service;

import com.alibaba.fastjson.JSON;
import com.supwisdom.portal.constant.CalendarConstant;
import com.supwisdom.portal.constant.SearchConstant;
import com.supwisdom.portal.dao.search.*;
import com.supwisdom.portal.model.search.*;
import com.supwisdom.portal.utils.UserUtil;
import com.supwisdom.portal.web.dto.SearchReq;
import com.supwisdom.portal.web.dto.SearchResp;
import org.apache.commons.lang3.StringUtils;
import org.elasticsearch.action.search.SearchRequest;
import org.elasticsearch.action.search.SearchResponse;
import org.elasticsearch.client.RequestOptions;
import org.elasticsearch.client.RestHighLevelClient;
import org.elasticsearch.common.text.Text;
import org.elasticsearch.index.query.BoolQueryBuilder;
import org.elasticsearch.index.query.QueryBuilders;
import org.elasticsearch.index.query.QueryStringQueryBuilder;
import org.elasticsearch.index.query.RangeQueryBuilder;
import org.elasticsearch.search.SearchHit;
import org.elasticsearch.search.aggregations.AggregationBuilders;
import org.elasticsearch.search.builder.SearchSourceBuilder;
import org.elasticsearch.search.fetch.subphase.highlight.HighlightBuilder;
import org.elasticsearch.search.fetch.subphase.highlight.HighlightField;
import org.elasticsearch.search.sort.SortBuilders;
import org.elasticsearch.search.sort.SortOrder;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.elasticsearch.core.ElasticsearchRestTemplate;
import org.springframework.data.elasticsearch.core.SearchHits;
import org.springframework.data.elasticsearch.core.document.SearchDocument;
import org.springframework.data.elasticsearch.core.mapping.IndexCoordinates;
import org.springframework.data.elasticsearch.core.query.NativeSearchQueryBuilder;
import org.springframework.stereotype.Service;

import java.io.IOException;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Map;


/**
 * Created by jyl on 2020/5/20.
 */


@Service
@SuppressWarnings("all")
public class SearchService {


    @Autowired
    private RestHighLevelClient client;

    @Autowired
    private ScheduleESDao scheduleESDao;

    @Autowired
    private ContentESDao contentESDao;

    @Autowired
    private InformationESDao informationESDao;

    @Autowired
    private ServeESDao serveESDao;

    @Autowired
    private TaskESDao taskESDao;

    @Autowired
    ElasticsearchRestTemplate elasticsearchRestTemplate;


    /**
     * 根据关键字及相关条件获取所有服务
     */
    public SearchResp getSearchAll(SearchReq req) throws Exception {


        String terminalInfo = UserUtil.getUser().getTerminalInfo();

        SearchRequest searchRequest = this.getSearchRequest(req.getKeyWordType());
        SearchSourceBuilder searchSourceBuilder = new SearchSourceBuilder();
        searchSourceBuilder.aggregation(AggregationBuilders.terms("sumarray").field("_index"));
        //模糊搜索
        QueryStringQueryBuilder queryBuilder = this.getQueryStringQueryBuilder(req.getKeyWord(), req.getScope());
        //构建高亮体
        HighlightBuilder highlightBuilder = this.getHighlightBuilder(req.getScope());
        highlightBuilder.requireFieldMatch(false);


        //是否根据时间排序
        if (CalendarConstant.IS_FORCE_SUBSCRIBED.equals(req.getOrderingRule())) {
            searchSourceBuilder.sort("startDate", SortOrder.DESC);
        }

        //搜索体(添加多个搜索参数)
        searchSourceBuilder.highlighter(highlightBuilder);

        searchSourceBuilder.query(queryBuilder);
        searchSourceBuilder.from(req.getPageIndex());
        searchSourceBuilder.size(req.getItemsPerPage());
        //是否根据时间范围过滤
        BoolQueryBuilder boolBuilder = QueryBuilders.boolQuery();
        RangeQueryBuilder rangeQueryBuilder = QueryBuilders.rangeQuery("startDate");
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        try {
            if (StringUtils.isNotBlank(req.getStartDate())) {
                rangeQueryBuilder.gte(sdf.parse(req.getStartDate()).getTime());
            }

            if (StringUtils.isNotBlank(req.getStartDate())) {
                rangeQueryBuilder.lte(sdf.parse(req.getEndDate()).getTime());
            }
            boolBuilder.must(rangeQueryBuilder);
            //must(QueryBuilders.matchQuery("serveTerminal",terminalInfo))

        } catch (Throwable e) {
            e.printStackTrace();
            throw new Exception("根据时间查询失败!");

        }
        searchSourceBuilder.postFilter(boolBuilder);

        System.out.println("======================begin search:");
        searchRequest.source(searchSourceBuilder);
        SearchResponse response = client.search(searchRequest, RequestOptions.DEFAULT);
        System.out.println("======================end search:");

        SearchResp resp = new SearchResp();
        resp.setTotal(String.valueOf(response.getHits().getTotalHits().value));
        resp.setList(this.getHit(response, req.getScope(), terminalInfo));

        return resp;
    }

    /**
     * 根据关键字及相关条件获取所有服务
     */
    public SearchHits<SearchDocument> globalSearch(SearchReq req) throws Exception {

        String terminalInfo = UserUtil.getUser().getTerminalInfo();
        IndexCoordinates indexCoordinates = null;
        switch (req.getKeyWordType()) {
            case "0":
                indexCoordinates = IndexCoordinates.of
                        ("portal-serve", "portal-content", "portal-task", "portal-information", "portal-schedule");
                break;
            case "1":
                indexCoordinates = IndexCoordinates.of
                        ("portal-serve");
                break;
            case "2":
                indexCoordinates = IndexCoordinates.of
                        ("portal-task");
                break;
            case "3":
                indexCoordinates = IndexCoordinates.of
                        ("portal-information");
                break;
            case "4":
                indexCoordinates = IndexCoordinates.of
                        ("portal-content");
                break;
            case "5":
                indexCoordinates = IndexCoordinates.of
                        ("portal-schedule");
                break;
        }


        //模糊搜索
        QueryStringQueryBuilder queryBuilder = this.getQueryStringQueryBuilder(req.getKeyWord(), req.getScope());
        //构建高亮体
        HighlightBuilder highlightBuilder = this.getHighlightBuilder(req.getScope());
        highlightBuilder.requireFieldMatch(false);
        //是否根据时间范围过滤
        BoolQueryBuilder boolBuilder = QueryBuilders.boolQuery();
        RangeQueryBuilder rangeQueryBuilder = QueryBuilders.rangeQuery("startDate");
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        try {
            if (StringUtils.isNotBlank(req.getStartDate())) {
                rangeQueryBuilder.gte(sdf.parse(req.getStartDate()).getTime());
            }

            if (StringUtils.isNotBlank(req.getStartDate())) {
                rangeQueryBuilder.lte(sdf.parse(req.getEndDate()).getTime());
            }
            boolBuilder.must(rangeQueryBuilder);
            //must(QueryBuilders.matchQuery("serveTerminal",terminalInfo))

        } catch (Throwable e) {
            e.printStackTrace();
            throw new Exception("根据时间查询失败!");

        }
        NativeSearchQueryBuilder nativeSearchQueryBuilder = new NativeSearchQueryBuilder();
        nativeSearchQueryBuilder.withFilter(boolBuilder).withHighlightBuilder(highlightBuilder)
                .withQuery(queryBuilder).withPageable(PageRequest.of(req.getPageIndex(), req.getItemsPerPage()));
        //nativeSearchQueryBuilder.addAggregation(AggregationBuilders.terms("sumarray").field("_index"));
        //是否根据时间排序
        if (CalendarConstant.IS_FORCE_SUBSCRIBED.equals(req.getOrderingRule())) {
            nativeSearchQueryBuilder.withSort(SortBuilders.fieldSort("startDate").order(SortOrder.DESC));
        }
        System.out.println("======================begin search v2:");
        SearchHits<SearchDocument> response = elasticsearchRestTemplate.search(nativeSearchQueryBuilder.build(), SearchDocument.class, indexCoordinates);
        System.out.println("======================end search v2:");

        return response;
    }


    public HighlightBuilder getHighlightBuilder(String scope) {
        HighlightBuilder highlightBuilder = new HighlightBuilder();

        //查询标题
        if (CalendarConstant.NO_OPTION.equals(scope)) {
            highlightBuilder.field("informationName");
            highlightBuilder.field("scheduleTitle");
            highlightBuilder.field("serveName");
            highlightBuilder.field("taskName");
            highlightBuilder.field("title");
        } else {
            highlightBuilder.field("informationName");
            highlightBuilder.field("scheduleTitle");
            highlightBuilder.field("serveName");
            highlightBuilder.field("taskName");
            highlightBuilder.field("title");

            highlightBuilder.field("contentMsg");
            highlightBuilder.field("serveMsg");
            highlightBuilder.field("taskMsg");
        }

        return highlightBuilder;
    }


    public QueryStringQueryBuilder getQueryStringQueryBuilder(String keyWord, String scope) {

        QueryStringQueryBuilder queryBuilder = new QueryStringQueryBuilder("\"" + keyWord + "\"");

        //查询标题
        if (CalendarConstant.NO_OPTION.equals(scope)) {
            queryBuilder.field("serveName");
            queryBuilder.field("title");
            queryBuilder.field("taskName");
            queryBuilder.field("informationName");
            queryBuilder.field("scheduleTitle");
        } else {
            queryBuilder.field("serveName");
            queryBuilder.field("title");
            queryBuilder.field("taskName");
            queryBuilder.field("informationName");
            queryBuilder.field("scheduleTitle");

            queryBuilder.field("contentMsg");
            queryBuilder.field("serveMsg");
            queryBuilder.field("taskMsg");
        }

        return queryBuilder;
    }


    public SearchRequest getSearchRequest(String keyWordType) {


        SearchRequest searchRequest = null;
        switch (keyWordType) {
            case "0":
                searchRequest = new SearchRequest
                        ("portal-serve", "portal-content", "portal-task", "portal-information", "portal-schedule");
                break;
            case "1":
                searchRequest = new SearchRequest
                        ("portal-serve");
                break;
            case "2":
                searchRequest = new SearchRequest
                        ("portal-task");
                break;
            case "3":
                searchRequest = new SearchRequest
                        ("portal-information");
                break;
            case "4":
                searchRequest = new SearchRequest
                        ("portal-content");
                break;
            case "5":
                searchRequest = new SearchRequest
                        ("portal-schedule");
                break;
        }
        return searchRequest;
    }


    public List<Object> getHit(SearchResponse response, String scope, String terminalInfo) {


        List<Object> esList = new ArrayList<>();

        if (CalendarConstant.NO_OPTION.equals(scope)) {
            for (SearchHit hit : response.getHits()) {

                //将文档中的每一个对象转换json串值
                String sourceAsString = hit.getSourceAsString();


                Map<String, HighlightField> highlightFields = hit.getHighlightFields();
                HighlightField serveName = highlightFields.get("serveName");
                HighlightField title1 = highlightFields.get("title");
                HighlightField affairName = highlightFields.get("taskName");
                HighlightField informationName = highlightFields.get("informationName");
                HighlightField scheduleTitle = highlightFields.get("scheduleTitle");


                if (serveName != null) {
                    Text[] fragments = serveName.fragments();
                    String title = "";
                    for (Text text : fragments) {
                        title += text;
                    }
                    //将json串值转换成对应的实体对象
                    ServeES serveES = JSON.parseObject(sourceAsString, ServeES.class);
                    serveES.setServeName(title);
                    serveES.setType("serve");
                    esList.add(serveES);
                }
                if (title1 != null) {
                    Text[] fragments = title1.fragments();
                    String title = "";
                    for (Text text : fragments) {
                        title += text;
                    }
                    //将json串值转换成对应的实体对象
                    ContentES contentES = JSON.parseObject(sourceAsString, ContentES.class);
                    contentES.setTitle(title);
                    contentES.setType("content");
                    esList.add(contentES);
                }
                if (affairName != null) {
                    Text[] fragments = affairName.fragments();
                    String affair = "";
                    for (Text text : fragments) {
                        affair += text;
                    }
                    //将json串值转换成对应的实体对象
                    TaskES affairES = JSON.parseObject(sourceAsString, TaskES.class);
                    affairES.setTaskName(affair);
                    affairES.setType("task");
                    esList.add(affairES);
                }
                if (informationName != null) {
                    Text[] fragments = informationName.fragments();
                    String title = "";
                    for (Text text : fragments) {
                        title += text;
                    }
                    //将json串值转换成对应的实体对象
                    InformationES informationES = JSON.parseObject(sourceAsString, InformationES.class);
                    informationES.setInformationName(title);
                    informationES.setType("information");
                    esList.add(informationES);
                }
                if (scheduleTitle != null) {
                    Text[] fragments = scheduleTitle.fragments();
                    String title = "";
                    for (Text text : fragments) {
                        title += text;
                    }
                    //将json串值转换成对应的实体对象
                    ScheduleES scheduleES = JSON.parseObject(sourceAsString, ScheduleES.class);
                    scheduleES.setScheduleTitle(title);
                    scheduleES.setType("schedule");
                    esList.add(scheduleES);
                }

            }
            return esList;
        }
        for (SearchHit hit : response.getHits()) {

            //将文档中的每一个对象转换json串值
            String sourceAsString = hit.getSourceAsString();


            Map<String, HighlightField> highlightFields = hit.getHighlightFields();
            HighlightField contentMsg = highlightFields.get("contentMsg");
            HighlightField serveMsg = highlightFields.get("serveMsg");
            HighlightField affairSource = highlightFields.get("taskMsg");

            HighlightField serveName = highlightFields.get("serveName");
            HighlightField title1 = highlightFields.get("title");
            HighlightField affairName = highlightFields.get("taskName");
            HighlightField informationName = highlightFields.get("informationName");
            HighlightField scheduleTitle = highlightFields.get("scheduleTitle");

            ServeES serveES = JSON.parseObject(sourceAsString, ServeES.class);
            ContentES contentES = JSON.parseObject(sourceAsString, ContentES.class);
            TaskES taskES = JSON.parseObject(sourceAsString, TaskES.class);
            TaskES affairES = JSON.parseObject(sourceAsString, TaskES.class);
            ScheduleES scheduleES = JSON.parseObject(sourceAsString, ScheduleES.class);


            if (serveName != null) {
                Text[] fragments = serveName.fragments();
                String title = "";
                for (Text text : fragments) {
                    title += text;
                }
                //将json串值转换成对应的实体对象
                serveES.setServeName(title);
                serveES.setType("serve");
                esList.add(serveES);
            }
            if (title1 != null) {
                Text[] fragments = title1.fragments();
                String title = "";
                for (Text text : fragments) {
                    title += text;
                }
                //将json串值转换成对应的实体对象
                contentES.setTitle(title);
                contentES.setType("content");
                esList.add(contentES);
            }
            if (affairName != null) {
                Text[] fragments = affairName.fragments();
                String affair = "";
                for (Text text : fragments) {
                    affair += text;
                }
                //将json串值转换成对应的实体对象
                affairES.setTaskName(affair);
                affairES.setType("task");
                esList.add(affairES);
            }
            if (informationName != null) {
                Text[] fragments = informationName.fragments();
                String title = "";
                for (Text text : fragments) {
                    title += text;
                }
                //将json串值转换成对应的实体对象
                InformationES informationES = JSON.parseObject(sourceAsString, InformationES.class);
                informationES.setInformationName(title);
                informationES.setType("information");
                esList.add(informationES);
            }
            if (scheduleTitle != null) {
                Text[] fragments = scheduleTitle.fragments();
                String title = "";
                for (Text text : fragments) {
                    title += text;
                }
                //将json串值转换成对应的实体对象
                scheduleES.setScheduleTitle(title);
                scheduleES.setType("schedule");
                esList.add(scheduleES);
            }


            if (serveMsg != null) {
                Text[] fragments = serveMsg.fragments();
                String title = "";
                for (Text text : fragments) {
                    title += text;
                }
                //将json串值转换成对应的实体对象
                ArrayList<String> list = new ArrayList<>();
                list.add(title);
                serveES.setServeMsg(list);
                serveES.setType("serve");
                esList.add(serveES);
            }
            if (contentMsg != null) {
                Text[] fragments = contentMsg.fragments();
                String title = "";
                for (Text text : fragments) {
                    title += text;
                }
                //将json串值转换成对应的实体对象
                contentES.setContentMsg(title);
                contentES.setType("content");
                esList.add(contentES);
            }
            if (affairSource != null) {
                Text[] fragments = affairSource.fragments();
                String affair = "";
                for (Text text : fragments) {
                    affair += text;
                }
                //将json串值转换成对应的实体对象
                taskES.setTaskSource(affair);
                taskES.setType("task");
                esList.add(taskES);
            }

        }

        return esList;
    }


    /**
     * 添加服务相关数据 ES
     */
    public void saveServeES(ServeES serveES) throws Exception {
        try {
            serveESDao.save(serveES);
        } catch (Exception e) {
            e.printStackTrace();
            throw new Exception("添加服务相关数据失败");
        }
    }


    /**
     * 获取服务相关数据 ES
     */
    public List<ServeES> getServeAll() {

        ArrayList<ServeES> arrayList = new ArrayList<>();
        Iterable<ServeES> all = serveESDao.findAll();
        for (ServeES serveES : all) {
            arrayList.add(serveES);
        }
        return arrayList;
    }

    /**
     * 获取日程相关数据 ES
     */

    public List<ScheduleES> getScheduleAll() {


        ArrayList<ScheduleES> arrayList = new ArrayList<>();
        Iterable<ScheduleES> all = scheduleESDao.findAll();
        for (ScheduleES scheduleES : all) {
            arrayList.add(scheduleES);
        }
        return arrayList;
    }

    /**
     * 获取资讯相关数据 ES
     */
    public List<ContentES> getContentAll() {

        List<ContentES> content = new ArrayList<>();
        Iterable<ContentES> contentES = contentESDao.findAll();
        for (ContentES contentE : contentES) {
            content.add(contentE);
        }
        return content;
    }

    /**
     * 添加事务相关数据 ES
     */
    public void saveAffair(TaskES taskES) throws Exception {

        try {
            taskESDao.save(taskES);

        } catch (Exception e) {
            e.printStackTrace();
            throw new Exception("添加消息相关数据失败");
        }
    }

    /**
     * 获取所有消息相关数据
     */
    public List<InformationES> getInformation() throws Exception {

        try {
            Iterable<InformationES> all = informationESDao.findAll();
            List<InformationES> informationES = new ArrayList<>();
            for (InformationES es : all) {
                informationES.add(es);
            }
            return informationES;
        } catch (Exception e) {
            e.printStackTrace();
            throw new Exception("获取消息相关数据失败");
        }
    }

    /**
     * 获取所有事务相关数据
     */
    public List<TaskES> getTask() throws Exception {

        try {
            Iterable<TaskES> all = taskESDao.findAll();
            List<TaskES> taskES = new ArrayList<>();
            for (TaskES es : all) {
                taskES.add(es);
            }
            return taskES;
        } catch (Exception e) {
            e.printStackTrace();
            throw new Exception("获取消息相关数据失败");
        }
    }

    /**
     * 添加消息相关数据 ES
     */
    public void saveInformationES(InformationES informationES) throws Exception {
        try {
            informationESDao.save(informationES);

        } catch (Exception e) {
            e.printStackTrace();
            throw new Exception("添加消息相关数据失败");
        }
    }


    /**
     * 添加资讯相关信息 ES
     */
    public void saveContent(ContentES contentES) throws Exception {

        try {
            contentESDao.save(contentES);

        } catch (Exception e) {
            e.printStackTrace();
            throw new Exception("添加日程相关信息失败");
        }

    }


    /**
     * 添加日程相关信息 ES
     */
    public void saveSchedule(ScheduleES scheduleES) throws Exception {

        try {
            //System.out.println(elasticsearchRestTemplate);
            scheduleESDao.save(scheduleES);
        } catch (Exception e) {
            e.printStackTrace();
            throw new Exception("添加日程相关信息失败");
        }
    }


    /**
     * 根据关键字匹配联想词
     *
     * @param prefix
     * @return
     */
    public List<String> complete(String prefix) throws IOException {

        BoolQueryBuilder boolBuilder = QueryBuilders.boolQuery();
        boolBuilder.must(
                QueryBuilders.matchQuery(SearchConstant.TITLE, prefix)
        );
        SearchResponse response = createConnect(boolBuilder, 0, 5);
        List<String> organizationNameList = new ArrayList<>();
        for (SearchHit hit : response.getHits()) {
            String organizationName = (String) hit.getSourceAsMap().get(SearchConstant.TITLE);
            organizationNameList.add(organizationName);
        }
        return organizationNameList;
    }


    /**
     * 通用创建SearchResponse方法
     *
     * @param boolBuilder
     * @param start
     * @param size
     * @return SearchResponse
     * @throws IOException
     */
    private SearchResponse createConnect(BoolQueryBuilder boolBuilder, int start, int size) throws IOException {
        SearchRequest searchRequest = new SearchRequest(SearchConstant.SCHEDULE_INDEX_NAME);
        searchRequest.types(SearchConstant.SCHEDULE_INDEX_TYPE);

        SearchSourceBuilder sourceBuilder = new SearchSourceBuilder();
        sourceBuilder.query(boolBuilder);
        if (size != 0) {
            sourceBuilder.from(start);
            sourceBuilder.size(size);
        }
        searchRequest.source(sourceBuilder);
        SearchResponse response = client.search(searchRequest, RequestOptions.DEFAULT);
        return response;
    }

    public static Date StringToDate(String datetime) {
        SimpleDateFormat sdFormat = new SimpleDateFormat("yyyy-MM-dd");
        Date date = new Date();
        try {
            date = sdFormat.parse(datetime);
        } catch (ParseException e) {
            e.printStackTrace();
        }
        return date;
    }

    /**
     * 删除事务数据信息
     **/
    public void delTask(String taskId) throws Exception {
        try {
            taskESDao.deleteById(taskId);
        } catch (Exception e) {
            e.printStackTrace();
            throw new Exception("删除事务数据信息失败");
        }
    }

    /**
     * 删除消息数据信息
     **/
    public void delInformation(String information) throws Exception {
        try {
            informationESDao.deleteById(information);
        } catch (Exception e) {
            e.printStackTrace();
            throw new Exception("删除消息数据信息失败");
        }
    }

    /**
     * 删除资讯数据信息
     **/
    public void delContent(String contentId) throws Exception {
        try {
            contentESDao.deleteById(contentId);
        } catch (Exception e) {
            e.printStackTrace();
            throw new Exception("删除消息数据信息失败");
        }
    }


    /**
     * 删除日程数据信息
     **/
    public void delSchedule(String scheduleId) throws Exception {
        try {
            scheduleESDao.deleteById(scheduleId);
        } catch (Exception e) {
            e.printStackTrace();
            throw new Exception("删除日程数据信息失败");
        }
    }

    /**
     * 删除服务数据信息
     **/
    public void delServe(String serveId) throws Exception {
        try {
            serveESDao.deleteById(serveId);
        } catch (Exception e) {
            e.printStackTrace();
            throw new Exception("删除日程数据信息失败");
        }
    }

}

实体类代码

package com.supwisdom.portal.model.search;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.springframework.data.annotation.Id;
import org.springframework.data.elasticsearch.annotations.Document;
import org.springframework.data.elasticsearch.annotations.Field;
import org.springframework.data.elasticsearch.annotations.FieldType;
import org.springframework.format.annotation.DateTimeFormat;

import javax.persistence.Transient;
import java.util.Arrays;
import java.util.Date;

/**
 * Created by jyl on 2020/5/22.
 * <p>
 * 资讯相关请求类
 */
@ApiModel(value = "ES资讯相关类", description = "ES资讯请求类")
@Document(indexName = "portal-content", shards = 1, replicas = 0)
public class ContentES {


    @ApiModelProperty(value = "资讯id", required = true)
    @Id
    private String contentId;

    @ApiModelProperty(value = "发布时间", dataType = "Date", required = true)
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Field(type = FieldType.Date)
    private Date startDate;

    @ApiModelProperty(value = "文章标题", required = true)
    @Field(analyzer = "ik_smart", type = FieldType.Text)
    private String title;

    @ApiModelProperty(value = "文章内容", required = true)
    @Field(analyzer = "ik_smart", type = FieldType.Text)
    private String contentMsg;

    @ApiModelProperty(value = "发布者", required = true)
    private String promulgator;

    @ApiModelProperty(value = "发布单位", required = true)
    private String releaseUnit;

    @ApiModelProperty(value = "图片地址", required = true)
    private String contentUrl;

    @ApiModelProperty(value = "对应访问权限", required = true)
    @Field(analyzer = "ik_smart", type = FieldType.Keyword)
    private String[] permission;

    @ApiModelProperty(hidden = true)
    @Transient
    private String type;

    public String[] getPermission() {
        return permission;
    }

    public void setPermission(String[] permission) {
        this.permission = permission;
    }

    public Date getStartDate() {
        return startDate;
    }

    public void setStartDate(Date startDate) {
        this.startDate = startDate;
    }

    public String getContentUrl() {
        return contentUrl;
    }

    public void setContentUrl(String contentUrl) {
        this.contentUrl = contentUrl;
    }

    public String getPromulgator() {
        return promulgator;
    }

    public void setPromulgator(String promulgator) {
        this.promulgator = promulgator;
    }

    public String getReleaseUnit() {
        return releaseUnit;
    }

    public void setReleaseUnit(String releaseUnit) {
        this.releaseUnit = releaseUnit;
    }

    public String getContentId() {
        return contentId;
    }

    public void setContentId(String contentId) {
        this.contentId = contentId;
    }


    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getContentMsg() {
        return contentMsg;
    }

    public void setContentMsg(String contentMsg) {
        this.contentMsg = contentMsg;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }


    @Override
    public String toString() {
        return "ContentES{" +
                "contentId='" + contentId + '\'' +
                ", startDate=" + startDate +
                ", title='" + title + '\'' +
                ", contentMsg='" + contentMsg + '\'' +
                ", promulgator='" + promulgator + '\'' +
                ", releaseUnit='" + releaseUnit + '\'' +
                ", contentUrl='" + contentUrl + '\'' +
                ", permission=" + Arrays.toString(permission) +
                ", type='" + type + '\'' +
                '}';
    }
}
package com.supwisdom.portal.model.search;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.springframework.data.annotation.Id;
import org.springframework.data.elasticsearch.annotations.Document;
import org.springframework.data.elasticsearch.annotations.Field;
import org.springframework.data.elasticsearch.annotations.FieldType;
import org.springframework.format.annotation.DateTimeFormat;

import javax.persistence.Transient;
import java.util.Arrays;
import java.util.Date;
import java.util.List;

/**
 * Created by jyl on 2020/5/23.
 */
@ApiModel(value = "ES服务相关类", description = "ES服务相关类")
@Document(indexName = "portal-serve", shards = 1, replicas = 0)
public class ServeES {

    @ApiModelProperty(value = "服务id", required = true)
    @Id
    private String serveId;

    @ApiModelProperty(value = "发布时间", dataType = "Date", required = true)
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Field(type = FieldType.Date)
    private Date startDate;

    @ApiModelProperty(value = "服务名称", required = true)
    @Field(analyzer = "ik_smart", type = FieldType.Text)
    private String serveName;


    @ApiModelProperty(value = "所列字段", required = true)
    @Field(analyzer = "ik_smart", type = FieldType.Text)
    private List<String> serveMsg;

    @ApiModelProperty(value = "服务编号", required = true)
    private String serveNum;

    @ApiModelProperty(value = "服务来源", required = true)
    @Field(analyzer = "ik_smart", type = FieldType.Text)
    private String serveSource;

    @ApiModelProperty(value = "服务图片地址", required = true)
    @Field(type = FieldType.Text)
    private String serveUrl;


    @ApiModelProperty(value = "关联服务")
    @Field(type = FieldType.Text)
    private List<Object> serveRelevance;

    @ApiModelProperty(value = "服务终端类型", required = true)
    @Field(type = FieldType.Keyword)
    private String[] serveTerminal;

    @ApiModelProperty(value = "对应访问权限", required = true)
    @Field(analyzer = "ik_smart",type = FieldType.Keyword)
    private String[] permission;

    @ApiModelProperty(hidden = true)
    @Transient
    private String type;


    public String[] getPermission() {
        return permission;
    }

    public void setPermission(String[] permission) {
        this.permission = permission;
    }

    public String[] getServeTerminal() {
        return serveTerminal;
    }

    public void setServeTerminal(String[] serveTerminal) {
        this.serveTerminal = serveTerminal;
    }

    public String getType() {
        return type;
    }


    public List<Object> getServeRelevance() {
        return serveRelevance;
    }

    public void setServeRelevance(List<Object> serveRelevance) {
        this.serveRelevance = serveRelevance;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getServeNum() {
        return serveNum;
    }

    public void setServeNum(String serveNum) {
        this.serveNum = serveNum;
    }

    public String getServeSource() {
        return serveSource;
    }

    public void setServeSource(String serveSource) {
        this.serveSource = serveSource;
    }

    public String getServeUrl() {
        return serveUrl;
    }

    public void setServeUrl(String serveUrl) {
        this.serveUrl = serveUrl;
    }

    public String getServeId() {
        return serveId;
    }

    public void setServeId(String serveId) {
        this.serveId = serveId;
    }

    public Date getStartDate() {
        return startDate;
    }

    public void setStartDate(Date startDate) {
        this.startDate = startDate;
    }

    public String getServeName() {
        return serveName;
    }

    public void setServeName(String serveName) {
        this.serveName = serveName;
    }

    public List<String> getServeMsg() {
        return serveMsg;
    }

    public void setServeMsg(List<String> serveMsg) {
        this.serveMsg = serveMsg;
    }

    @Override
    public String toString() {
        return "ServeES{" +
                "serveId='" + serveId + '\'' +
                ", startDate=" + startDate +
                ", serveName='" + serveName + '\'' +
                ", serveMsg=" + serveMsg +
                ", serveNum='" + serveNum + '\'' +
                ", serveSource='" + serveSource + '\'' +
                ", serveUrl='" + serveUrl + '\'' +
                ", serveRelevance=" + serveRelevance +
                ", serveTerminal=" + Arrays.toString(serveTerminal) +
                ", permission=" + Arrays.toString(permission) +
                ", type='" + type + '\'' +
                '}';
    }
}

pom 依赖

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
</dependency>

es版本为7.7.0

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值