Skip to content

Instantly share code, notes, and snippets.

@kijanowski
Last active October 15, 2019 07:59
Show Gist options
  • Save kijanowski/f68ccf1014b070b62cd88656c6baf556 to your computer and use it in GitHub Desktop.
Save kijanowski/f68ccf1014b070b62cd88656c6baf556 to your computer and use it in GitHub Desktop.
$ java -jar build/libs/graphql-springboot-scope-0.0.1-SNAPSHOT.jar --spring.profiles.active=global
:: Spring Boot :: (v2.1.8.RELEASE)
2019-09-29 20:28:00.225 INFO 38395 --- [ main] graphqlscope.graphql.GraphqlApplication : Starting GraphqlApplication on winter with PID 38395
2019-09-29 20:28:00.229 INFO 38395 --- [ main] graphqlscope.graphql.GraphqlApplication : The following profiles are active: global
2019-09-29 20:28:01.428 INFO 38395 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8081 (http)
2019-09-29 20:28:01.467 INFO 38395 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-09-29 20:28:01.467 INFO 38395 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.24]
2019-09-29 20:28:01.565 INFO 38395 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-09-29 20:28:01.566 INFO 38395 --- [ main] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1280 ms
2019-09-29 20:28:02.093 INFO 38395 --- [ main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2019-09-29 20:28:02.338 INFO 38395 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8081 (http) with context path ''
2019-09-29 20:28:02.343 INFO 38395 --- [ main] graphqlscope.graphql.GraphqlApplication : Started GraphqlApplication in 2.682 seconds (JVM running for 3.151)
2019-09-29 20:28:04.933 INFO 38395 --- [nio-8081-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2019-09-29 20:28:04.933 INFO 38395 --- [nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2019-09-29 20:28:04.941 INFO 38395 --- [nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 8 ms
-----------------> query for all animals
{
animals {
name
color
countryIds
countries {
name
}
}
}
-----------------
2019-09-29 20:28:05.133 INFO 38395 --- [nio-8081-exec-1] g.graphql.GraphQLDataFetchers : Returning 2 animals.
2019-09-29 20:28:05.154 INFO 38395 --- [onPool-worker-3] g.graphql.GraphQLDataFetchers : Returning 3 countries.
-----------------> query again for all animals
2019-09-29 20:28:06.359 INFO 38395 --- [nio-8081-exec-2] g.graphql.GraphQLDataFetchers : Returning 2 animals.
-----------------> query again for all animals
2019-09-29 20:28:07.181 INFO 38395 --- [nio-8081-exec-3] g.graphql.GraphQLDataFetchers : Returning 2 animals.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment