我正在使用条件是JPA,我正面临这个问题。

@Query("select new com.tivo.extract.config.model.DTO(s.SourceId, s.SourceName, t.TvsourceLongName) from MyTelevisionSource t join fetch RCMSource s ON s.SourceId = t.SourceId where s.SourceId LIKE ?1% ")
List<DTO> findFilteredSourceList(String seachInput);


如果我像s.SourceId那样使用%?1% --> %searchInput% ->

但是对于s.SourceId之类的?1% -> searchInput% ->它不起作用

数据库中Long类型的SourceId列。

我遇到一个例外:

Parameter value [021%] did not match expected type [java.lang.Long (n/a)];
nested exception is java.lang.IllegalArgumentException:
Parameter value [021%] did not match expected type [java.lang.Long (n/a)]

最佳答案

尝试玩CONCAT

@Query("select new com.tivo.extract.config.model.DTO(s.SourceId, s.SourceName, t.TvsourceLongName)
        from MyTelevisionSource t join fetch RCMSource s ON s.SourceId = t.SourceId
        where s.SourceId LIKE CONCAT(?1,'%') ")
    List<DTO> findFilteredSourceList(String seachInput);

09-25 20:38