:compileJava UP-TO-DATE :processResources UP-TO-DATE :classes UP-TO-DATE :findMainClass :bootRun . ____ _ __ _ _ /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ :: Spring Boot :: (v1.5.6.RELEASE) 2017-08-29 10:14:44.235 INFO 10672 --- [ main] hello.Application : Starting Application on CLTHGKQG12 with PID 10672 (C:\tmp\gs-accessing-data-jpa-master\complete\build\classes\main started by cs9chw in C:\tmp\gs-accessing-data-jpa-master\complete) 2017-08-29 10:14:44.237 INFO 10672 --- [ main] hello.Application : No active profile set, falling back to default profiles: default 2017-08-29 10:14:44.273 INFO 10672 --- [ main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@71d15f18: startup date [Tue Aug 29 10:14:44 EDT 2017]; root of context hierarchy 2017-08-29 10:14:45.096 INFO 10672 --- [ main] j.LocalContainerEntityManagerFactoryBean : Building JPA container EntityManagerFactory for persistence unit 'default' 2017-08-29 10:14:45.110 INFO 10672 --- [ main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [ name: default ...] 2017-08-29 10:14:45.171 INFO 10672 --- [ main] org.hibernate.Version : HHH000412: Hibernate Core {5.0.12.Final} 2017-08-29 10:14:45.172 INFO 10672 --- [ main] org.hibernate.cfg.Environment : HHH000206: hibernate.properties not found 2017-08-29 10:14:45.173 INFO 10672 --- [ main] org.hibernate.cfg.Environment : HHH000021: Bytecode provider name : javassist 2017-08-29 10:14:45.248 INFO 10672 --- [ main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.0.1.Final} 2017-08-29 10:14:45.337 INFO 10672 --- [ main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect 2017-08-29 10:14:45.867 INFO 10672 --- [ main] org.hibernate.tool.hbm2ddl.SchemaExport : HHH000227: Running hbm2ddl schema export 2017-08-29 10:14:45.877 INFO 10672 --- [ main] org.hibernate.tool.hbm2ddl.SchemaExport : HHH000230: Schema export complete 2017-08-29 10:14:45.904 INFO 10672 --- [ main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default' 2017-08-29 10:14:46.262 INFO 10672 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup 2017-08-29 10:14:46.312 INFO 10672 --- [ main] hello.Application : Customers found with findAll(): 2017-08-29 10:14:46.312 INFO 10672 --- [ main] hello.Application : ------------------------------- 2017-08-29 10:14:46.321 INFO 10672 --- [ main] o.h.h.i.QueryTranslatorFactoryInitiator : HHH000397: Using ASTQueryTranslatorFactory 2017-08-29 10:14:46.395 INFO 10672 --- [ main] hello.Application : Customer[id=1, firstName='Jack', lastName='Bauer'] 2017-08-29 10:14:46.395 INFO 10672 --- [ main] hello.Application : Customer[id=2, firstName='Chloe', lastName='O'Brian'] 2017-08-29 10:14:46.396 INFO 10672 --- [ main] hello.Application : Customer[id=3, firstName='Kim', lastName='Bauer'] 2017-08-29 10:14:46.396 INFO 10672 --- [ main] hello.Application : Customer[id=4, firstName='David', lastName='Palmer'] 2017-08-29 10:14:46.396 INFO 10672 --- [ main] hello.Application : Customer[id=5, firstName='Michelle', lastName='Dessler'] 2017-08-29 10:14:46.396 INFO 10672 --- [ main] hello.Application : 2017-08-29 10:14:46.403 INFO 10672 --- [ main] hello.Application : Customer found with findOne(1L): 2017-08-29 10:14:46.403 INFO 10672 --- [ main] hello.Application : -------------------------------- 2017-08-29 10:14:46.403 INFO 10672 --- [ main] hello.Application : Customer[id=1, firstName='Jack', lastName='Bauer'] 2017-08-29 10:14:46.403 INFO 10672 --- [ main] hello.Application : 2017-08-29 10:14:46.403 INFO 10672 --- [ main] hello.Application : Customer found with findByLastName('Bauer'): 2017-08-29 10:14:46.403 INFO 10672 --- [ main] hello.Application : -------------------------------------------- 2017-08-29 10:14:46.427 INFO 10672 --- [ main] hello.Application : Customer[id=1, firstName='Jack', lastName='Bauer'] 2017-08-29 10:14:46.427 INFO 10672 --- [ main] hello.Application : Customer[id=3, firstName='Kim', lastName='Bauer'] 2017-08-29 10:14:46.427 INFO 10672 --- [ main] hello.Application : 2017-08-29 10:14:46.428 INFO 10672 --- [ main] hello.Application : Started Application in 2.407 seconds (JVM running for 2.693) 2017-08-29 10:14:46.429 INFO 10672 --- [ Thread-3] s.c.a.AnnotationConfigApplicationContext : Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@71d15f18: startup date [Tue Aug 29 10:14:44 EDT 2017]; root of context hierarchy 2017-08-29 10:14:46.430 INFO 10672 --- [ Thread-3] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown 2017-08-29 10:14:46.430 INFO 10672 --- [ Thread-3] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default' 2017-08-29 10:14:46.431 INFO 10672 --- [ Thread-3] org.hibernate.tool.hbm2ddl.SchemaExport : HHH000227: Running hbm2ddl schema export 2017-08-29 10:14:46.434 INFO 10672 --- [ Thread-3] org.hibernate.tool.hbm2ddl.SchemaExport : HHH000230: Schema export complete BUILD SUCCESSFUL Total time: 6.984 secs