You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using a custom class loader, a call to getResource("") may return a URL that points inside a JAR. This may become the case in Spring Boot, for example. This adversely affects DefaultPersistenceUnitManager.determineDefaultPersistenceUnitRootUrl() which returns a URL that Hibernate then logs a warning about.
It looks like the same ResourceUtils.isJarURL(url) and ResourceUtils.extractJarFileURL(url) arrangement that is in buildDefaultPersistenceUnitInfo may also be appropriate in determineDefaultPersistenceUnitRootUrl().