Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
sentinel
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
曲欣亮
sentinel
Commits
82b2c1ec
Commit
82b2c1ec
authored
May 30, 2019
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
c0ba9f1a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
SqlTestController.java
src/main/java/com/egolm/sentinel/web/SqlTestController.java
+4
-5
No files found.
src/main/java/com/egolm/sentinel/web/SqlTestController.java
View file @
82b2c1ec
...
...
@@ -30,8 +30,6 @@ public class SqlTestController {
private
static
final
Logger
logger
=
Logger
.
getLogger
(
ExceptionHandler
.
class
);
@PostMapping
(
"executeSql"
)
public
Rjx
doExecute
(
String
jdbcUrl
,
String
username
,
String
password
,
String
sql
,
String
parameters
)
{
int
queryTimeout
=
60
;
...
...
@@ -51,6 +49,7 @@ public class SqlTestController {
}.
start
();
try
{
String
driverClass
=
null
;
String
validationQuery
=
"select 1"
;
if
(
jdbcUrl
.
toLowerCase
().
contains
(
"jtds"
))
{
driverClass
=
"net.sourceforge.jtds.jdbc.Driver"
;
}
else
if
(
jdbcUrl
.
contains
(
"mysql"
))
{
...
...
@@ -75,11 +74,11 @@ public class SqlTestController {
dataSource
.
setPoolPreparedStatements
(
true
);
dataSource
.
setMaxPoolPreparedStatementPerConnectionSize
(
20
);
dataSource
.
setQueryTimeout
(
queryTimeout
);
dataSource
.
setValidationQuery
(
validationQuery
);
dataSource
.
setValidationQueryTimeout
(
queryTimeout
);
dataSource
.
init
();
JdbcTemplate
jdbcTemplate
=
new
JdbcTemplate
();
jdbcTemplate
.
setDataSource
(
dataSource
);
jdbcTemplate
.
setQueryTimeout
(
queryTimeout
);
List
<
Object
>
argList
=
new
ArrayList
<
Object
>();
if
(
StringUtil
.
isNotBlank
(
parameters
))
{
...
...
@@ -103,7 +102,6 @@ public class SqlTestController {
List
<?>
list
=
jdbcTemplate
.
execute
(
new
CallableStatementCreator
()
{
public
CallableStatement
createCallableStatement
(
final
Connection
con
)
throws
SQLException
{
final
CallableStatement
cs
=
con
.
prepareCall
(
sql
);
cs
.
setQueryTimeout
(
queryTimeout
);
if
(
args
.
length
>
0
)
{
for
(
int
i
=
0
;
i
<
args
.
length
;
i
++)
{
cs
.
setObject
(
i
+
1
,
args
[
i
]);
...
...
@@ -144,6 +142,7 @@ public class SqlTestController {
});
return
Rjx
.
jsonOk
().
setData
(
list
);
}
catch
(
Throwable
e
)
{
e
.
printStackTrace
();
return
Rjx
.
jsonOk
().
setMessage
(
ExceptionHandler
.
toStackString
(
e
).
toString
());
}
finally
{
dataSource
.
close
();
...
...
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