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
Copy file name to clipboardExpand all lines: hibernate-reactive-core/src/main/java/org/hibernate/reactive/id/insert/ReactiveAbstractReturningDelegate.java
@Message(id = 19, value = "database username not specified (set the property 'jakarta.persistence.jdbc.user', or include it as a parameter in the connection URL)")
78
+
HibernateExceptiondatabaseUsernameNotSpecified();
79
+
77
80
@LogMessage(level = WARN)
78
81
@Message(id = 21, value = "DDL command failed [%1$s]")
79
82
voidddlCommandFailed(Stringmessage);
@@ -248,6 +251,9 @@ public interface Log extends BasicLogger {
248
251
@Message(id = 78, value = "Unable to bind parameters for post-insert id selection query: %1$s")
@Message(id = 79, value = "The configuration property '%1$s' was not provided, or is in invalid format. This is required when using the default DefaultSqlClientPool: either provide the configuration setting or integrate with a different SqlClientPool implementation")
returncreatePool( uri, configuration.connectOptions( uri ), configuration.poolOptions(), vertx.getVertx() );
180
168
}
181
169
@@ -273,10 +261,8 @@ public void stop() {
273
261
}
274
262
275
263
publicstaticURIparse(Stringurl) {
276
-
277
-
if ( url == null || url.trim().isEmpty() ) {
278
-
thrownewHibernateError( "The configuration property '" + Settings.URL + "' was not provided, or is in invalid format. This is required when using the default DefaultSqlClientPool: " +
279
-
"either provide the configuration setting or integrate with a different SqlClientPool implementation" );
Copy file name to clipboardExpand all lines: hibernate-reactive-core/src/main/java/org/hibernate/reactive/pool/impl/DefaultSqlClientPoolConfiguration.java
0 commit comments