Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
xyqb-user2
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
head_group
xyqb-user2
Commits
0ca907cb
Commit
0ca907cb
authored
Nov 15, 2018
by
xiaoguang.xu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
limit 换成between and
parent
3203ce6f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
SyncHashController.java
...antgroup/xyqb/controller/external/SyncHashController.java
+1
-1
IUserRepository.java
...n/java/cn/quantgroup/xyqb/repository/IUserRepository.java
+1
-1
No files found.
src/main/java/cn/quantgroup/xyqb/controller/external/SyncHashController.java
View file @
0ca907cb
...
...
@@ -51,7 +51,7 @@ public class SyncHashController {
Long
startPosition
=
startUserId
;
while
(
isContinue
)
{
Long
endPosition
=
startPosition
+
step
;
List
<
User
>
users
=
userRepository
.
findB
t
IdBetween
(
startPosition
,
endPosition
);
List
<
User
>
users
=
userRepository
.
findB
y
IdBetween
(
startPosition
,
endPosition
);
if
(
users
.
isEmpty
())
{
log
.
info
(
"没有数据了. 结束了"
);
return
;
...
...
src/main/java/cn/quantgroup/xyqb/repository/IUserRepository.java
View file @
0ca907cb
...
...
@@ -50,6 +50,6 @@ public interface IUserRepository extends JpaRepository<User, Long>, JpaSpecifica
@Query
(
value
=
"select * from user where id >= ?1 limit ?2"
,
nativeQuery
=
true
)
List
<
User
>
findByIdLimit
(
Long
id
,
Long
limit
);
List
<
User
>
findB
t
IdBetween
(
Long
id
,
Long
endId
);
List
<
User
>
findB
y
IdBetween
(
Long
id
,
Long
endId
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment