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

rebue.wheel.vertx.guice.PostgreGuiceModule 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.PostgreUtils;

@Slf4j
public class PostgreGuiceModule extends AbstractModule {

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy