All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rebue.wheel.vertx.guice.OracleGuiceModule Maven / Gradle / Ivy

There is a newer version: 3.5.45
Show newest version
package rebue.wheel.vertx.guice;

import com.google.inject.AbstractModule;
import com.google.inject.Provides;
import io.vertx.core.Vertx;
import io.vertx.core.json.JsonObject;
import io.vertx.sqlclient.Pool;
import jakarta.inject.Named;
import jakarta.inject.Singleton;
import lombok.extern.slf4j.Slf4j;
import rebue.wheel.vertx.util.OracleUtils;

@Slf4j
public class OracleGuiceModule extends AbstractModule {

    public OracleGuiceModule() {
        log.info("new OracleGuiceModule");
    }

    @Singleton
    @Provides
    Pool getPool(final Vertx vertx, @Named("config") final JsonObject config) {
        log.info("OracleGuiceModule.getPool");
        return OracleUtils.createPool(vertx, config.getJsonObject("oracle"));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy