Skip to content

Commit 09cea6e

Browse files
committed
Refined Future exception handling
Issue: SPR-13732
1 parent d59b0d1 commit 09cea6e

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

spring-orm-hibernate5/src/main/java/org/springframework/orm/hibernate5/LocalSessionFactoryBuilder.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -340,10 +340,12 @@ private SessionFactory getSessionFactory() {
340340
return this.sessionFactoryFuture.get();
341341
}
342342
catch (InterruptedException ex) {
343-
throw new IllegalStateException("Interrupted during initialization of Hibernate SessionFactory", ex);
343+
throw new IllegalStateException("Interrupted during initialization of Hibernate SessionFactory: " +
344+
ex.getMessage());
344345
}
345346
catch (ExecutionException ex) {
346-
throw new IllegalStateException("Failed to asynchronously initialize Hibernate SessionFactory", ex);
347+
throw new IllegalStateException("Failed to asynchronously initialize Hibernate SessionFactory: " +
348+
ex.getMessage(), ex.getCause());
347349
}
348350
}
349351
}

spring-orm/src/main/java/org/springframework/orm/jpa/AbstractEntityManagerFactoryBean.java

+4-5
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,6 @@ public EntityManagerFactory call() {
366366
// application-managed EntityManager proxy that automatically joins
367367
// existing transactions.
368368
this.entityManagerFactory = createEntityManagerFactoryProxy(this.nativeEntityManagerFactory);
369-
System.out.println("Returning: " + System.currentTimeMillis());
370369
}
371370

372371
private EntityManagerFactory buildNativeEntityManagerFactory() {
@@ -381,7 +380,6 @@ private EntityManagerFactory buildNativeEntityManagerFactory() {
381380
if (logger.isInfoEnabled()) {
382381
logger.info("Initialized JPA EntityManagerFactory for persistence unit '" + getPersistenceUnitName() + "'");
383382
}
384-
System.out.println("Done: " + System.currentTimeMillis());
385383
return emf;
386384
}
387385

@@ -481,15 +479,16 @@ public EntityManagerFactory getNativeEntityManagerFactory() {
481479
return this.nativeEntityManagerFactory;
482480
}
483481
else {
484-
System.out.println("Requested: " + System.currentTimeMillis());
485482
try {
486483
return this.nativeEntityManagerFactoryFuture.get();
487484
}
488485
catch (InterruptedException ex) {
489-
throw new IllegalStateException("Interrupted during initialization of native EntityManagerFactory", ex);
486+
throw new IllegalStateException("Interrupted during initialization of native EntityManagerFactory: " +
487+
ex.getMessage());
490488
}
491489
catch (ExecutionException ex) {
492-
throw new IllegalStateException("Failed to asynchronously initialize native EntityManagerFactory", ex);
490+
throw new IllegalStateException("Failed to asynchronously initialize native EntityManagerFactory: " +
491+
ex.getMessage(), ex.getCause());
493492
}
494493
}
495494
}

0 commit comments

Comments
 (0)