Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
userManagement
Commits
b6ed69ec
Commit
b6ed69ec
authored
1 year ago
by
Mahesh Maney R
Browse files
Options
Download
Patches
Plain Diff
adding pagination feature to user details <ManeyMR>.
parent
d990b560
main
UAT_quick_fix_keycloak
UPHRH_8164_ErrorHandling
dev
dev_stable
devops-patch
feature_update_fee
rahu_error_message_fix
uat
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/com/tarento/upsmf/userManagement/repository/UserAttributeRepository.java
+3
-2
...mf/userManagement/repository/UserAttributeRepository.java
src/main/java/com/tarento/upsmf/userManagement/services/UserService.java
+8
-8
...om/tarento/upsmf/userManagement/services/UserService.java
with
11 additions
and
10 deletions
+11
-10
src/main/java/com/tarento/upsmf/userManagement/repository/UserAttributeRepository.java
+
3
−
2
View file @
b6ed69ec
...
...
@@ -10,6 +10,7 @@ import java.util.List;
@Repository
public
interface
UserAttributeRepository
extends
JpaRepository
<
UserAttributeModel
,
String
>
{
@Query
(
value
=
"SELECT * FROM user_attribute WHERE name=:fieldName and value=:fieldValue"
,
nativeQuery
=
true
)
List
<
UserAttributeModel
>
findUserByAttribute
(
@Param
(
"fieldName"
)
String
fieldName
,
@Param
(
"fieldValue"
)
String
fieldValue
);
@Query
(
value
=
"SELECT * FROM user_attribute WHERE name=:fieldName and value=:fieldValue OFFSET :offset LIMIT :limit"
,
nativeQuery
=
true
)
List
<
UserAttributeModel
>
findUserByAttribute
(
@Param
(
"fieldName"
)
String
fieldName
,
@Param
(
"fieldValue"
)
String
fieldValue
,
@Param
(
"offset"
)
int
offset
,
@Param
(
"limit"
)
int
limit
);
}
This diff is collapsed.
Click to expand it.
src/main/java/com/tarento/upsmf/userManagement/services/UserService.java
+
8
−
8
View file @
b6ed69ec
...
...
@@ -243,13 +243,13 @@ public class UserService {
return
new
ResponseEntity
<>(
transaction
,
HttpStatus
.
OK
);
}
public
List
<
UserAttributeModel
>
getUserByAttribute
(
String
fieldName
,
String
fieldValue
)
{
return
userAttributeRepository
.
findUserByAttribute
(
fieldName
,
fieldValue
);
public
List
<
UserAttributeModel
>
getUserByAttribute
(
String
fieldName
,
String
fieldValue
,
int
offset
,
int
limit
)
{
return
userAttributeRepository
.
findUserByAttribute
(
fieldName
,
fieldValue
,
offset
,
limit
);
}
public
List
getUserListByAttribute
(
String
fieldName
,
String
fieldValue
,
int
offset
,
int
limit
)
throws
SQLException
{
List
<
UserAttributeModel
>
userByAttribute
=
getUserByAttribute
(
fieldName
,
fieldValue
);
List
<
UserAttributeModel
>
userByAttribute
=
getUserByAttribute
(
fieldName
,
fieldValue
,
offset
,
limit
);
if
(
userByAttribute
==
null
||
userByAttribute
.
isEmpty
()){
logger
.
info
(
"No records found."
);
return
Collections
.
EMPTY_LIST
;
...
...
@@ -257,7 +257,7 @@ public class UserService {
logger
.
info
(
"Records found {}"
,
userByAttribute
);
List
<
String
>
collect
=
userByAttribute
.
stream
().
map
(
UserAttributeModel:
:
getUserId
).
collect
(
Collectors
.
toList
());
Map
<
String
,
UserRepresentation
>
userRepresentationMap
=
getStringUserRepresentationMap
(
collect
,
offset
,
limit
);
Map
<
String
,
UserRepresentation
>
userRepresentationMap
=
getStringUserRepresentationMap
(
collect
);
if
(
userRepresentationMap
.
isEmpty
()){
logger
.
info
(
"No UserRepresentation records found for {}"
,
collect
);
return
Collections
.
EMPTY_LIST
;
...
...
@@ -265,9 +265,9 @@ public class UserService {
return
new
ArrayList
<>(
userRepresentationMap
.
values
());
}
private
Map
<
String
,
UserRepresentation
>
getStringUserRepresentationMap
(
List
<
String
>
collect
,
int
offset
,
int
limit
)
throws
SQLException
{
private
Map
<
String
,
UserRepresentation
>
getStringUserRepresentationMap
(
List
<
String
>
collect
)
throws
SQLException
{
Connection
connection
=
Objects
.
requireNonNull
(
jdbcTemplate
.
getDataSource
()).
getConnection
();
String
formattedString
=
getFormattedStringFromCollection
(
collect
,
offset
,
limit
);
String
formattedString
=
getFormattedStringFromCollection
(
collect
);
Map
<
String
,
UserRepresentation
>
userRepresentationMap
=
new
HashMap
<>();
ResultSet
resultSet
=
null
;
PreparedStatement
preparedStatement
=
null
;
...
...
@@ -311,7 +311,7 @@ public class UserService {
return
userRepresentationMap
;
}
private
String
getFormattedStringFromCollection
(
List
<
String
>
collect
,
int
offset
,
int
limit
)
{
private
String
getFormattedStringFromCollection
(
List
<
String
>
collect
)
{
StringBuffer
sbf
=
new
StringBuffer
();
sbf
.
append
(
"select ue.*,ua.name,ua.value from user_entity ue join user_attribute ua on ua.user_id = ue.id WHERE ue.id IN ("
);
collect
.
stream
().
forEach
(
item
->
{
...
...
@@ -319,7 +319,7 @@ public class UserService {
sbf
.
append
(
","
);
});
String
substring
=
sbf
.
substring
(
0
,
sbf
.
lastIndexOf
(
","
));
substring
=
substring
+
(
"
) OFFSET "
+
offset
+
" LIMIT "
+
limit
);
substring
=
substring
+
(
"
)"
);
logger
.
info
(
"Query to be Executed {}"
,
substring
);
return
substring
;
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets