Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

869
Views
how to pass parameter value into query in spring boot?

I made a custom query in JPA spring boot and I want to pass parameters as dynamic to the query, but it doesn't work well.

This is the query:

public interface CustomerRepository extends JpaRepository<Customer, Integer>{

    @Query(value = "select * from customer.customer_tbl"
                   + "where firstname like '%:keyword%';", nativeQuery = true)
    List<Customer> findByKeyword(@Param("keyword") String keyword);
}
over 4 years ago · Santiago Trujillo
2 answers
Answer question

0

Here '%:keyword%' is a string literal so param inside is not replaced.

Use CONCAT('%',:keyword,'%')

@Query(value = "select * from customer.customer_tbl where firstname like CONCAT('%',:keyword,'%');", nativeQuery = true)
List<Customer> findByKeyword(@Param("keyword") String keyword);
over 4 years ago · Santiago Trujillo Report

0

Try this.

public interface CustomerRepository extends JpaRepository<Customer, Integer>{

        @Query(value = "select * from customer.customer_tbl where firstname like CONCAT('%', :keyword, '%');", nativeQuery = true)
        List<Customer> findByKeyword(@Param("keyword") String keyword);
    }
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!