Easy-Es is an open source framework for simplifying ElasticSearch search engine operations

Easy-Es is an open source framework for simplifying ElasticSearch search engine operations

2022-09-16 0 1,409
Resource Number 38582 Last Updated 2025-02-24
¥ 0HKD Upgrade VIP
Download Now Matters needing attention
Can't download? Please contact customer service to submit a link error!
Value-added Service: Installation Guide Environment Configuration Secondary Development Template Modification Source Code Installation

The Easy-Es recommended in this issue is an open source framework that simplifies the operation of ElasticSearch search engine, simplifies CRUD operation, and can better help developers reduce the development burden.

Easy-Es is an open source framework for simplifying ElasticSearch search engine operations插图

Project Introduction

Easy-Es (EE for short) is a low-code development framework based on RestHighLevelClient provided by ElasticSearch(Es for short). On the basis of RestHighLevelClient, only enhancements without changes, In order to simplify development and improve efficiency, if you have used Mybatis Plus(referred to as MP), then you can basically get started with EE at zero learning cost. EE is the Es flat version of MP, and it also integrates more unique features of Es to help you quickly realize the development of various scenarios.

Project characteristics

  • No intrusion : only enhance without change, introducing it will not affect the existing project, as smooth as silk
  • Small loss : Basic CURD will be automatically injected upon startup, the performance is basically loss-free, direct object-oriented operation
  • Powerful CRUD operation : built-in general Mapper, only through a small amount of configuration can achieve most CRUD operations, more powerful condition constructor, to meet various needs
  • Support Lambda call : Through Lambda expression, it is convenient to write all kinds of query conditions, and there is no need to worry about field errors
  • Support automatic primary key generation : Support two primary key policies, free configuration, perfect solution to the primary key problem
  • Support ActiveRecord mode : support ActiveRecord form calls, entity classes only need to inherit the Model class to carry out powerful CRUD operations
  • Support custom global common operations : Support global common method injection (Write once, use anywhere)
  • Built-in paging plug-in : Based on RestHighLevelClient physical page, the developer does not need to care about the specific operation, and there is no need to configure additional plug-ins, write the page is equivalent to ordinary List query, and maintain the same page return field as the PageHelper plug-in, without worrying about naming impact
  • Full coverage of MySQL functions: All functions supported by MySQL can be easily realized through EE
  • Support ES high order syntax: Support high order syntax such as highlighting search, segmentation query, weight query, aggregate query
  • Good scalability : The bottom layer still uses RestHighLevelClient, can maintain its scalability, the developer can still use the functionality of RestHighLevelClient while using EE

Fast start

< Add dependency

        <dependency>
            <groupId>com.xpc</groupId>
            <artifactId>easy-es-boot-starter</artifactId>
            <version>Latest Version</version>
        </dependency>

Gradle:

compile group: 'com.github.xpc1024', name: 'easy-es-boot-starter', version: 'Latest Version'

disposition

Add the necessary EasyEs configurations to the application.yml configuration file:

easy-es:
  enable: true # The default is true. If false, the framework is not enabled
  address : 127.0.0.1:9200 #es connection address, which must contain ports. If the cluster is used, separate the port by commas (,):127.0.0.1:9200,127.0.0.2:9200
  username: elastic # If not, this line can be omitted
  password: WG7WVmuNMtM4GwNYkyWH #If no, you can omit this line

Other configurations can be omitted for now. The following section describes EasyEs configurations in detail

Add the @EsMapperScan annotation to the Spring Boot startup class and scan the Mapper folder:

@SpringBootApplication
@EsMapperScan("com.xpc.easyes.sample.mapper")
public class Application {

    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }

}

High level syntax

sort

For the sorting of fields, support ascending sorting and descending sorting:

// Sort in descending order
wrapper.orderByDesc(Sort field, multiple fields supported)
// Sort in ascending order
wrapper.orderByAsc(Sort fields, support multiple fields)

Example of use:

    @Test
    public void testSort(){
        // Test sort To test sort, we added a creation time field to the Document object, updated the index, and added two new pieces of data
        LambdaEsQueryWrapper<Document> wrapper = new LambdaEsQueryWrapper<>();
        wrapper.likeRight(Document::getContent,"1111");
        wrapper.select(Document::getTitle,Document::getGmtCreate);
        List<Document> before = documentMapper.selectList(wrapper);
        System.out.println("before:"+before);
        wrapper.orderByDesc(Document::getGmtCreate);
        List<Document> desc = documentMapper.selectList(wrapper);
        System.out.println("desc:"+desc);
    }

Highlight query

// The highlight label is not specified. The default is <em></em> to return the highlighted content
highLight; Highlight;
// Specify the highlighted label
highLight(Highlight field, start label, end label)

    @Test
    public void testHighlight() throws IOException {
        LambdaEsQueryWrapper<Document> wrapper = new LambdaEsQueryWrapper<>();
        String keyword = "11111";
        wrapper.match(Document::getContent,keyword);
        wrapper.highLight(Document::getContent);
        SearchResponse response = documentMapper.search(wrapper);
        System.out.println(response);
    }
资源下载此资源为免费资源立即下载
Telegram:@John_Software

Disclaimer: This article is published by a third party and represents the views of the author only and has nothing to do with this website. This site does not make any guarantee or commitment to the authenticity, completeness and timeliness of this article and all or part of its content, please readers for reference only, and please verify the relevant content. The publication or republication of articles by this website for the purpose of conveying more information does not mean that it endorses its views or confirms its description, nor does it mean that this website is responsible for its authenticity.

Ictcoder Free Source Code Easy-Es is an open source framework for simplifying ElasticSearch search engine operations https://ictcoder.com/easy-es-is-an-open-source-framework-for-simplifying-elasticsearch-search-engine-operations/

Share free open-source source code

Q&A
  • 1. Automatic: After making an online payment, click the (Download) link to download the source code; 2. Manual: Contact the seller or the official to check if the template is consistent. Then, place an order and make payment online. The seller ships the goods, and both parties inspect and confirm that there are no issues. ICTcoder will then settle the payment for the seller. Note: Please ensure to place your order and make payment through ICTcoder. If you do not place your order and make payment through ICTcoder, and the seller sends fake source code or encounters any issues, ICTcoder will not assist in resolving them, nor can we guarantee your funds!
View details
  • 1. Default transaction cycle for source code: The seller manually ships the goods within 1-3 days. The amount paid by the user will be held in escrow by ICTcoder until 7 days after the transaction is completed and both parties confirm that there are no issues. ICTcoder will then settle with the seller. In case of any disputes, ICTcoder will have staff to assist in handling until the dispute is resolved or a refund is made! If the buyer places an order and makes payment not through ICTcoder, any issues and disputes have nothing to do with ICTcoder, and ICTcoder will not be responsible for any liabilities!
View details
  • 1. ICTcoder will permanently archive the transaction process between both parties and snapshots of the traded goods to ensure the authenticity, validity, and security of the transaction! 2. ICTcoder cannot guarantee services such as "permanent package updates" and "permanent technical support" after the merchant's commitment. Buyers are advised to identify these services on their own. If necessary, they can contact ICTcoder for assistance; 3. When both website demonstration and image demonstration exist in the source code, and the text descriptions of the website and images are inconsistent, the text description of the image shall prevail as the basis for dispute resolution (excluding special statements or agreements); 4. If there is no statement such as "no legal basis for refund" or similar content, any indication on the product that "once sold, no refunds will be supported" or other similar declarations shall be deemed invalid; 5. Before the buyer places an order and makes payment, the transaction details agreed upon by both parties via WhatsApp or email can also serve as the basis for dispute resolution (in case of any inconsistency between the agreement and the description of the conflict, the agreement shall prevail); 6. Since chat records and email records can serve as the basis for dispute resolution, both parties should only communicate with each other through the contact information left on the system when contacting each other, in order to prevent the other party from denying their own commitments. 7. Although the probability of disputes is low, it is essential to retain important information such as chat records, text messages, and email records, in case a dispute arises, so that ICTcoder can intervene quickly.
View details
  • 1. As a third-party intermediary platform, ICTcoder solely protects transaction security and the rights and interests of both buyers and sellers based on the transaction contract (product description, agreed content before the transaction); 2. For online trading projects not on the ICTcoder platform, any consequences are unrelated to this platform; regardless of the reason why the seller requests an offline transaction, please contact the administrator to report.
View details

Related Source code

ICTcoder Customer Service

24-hour online professional services