Solution :
Add below query annotation
@Query(value="SELECT * FROM programmer WHERE name = ?1", nativeQuery = true)
instead of
@Query("SELECT * FROM programmer WHERE name = ?1")
The bug is not a pain it's the way to learn new things. Solve your bug by taking help from here.
Solution :
Add below query annotation
@Query(value="SELECT * FROM programmer WHERE name = ?1", nativeQuery = true)
instead of
@Query("SELECT * FROM programmer WHERE name = ?1")
Solution : Add below query annotation @Query(value="SELECT * FROM programmer WHERE name = ?1", nativeQuery = true ) instead of ...
No comments:
Post a Comment