Closes gh-11510
This commit is contained in:
Johnny Lim
2018-01-05 09:10:06 +09:00
committed by Stephane Nicoll
parent 7c5cf903fc
commit 37d8eedae3
20 changed files with 36 additions and 42 deletions

View File

@@ -77,7 +77,7 @@ class HibernateJpaConfiguration extends JpaBaseConfiguration {
*/
private static final String[] WEBSPHERE_JTA_PLATFORM_CLASSES = {
"org.hibernate.engine.transaction.jta.platform.internal.WebSphereExtendedJtaPlatform",
"org.hibernate.service.jta.platform.internal.WebSphereExtendedJtaPlatform", };
"org.hibernate.service.jta.platform.internal.WebSphereExtendedJtaPlatform" };
private final HibernateDefaultDdlAutoProvider defaultDdlAutoProvider;

View File

@@ -224,7 +224,7 @@ public class ServerProperties {
/**
* Servlet properties.
*/
public class Servlet {
public static class Servlet {
/**
* Servlet context init parameters.

View File

@@ -303,7 +303,7 @@ public class ImportAutoConfigurationImportSelectorTests {
@Retention(RetentionPolicy.RUNTIME)
@interface MetaImportAutoConfiguration {
@AliasFor(annotation = ImportAutoConfiguration.class, attribute = "exclude")
@AliasFor(annotation = ImportAutoConfiguration.class)
Class<?>[] exclude() default {};
}