Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
common
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
曲欣亮
common
Commits
8a3ecbb9
Commit
8a3ecbb9
authored
Jun 13, 2019
by
张永
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.egolm.com/key/common.git
parents
2a4fe134
bb6dbc52
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
0 deletions
+39
-0
StringUtil.java
src/main/java/com/egolm/common/StringUtil.java
+6
-0
JdbcTemplate.java
src/main/java/com/egolm/common/jdbc/JdbcTemplate.java
+33
-0
No files found.
src/main/java/com/egolm/common/StringUtil.java
View file @
8a3ecbb9
...
@@ -10,6 +10,7 @@ import java.io.UnsupportedEncodingException;
...
@@ -10,6 +10,7 @@ import java.io.UnsupportedEncodingException;
import
java.io.Writer
;
import
java.io.Writer
;
import
java.security.MessageDigest
;
import
java.security.MessageDigest
;
import
java.security.NoSuchAlgorithmException
;
import
java.security.NoSuchAlgorithmException
;
import
java.text.SimpleDateFormat
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.Collection
;
import
java.util.Collection
;
import
java.util.Comparator
;
import
java.util.Comparator
;
...
@@ -1137,4 +1138,9 @@ public class StringUtil {
...
@@ -1137,4 +1138,9 @@ public class StringUtil {
return
filePath
.
matches
(
"^.+\\.(?i)(xlsx)$"
);
return
filePath
.
matches
(
"^.+\\.(?i)(xlsx)$"
);
}
}
public
static
String
getRandomNum
(){
SimpleDateFormat
sdf
=
new
SimpleDateFormat
(
"yyyyMMddHHmmssSSS"
);
return
sdf
.
format
(
new
Date
())+
StringUtil
.
getRandom
(
4
);
}
}
}
src/main/java/com/egolm/common/jdbc/JdbcTemplate.java
View file @
8a3ecbb9
...
@@ -519,6 +519,39 @@ public class JdbcTemplate extends org.springframework.jdbc.core.JdbcTemplate {
...
@@ -519,6 +519,39 @@ public class JdbcTemplate extends org.springframework.jdbc.core.JdbcTemplate {
});
});
}
}
public
List
<
Object
>
exec
(
final
String
sql
,
final
Object
...
args
)
{
showSql
(
sql
,
args
);
return
super
.
execute
(
new
CallableStatementCreator
()
{
public
CallableStatement
createCallableStatement
(
final
Connection
con
)
throws
SQLException
{
final
CallableStatement
cs
=
con
.
prepareCall
(
sql
);
for
(
int
i
=
0
;
i
<
args
.
length
;
i
++)
{
cs
.
setObject
(
i
+
1
,
args
[
i
]);
}
return
cs
;
}
},
new
CallableStatementCallback
<
List
<
Object
>>()
{
public
List
<
Object
>
doInCallableStatement
(
final
CallableStatement
cs
)
throws
SQLException
,
DataAccessException
{
List
<
Object
>
datas
=
new
ArrayList
<
Object
>();
cs
.
execute
();
while
(
true
)
{
Integer
count
=
cs
.
getUpdateCount
();
ResultSet
resultSet
=
cs
.
getResultSet
();
if
(
count
==
-
1
&&
resultSet
==
null
)
{
break
;
}
else
{
if
(
resultSet
!=
null
)
{
datas
.
add
(
JUtil
.
resultSetToList
(
resultSet
));
}
else
{
datas
.
add
(
count
);
}
cs
.
getMoreResults
();
}
}
return
datas
;
}
});
}
public
synchronized
String
getNumber
(
String
...
args
)
{
public
synchronized
String
getNumber
(
String
...
args
)
{
String
sKey
=
null
;
String
sKey
=
null
;
String
format
=
null
;
String
format
=
null
;
...
...
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