io.micronaut.runtime.Micronaut Java Examples

The following examples show how to use io.micronaut.runtime.Micronaut. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Main.java    From kyoko with MIT License 5 votes vote down vote up
public static void main(String[] args) {
    Banner.show(logger, "Kyoko backend service");

    loadSettings();
    catnip = configureCatnip();

    Micronaut.run(Main.class);
}
 
Example #2
Source File: Application.java    From micronaut-graphql with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}
 
Example #3
Source File: AgentPortalGatewayApplication.java    From micronaut-microservices-poc with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(AgentPortalGatewayApplication.class);
}
 
Example #4
Source File: Application.java    From micronaut-graphql with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}
 
Example #5
Source File: Application.java    From micronaut-graphql with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}
 
Example #6
Source File: Application.java    From micronaut-graphql with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}
 
Example #7
Source File: Application.java    From micronaut-graphql with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}
 
Example #8
Source File: Application.java    From micronaut-grpc with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}
 
Example #9
Source File: Application.java    From micronaut-spring with Apache License 2.0 4 votes vote down vote up
public static void main(String... args) {
        Micronaut.run(Application.class);
//        org.springframework.boot.SpringApplication.run(Application.class);
    }
 
Example #10
Source File: Bootstrap.java    From vlingo-examples with Mozilla Public License 2.0 4 votes vote down vote up
private static ApplicationContext run() {
    return Micronaut.build(new String[]{})
            .environmentVariableIncludes(DATABASE_URL)
            .environmentVariableIncludes(MESSAGING_URI)
            .run(Bootstrap.class);
}
 
Example #11
Source File: Bootstrap.java    From vlingo-examples with Mozilla Public License 2.0 4 votes vote down vote up
private static ApplicationContext run() {
    return Micronaut.build(new String[]{})
            .environmentVariableIncludes(DATABASE_URL)
            .environmentVariableIncludes(MESSAGING_URI)
            .run(Bootstrap.class);
}
 
Example #12
Source File: Bootstrap.java    From vlingo-examples with Mozilla Public License 2.0 4 votes vote down vote up
private static ApplicationContext run() {
    return Micronaut.run(Bootstrap.class);
}
 
Example #13
Source File: Application.java    From database-rider with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}
 
Example #14
Source File: Application.java    From aws-serverless-java-container with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Logger rootLogger = (ch.qos.logback.classic.Logger)org.slf4j.LoggerFactory.getLogger(org.slf4j.Logger.ROOT_LOGGER_NAME);
    rootLogger.setLevel(Level.TRACE);
    Micronaut.run(Application.class);
}
 
Example #15
Source File: Application.java    From java-slack-sdk with MIT License 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}
 
Example #16
Source File: Application.java    From ShedLock with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}
 
Example #17
Source File: Application.java    From consensusj with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}
 
Example #18
Source File: Application.java    From consensusj with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}
 
Example #19
Source File: Application.java    From java-docs-samples with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
  Micronaut.run(Application.class);
}
 
Example #20
Source File: Application.java    From FrameworkBenchmarks with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}
 
Example #21
Source File: ServerApplication.java    From tutorials with MIT License 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(ServerApplication.class);
}
 
Example #22
Source File: Application.java    From micronaut-data with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}
 
Example #23
Source File: Application.java    From micronaut-gcp with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.build(args)
             .deduceEnvironment(false)
             .environments(Environment.GOOGLE_COMPUTE)
             .start();
}
 
Example #24
Source File: Application.java    From micronaut-gcp with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}
 
Example #25
Source File: Application.java    From micronaut-gcp with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.build(args)
             .deduceEnvironment(false)
             .environments(Environment.GOOGLE_COMPUTE)
             .start();
}
 
Example #26
Source File: Application.java    From micronaut-grpc with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}
 
Example #27
Source File: Application.java    From micronaut-data with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}
 
Example #28
Source File: Application.java    From micronaut-data with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}
 
Example #29
Source File: Application.java    From micronaut-data with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}
 
Example #30
Source File: Application.java    From micronaut-data with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    Micronaut.run(Application.class);
}