Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
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
DEMO
spring-boot
Commits
b7e69890
Commit
b7e69890
authored
Jan 11, 2020
by
Dmytro Nosan
Committed by
Stephane Nicoll
Jan 13, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix retrieval of parent logger in PoolingDataSourceBean
See gh-19637
parent
b23b69fe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
8 deletions
+35
-8
PoolingDataSourceBean.java
...ingframework/boot/jta/bitronix/PoolingDataSourceBean.java
+10
-7
PoolingDataSourceBeanTests.java
...amework/boot/jta/bitronix/PoolingDataSourceBeanTests.java
+25
-1
No files found.
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/jta/bitronix/PoolingDataSourceBean.java
View file @
b7e69890
/*
/*
* Copyright 2012-20
19
the original author or authors.
* Copyright 2012-20
20
the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
...
@@ -107,13 +107,16 @@ public class PoolingDataSourceBean extends PoolingDataSource implements BeanName
...
@@ -107,13 +107,16 @@ public class PoolingDataSourceBean extends PoolingDataSource implements BeanName
@Override
@Override
public
Logger
getParentLogger
()
throws
SQLFeatureNotSupportedException
{
public
Logger
getParentLogger
()
throws
SQLFeatureNotSupportedException
{
try
{
XADataSource
dataSource
=
this
.
dataSource
;
return
this
.
getParentLogger
();
if
(
dataSource
!=
null
)
{
}
try
{
catch
(
Exception
ex
)
{
return
dataSource
.
getParentLogger
();
// Work around https://jira.codehaus.org/browse/BTM-134
}
return
Logger
.
getLogger
(
Logger
.
GLOBAL_LOGGER_NAME
);
catch
(
Exception
ex
)
{
// Swallow and continue
}
}
}
return
Logger
.
getLogger
(
Logger
.
GLOBAL_LOGGER_NAME
);
}
}
/**
/**
...
...
spring-boot-project/spring-boot/src/test/java/org/springframework/boot/jta/bitronix/PoolingDataSourceBeanTests.java
View file @
b7e69890
/*
/*
* Copyright 2012-20
19
the original author or authors.
* Copyright 2012-20
20
the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
package
org
.
springframework
.
boot
.
jta
.
bitronix
;
package
org
.
springframework
.
boot
.
jta
.
bitronix
;
import
java.sql.Connection
;
import
java.sql.Connection
;
import
java.sql.SQLFeatureNotSupportedException
;
import
java.util.logging.Logger
;
import
javax.sql.XAConnection
;
import
javax.sql.XAConnection
;
import
javax.sql.XADataSource
;
import
javax.sql.XADataSource
;
...
@@ -60,6 +62,28 @@ public class PoolingDataSourceBeanTests {
...
@@ -60,6 +62,28 @@ public class PoolingDataSourceBeanTests {
assertThat
(
this
.
bean
.
getUniqueName
()).
isEqualTo
(
"un"
);
assertThat
(
this
.
bean
.
getUniqueName
()).
isEqualTo
(
"un"
);
}
}
@Test
public
void
shouldReturnGlobalLoggerWhenDataSourceIsAbsent
()
throws
SQLFeatureNotSupportedException
{
assertThat
(
this
.
bean
.
getParentLogger
()).
isSameAs
(
Logger
.
getLogger
(
Logger
.
GLOBAL_LOGGER_NAME
));
}
@Test
public
void
shouldReturnGlobalLoggerWhenDataSourceThrowsException
()
throws
SQLFeatureNotSupportedException
{
XADataSource
dataSource
=
mock
(
XADataSource
.
class
);
given
(
dataSource
.
getParentLogger
()).
willThrow
(
new
SQLFeatureNotSupportedException
());
this
.
bean
.
setDataSource
(
dataSource
);
assertThat
(
this
.
bean
.
getParentLogger
()).
isSameAs
(
Logger
.
getLogger
(
Logger
.
GLOBAL_LOGGER_NAME
));
}
@Test
public
void
shouldReturnParentLoggerFromDataSource
()
throws
SQLFeatureNotSupportedException
{
Logger
logger
=
Logger
.
getLogger
(
"test"
);
XADataSource
dataSource
=
mock
(
XADataSource
.
class
);
given
(
dataSource
.
getParentLogger
()).
willReturn
(
logger
);
this
.
bean
.
setDataSource
(
dataSource
);
assertThat
(
this
.
bean
.
getParentLogger
()).
isSameAs
(
logger
);
}
@Test
@Test
public
void
setDataSource
()
throws
Exception
{
public
void
setDataSource
()
throws
Exception
{
XADataSource
dataSource
=
mock
(
XADataSource
.
class
);
XADataSource
dataSource
=
mock
(
XADataSource
.
class
);
...
...
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