Commit f68dc324b80d31e80d3e8d90daa9675e04736c5a
1 parent
ffb747f2b0
Exists in
master
and in
6 other branches
高危诊断配置
Showing 1 changed file with 5 additions and 5 deletions
platform-biz-patient-service/src/main/java/com/lyms/platform/biz/service/AntenatalExaminationService.java
View file @
f68dc32
| ... | ... | @@ -43,9 +43,9 @@ |
| 43 | 43 | @Autowired |
| 44 | 44 | private PatientsService patientsService; |
| 45 | 45 | |
| 46 | - @Autowired | |
| 47 | - @Qualifier("commonThreadPool") | |
| 48 | - private ThreadPoolTaskExecutor commonThreadPool; | |
| 46 | +// @Autowired | |
| 47 | +// @Qualifier("commonThreadPool") | |
| 48 | +// private ThreadPoolTaskExecutor commonThreadPool; | |
| 49 | 49 | |
| 50 | 50 | |
| 51 | 51 | @Autowired |
| ... | ... | @@ -150,7 +150,7 @@ |
| 150 | 150 | */ |
| 151 | 151 | public void handleCheckPoint(final String pid) |
| 152 | 152 | { |
| 153 | - commonThreadPool.execute(new Runnable() { | |
| 153 | + new Thread(new Runnable() { | |
| 154 | 154 | @Override |
| 155 | 155 | public void run() { |
| 156 | 156 | if(StringUtils.isEmpty(pid)){ |
| ... | ... | @@ -264,7 +264,7 @@ |
| 264 | 264 | } |
| 265 | 265 | } |
| 266 | 266 | } |
| 267 | - }); | |
| 267 | + }).start(); | |
| 268 | 268 | |
| 269 | 269 | } |
| 270 | 270 |