我正在使用条件是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);