I am trying to hibernate reactive with Oracle 19c. When I send URL as below, I got an error seems string limitation. How can I resolve this issue?
DB URL: "jdbc:oracle:thin:@(DESCRIPTION=(ENABLE=BROKEN)(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SID=ORCLCDB)))"
ERROR: Factory method 'sessionFactory' threw exception; nested exception is java.lang.StringIndexOutOfBoundsException: begin 0, end -1, length 108
below is my code
public Mutiny.SessionFactory sessionFactory() {
org.hibernate.cfg.Configuration configuration = constructConfiguration();
StandardServiceRegistryBuilder builder = new ReactiveServiceRegistryBuilder().applySettings( configuration.getProperties() );
StandardServiceRegistry registry = builder.build();
return configuration.buildSessionFactory( registry ).unwrap( Mutiny.SessionFactory.class );
}
private org.hibernate.cfg.Configuration constructConfiguration() {
org.hibernate.cfg.Configuration configuration = new org.hibernate.cfg.Configuration();
entityTypes().forEach(configuration::addAnnotatedClass);
// set DB info
configuration.setProperty(Settings.DRIVER, "oracle.jdbc.driver.OracleDriver"));
// it works
configuration.setProperty(Settings.URL,"jdbc:oracle:thin:@localhost:1521/ORCLCDB");
// it raises the error
// configuration.setProperty(Settings.URL,"jdbc:oracle:thin:@(DESCRIPTION=(ENABLE=BROKEN)(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SID=ORCLCDB)))");
configuration.setProperty(Settings.USER, "user"));
configuration.setProperty(Settings.PASS, "1234"));
return configuration;
}
private Collection<Class<?>> entityTypes() {
List<Class<?>> list = new ArrayList<>();
list.add(TestEntity.class);
return list;
}
I don't think Hibernate Reactive can parse that type of URLs at the moment.
Underneath, Hibernate Reactive uses a Vert.x SQL client. One workaround is to configure the driver yourself implementing the interface
SqlClientPoolConfiguration
and add it as a service to via theServiceContributor
.The process is the same as the one described in the documentation for
VertxInstance
:DefaultSqlClientPoolConfiguration
connectOptions(URI uri)
:org.hibernate.service.spi.ServiceContributor
to/META-INF/services/
:Some info about
SqlClientPoolOptions
is available in the documentation of the Vert.x SQL client for Oracle.