-
-
Save sjyun/1497fc9cf9f486ba17e50cc8d5ad4bd7 to your computer and use it in GitHub Desktop.
querydsl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
QUserEntity qUserEntity = QUserEntity.userEntity; | |
JPQLQuery<UserEntity> query = from(qUserEntity); | |
List<UserEntity> resultlist = query.where(qUserEntity.username.like(keyword)).fetch(); | |
return resultlist; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment