About 979,000 results
Open links in new tab
  1. Spring Boot - Build a Dynamic Full Text Search API Using JPA …

    Jan 10, 2024 · Global Full-Text Entity Search is like having a super-smart search companion that digs deep into the entire content of entities. Consider the below examples to understand this better. 1). GeeksforGeeks Website Example. Scenario: Imagine you're on GeeksforGeeks, a site with lots of coding articles.

  2. Prototyping a Spring Boot application for a Text Search Engine …

    In this demo I develop a Spring Boot application that, via REST APIs, allows: managing collections of texts documents searching by multiple keywords and returning documents from a specified collection, ranked by their relevancy score

  3. Implement search functionality for JPA and Spring boot

    May 1, 2019 · I'm trying to implement properly search functionality for database table. I tried this approach: Controller: @GetMapping. public Page<TransactionDTO> find(TransactionFilterDTO filter, Pageable page) { return searchRepository. .findTransactionsByFilter(mapper.toFilter(filter), page) .map(mapper::toDTO); Filer DTO: private String name;

  4. Building Semantic Search with Elasticsearch using Spring Boot

    Apr 18, 2023 · In this article, we will walk you through the process of building a semantic search system using Elasticsearch, Java, and Spring Boot, complete with code samples and Mermaid diagrams to...

  5. Custom Sequence Generator in Spring Boot JPA - Stack Overflow

    I want the empid to be generated in sequence like EMP_01,EMP_02..... Employee.classs. import javax.persistence.*; @Id. @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "emp_seq") @GenericGenerator(name = "emp_seq", strategy = "aurozen.assign.aurozenassign.StringPrefixedSequenceIdGenerator", parameters = {

  6. Implement search and filtering functionality for Spring boot

    Implement complex search feature using Spring BOOT REST and Spring Data JPA using Criteria API

  7. Build a Spring Boot REST API with Full-Text Search using

    Apr 9, 2022 · In this blog post, we will learn how to build a simple REST API endpoint in Spring boot and use Hibernate Search for full-text search.

  8. Spring Boot Search Example using Thymeleaf and Spring Data …

    Aug 24, 2021 · In this article, we will learn how to filter data using the thymeleaf template and Spring data JPA. We will create a spring boot application where we will implement search or filter functionality using Spring Data JPA at the data access layer, Thymeleaf at the view layer, and MYSQL as a database.

  9. Search REST API using Spring Boot, Spring Data JPA and MySQL …

    In this tutorial, we are going to build a Search / Filter REST API using Spring Boot, Spring Data JPA, and MySQL Database.

  10. Spring Data JPA Filter Search Examples - CodeJava.net

    May 15, 2020 · In this tutorial, you will learn to implement filter/search functionality for an existing Spring Boot application using Spring Data JPA, Hibernate, MySQL and Thymeleaf. Suppose that we have an existing Spring Boot application that displays a list of products as follows:

  11. Some results have been removed
Refresh