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

io.github.kilmajster.ngrok.configuration.NgrokAutoConfiguration Maven / Gradle / Ivy

Go to download

🚀 Spring Boot tunneling with Ngrok made easy! No matter if you are using Windows, Mac OS X, Linux or even Docker - ngrok binary will be chosen automatically 🤖 so you don't need to care about environment changing etc. auto-configuration magic 🧙‍♂️

There is a newer version: 0.9.2
Show newest version
package io.github.kilmajster.ngrok.configuration;

import io.github.kilmajster.ngrok.control.NgrokApiClient;
import io.github.kilmajster.ngrok.control.NgrokDownloader;
import io.github.kilmajster.ngrok.control.NgrokRunner;
import io.github.kilmajster.ngrok.control.NgrokSystemCommandExecutor;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.task.TaskExecutor;

@ComponentScan(basePackages = "io.github.kilmajster.ngrok")
@Configuration
public class NgrokAutoConfiguration {

    private static final Logger log = LoggerFactory.getLogger(NgrokAutoConfiguration.class);

    @Bean
    @ConditionalOnProperty(name = "ngrok.enabled", havingValue = "true")
    public NgrokRunner ngrokRunner(
            @Value("${server.port:8080}") String port,
            @Value("${ngrok.directory:}") String ngrokDirectory,
            @Value("${ngrok.config:}") String ngrokConfigFilePath,
            @Autowired NgrokApiClient ngrokApiClient,
            @Autowired NgrokDownloader ngrokDownloader,
            @Autowired NgrokSystemCommandExecutor systemCommandExecutor,
            @Autowired @Qualifier("ngrokExecutor") TaskExecutor ngrokExecutor) {
        log.info("Ngrok is enabled.");

        return new NgrokRunner(port, ngrokDirectory, ngrokConfigFilePath, ngrokApiClient, ngrokDownloader, systemCommandExecutor, ngrokExecutor);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy