Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
apollo
Project
Overview
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
openSource
apollo
Commits
be15d8ce
Commit
be15d8ce
authored
May 05, 2016
by
Jason Song
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Manually close the entity manager for async requests.
parent
f17e7ea8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
41 additions
and
0 deletions
+41
-0
EntityManagerUtil.java
...in/java/com/ctrip/apollo/biz/utils/EntityManagerUtil.java
+25
-0
NotificationController.java
...ollo/configservice/controller/NotificationController.java
+11
-0
NotificationControllerTest.java
.../configservice/controller/NotificationControllerTest.java
+5
-0
No files found.
apollo-biz/src/main/java/com/ctrip/apollo/biz/utils/EntityManagerUtil.java
0 → 100644
View file @
be15d8ce
package
com
.
ctrip
.
apollo
.
biz
.
utils
;
import
org.springframework.orm.jpa.EntityManagerFactoryAccessor
;
import
org.springframework.orm.jpa.EntityManagerFactoryUtils
;
import
org.springframework.orm.jpa.EntityManagerHolder
;
import
org.springframework.stereotype.Component
;
import
org.springframework.transaction.support.TransactionSynchronizationManager
;
/**
* @author Jason Song(song_s@ctrip.com)
*/
@Component
public
class
EntityManagerUtil
extends
EntityManagerFactoryAccessor
{
/**
* close the entity manager.
* Use it with caution! This is only intended for use with async request, which Spring won't
* close the entity manager until the async request is finished.
*/
public
void
closeEntityManager
()
{
EntityManagerHolder
emHolder
=
(
EntityManagerHolder
)
TransactionSynchronizationManager
.
getResource
(
getEntityManagerFactory
());
logger
.
debug
(
"Closing JPA EntityManager in EntityManagerUtil"
);
EntityManagerFactoryUtils
.
closeEntityManager
(
emHolder
.
getEntityManager
());
}
}
apollo-configservice/src/main/java/com/ctrip/apollo/configservice/controller/NotificationController.java
View file @
be15d8ce
...
...
@@ -12,6 +12,7 @@ import com.ctrip.apollo.biz.entity.AppNamespace;
import
com.ctrip.apollo.biz.message.MessageListener
;
import
com.ctrip.apollo.biz.message.Topics
;
import
com.ctrip.apollo.biz.service.AppNamespaceService
;
import
com.ctrip.apollo.biz.utils.EntityManagerUtil
;
import
com.ctrip.apollo.core.ConfigConsts
;
import
com.ctrip.apollo.core.dto.ApolloConfigNotification
;
import
com.dianping.cat.Cat
;
...
...
@@ -49,6 +50,9 @@ public class NotificationController implements MessageListener {
@Autowired
private
AppNamespaceService
appNamespaceService
;
@Autowired
private
EntityManagerUtil
entityManagerUtil
;
@RequestMapping
(
method
=
RequestMethod
.
GET
)
public
DeferredResult
<
ResponseEntity
<
ApolloConfigNotification
>>
pollNotification
(
@RequestParam
(
value
=
"appId"
)
String
appId
,
...
...
@@ -94,6 +98,13 @@ public class NotificationController implements MessageListener {
String
dataCenter
)
{
List
<
String
>
publicWatchedKeys
=
Lists
.
newArrayList
();
AppNamespace
appNamespace
=
appNamespaceService
.
findByNamespaceName
(
namespace
);
/**
* Manually close the entity manager.
* Since for async request, Spring won't do so until the request is finished,
* which is unacceptable since we are doing long polling - means the db connection would be hold
* for a very long time
*/
entityManagerUtil
.
closeEntityManager
();
//check whether the namespace's appId equals to current one
if
(
Objects
.
isNull
(
appNamespace
)
||
Objects
.
equals
(
applicationId
,
appNamespace
.
getAppId
()))
{
...
...
apollo-configservice/src/test/java/com/ctrip/apollo/configservice/controller/NotificationControllerTest.java
View file @
be15d8ce
...
...
@@ -7,6 +7,7 @@ import com.google.common.collect.Multimap;
import
com.ctrip.apollo.biz.entity.AppNamespace
;
import
com.ctrip.apollo.biz.message.Topics
;
import
com.ctrip.apollo.biz.service.AppNamespaceService
;
import
com.ctrip.apollo.biz.utils.EntityManagerUtil
;
import
com.ctrip.apollo.core.ConfigConsts
;
import
com.ctrip.apollo.core.dto.ApolloConfigNotification
;
...
...
@@ -15,6 +16,7 @@ import org.junit.Test;
import
org.junit.runner.RunWith
;
import
org.mockito.Mock
;
import
org.mockito.runners.MockitoJUnitRunner
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.test.util.ReflectionTestUtils
;
...
...
@@ -39,6 +41,8 @@ public class NotificationControllerTest {
private
String
someDataCenter
;
@Mock
private
AppNamespaceService
appNamespaceService
;
@Mock
private
EntityManagerUtil
entityManagerUtil
;
private
Multimap
<
String
,
DeferredResult
<
ResponseEntity
<
ApolloConfigNotification
>>>
deferredResults
;
...
...
@@ -46,6 +50,7 @@ public class NotificationControllerTest {
public
void
setUp
()
throws
Exception
{
controller
=
new
NotificationController
();
ReflectionTestUtils
.
setField
(
controller
,
"appNamespaceService"
,
appNamespaceService
);
ReflectionTestUtils
.
setField
(
controller
,
"entityManagerUtil"
,
entityManagerUtil
);
someAppId
=
"someAppId"
;
someCluster
=
"someCluster"
;
...
...
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