Skip to content

Instantly share code, notes, and snippets.

@AdrianoJS
Created April 12, 2023 18:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AdrianoJS/399cfa7ee4982a0f8a0abbdbefbb581c to your computer and use it in GitHub Desktop.
Save AdrianoJS/399cfa7ee4982a0f8a0abbdbefbb581c to your computer and use it in GitHub Desktop.
spring-cloud-gateway-example-gatewayApplication
package no.embriq.api.gateway;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication(scanBasePackages = "no.embriq.api.gateway")
public class GatewayApplication {
public static void main(String[] args) {
SpringApplication.run(GatewayApplication.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment