· 8 years ago · Dec 14, 2017, 11:52 PM
1 . ____ _ __ _ _
2 /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
3( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
4 \\/ ___)| |_)| | | | | || (_| | ) ) ) )
5 ' |____| .__|_| |_|_| |_\__, | / / / /
6 =========|_|==============|___/=/_/_/_/
7 :: Spring Boot :: (v1.5.9.RELEASE)
8
92017-12-15 02:48:23.420 INFO 8164 --- [ main] springdatamillionaire.Application : Starting Application on AspireV5 with PID 8164 (C:\GitHub\java\alikjava\springdatamillionaire\target\classes started by Пользователь in C:\GitHub\java\alikjava\springdatamillionaire)
102017-12-15 02:48:23.432 INFO 8164 --- [ main] springdatamillionaire.Application : No active profile set, falling back to default profiles: default
112017-12-15 02:48:23.561 INFO 8164 --- [ main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@6e38921c: startup date [Fri Dec 15 02:48:23 MSK 2017]; root of context hierarchy
122017-12-15 02:48:27.144 INFO 8164 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
132017-12-15 02:48:27.173 INFO 8164 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
142017-12-15 02:48:27.175 INFO 8164 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
152017-12-15 02:48:27.493 INFO 8164 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
162017-12-15 02:48:27.493 INFO 8164 --- [ost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 3937 ms
172017-12-15 02:48:27.720 INFO 8164 --- [ost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
182017-12-15 02:48:27.726 INFO 8164 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
192017-12-15 02:48:27.727 INFO 8164 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
202017-12-15 02:48:27.727 INFO 8164 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
212017-12-15 02:48:27.727 INFO 8164 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
222017-12-15 02:48:28.737 INFO 8164 --- [ main] j.LocalContainerEntityManagerFactoryBean : Building JPA container EntityManagerFactory for persistence unit 'default'
232017-12-15 02:48:28.762 INFO 8164 --- [ main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [
24 name: default
25 ...]
262017-12-15 02:48:28.875 INFO 8164 --- [ main] org.hibernate.Version : HHH000412: Hibernate Core {5.0.12.Final}
272017-12-15 02:48:28.877 INFO 8164 --- [ main] org.hibernate.cfg.Environment : HHH000206: hibernate.properties not found
282017-12-15 02:48:28.879 INFO 8164 --- [ main] org.hibernate.cfg.Environment : HHH000021: Bytecode provider name : javassist
292017-12-15 02:48:28.943 INFO 8164 --- [ main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.0.1.Final}
302017-12-15 02:48:29.144 INFO 8164 --- [ main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL5Dialect
312017-12-15 02:48:30.213 INFO 8164 --- [ main] org.hibernate.tool.hbm2ddl.SchemaExport : HHH000227: Running hbm2ddl schema export
32Hibernate: alter table answer drop foreign key FK8frr4bcabmmeyyu60qt7iiblo
33Hibernate: alter table question drop foreign key FK7jaqbm9p4prg7n91dd1uabrvj
34Hibernate: alter table question drop foreign key FK7svspov4rexjawqdvi2jni81u
35Hibernate: alter table question_rooms drop foreign key FK1m88jhgxm7rtb9te5dbtkmsgn
36Hibernate: alter table question_rooms drop foreign key FKngqhcouqhyvha1o1qr6i3wjnm
37Hibernate: alter table room drop foreign key FKt8cvvbhhhmwmq90bw9qbnt5uw
38Hibernate: alter table room_users drop foreign key FKld9phr4qt71ve3gnen43qxxb8
39Hibernate: alter table room_users drop foreign key FKtjvf84yquud59juxileusukvk
40Hibernate: alter table user drop foreign key FKh2wc2dtfdo8maylne7mgubowq
41Hibernate: drop table if exists answer
42Hibernate: drop table if exists answer_order
43Hibernate: drop table if exists category
44Hibernate: drop table if exists question
45Hibernate: drop table if exists question_rooms
46Hibernate: drop table if exists question_type
47Hibernate: drop table if exists room
48Hibernate: drop table if exists room_users
49Hibernate: drop table if exists user
50Hibernate: drop table if exists user_role
51Hibernate: create table answer (id bigint not null auto_increment, is_right bit not null, text varchar(255) not null, question_id bigint, primary key (id))
52Hibernate: create table answer_order (id bigint not null auto_increment, ord integer not null, primary key (id))
53Hibernate: create table category (id bigint not null auto_increment, name varchar(255) not null, ord integer not null, primary key (id))
54Hibernate: create table question (id bigint not null auto_increment, text varchar(255) not null, category_id bigint, question_type_id bigint, primary key (id))
55Hibernate: create table question_rooms (questions_id bigint not null, rooms_id bigint not null, primary key (questions_id, rooms_id))
56Hibernate: create table question_type (id bigint not null auto_increment, name varchar(255) not null, primary key (id))
57Hibernate: create table room (id bigint not null auto_increment, active bit not null, pass_hash varchar(255) not null, host_id bigint, primary key (id))
58Hibernate: create table room_users (rooms_id bigint not null, users_id bigint not null, primary key (rooms_id, users_id))
59Hibernate: create table user (id bigint not null auto_increment, name varchar(255) not null, surname varchar(255) not null, user_role_id bigint, primary key (id))
60Hibernate: create table user_role (id bigint not null auto_increment, name varchar(255) not null, primary key (id))
61Hibernate: alter table answer add constraint FK8frr4bcabmmeyyu60qt7iiblo foreign key (question_id) references question (id)
62Hibernate: alter table question add constraint FK7jaqbm9p4prg7n91dd1uabrvj foreign key (category_id) references category (id)
63Hibernate: alter table question add constraint FK7svspov4rexjawqdvi2jni81u foreign key (question_type_id) references question_type (id)
64Hibernate: alter table question_rooms add constraint FK1m88jhgxm7rtb9te5dbtkmsgn foreign key (rooms_id) references room (id)
65Hibernate: alter table question_rooms add constraint FKngqhcouqhyvha1o1qr6i3wjnm foreign key (questions_id) references question (id)
66Hibernate: alter table room add constraint FKt8cvvbhhhmwmq90bw9qbnt5uw foreign key (host_id) references user (id)
67Hibernate: alter table room_users add constraint FKld9phr4qt71ve3gnen43qxxb8 foreign key (users_id) references user (id)
68Hibernate: alter table room_users add constraint FKtjvf84yquud59juxileusukvk foreign key (rooms_id) references room (id)
69Hibernate: alter table user add constraint FKh2wc2dtfdo8maylne7mgubowq foreign key (user_role_id) references user_role (id)
702017-12-15 02:49:13.054 INFO 8164 --- [ main] org.hibernate.tool.hbm2ddl.SchemaExport : HHH000230: Schema export complete
712017-12-15 02:49:13.135 INFO 8164 --- [ main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
722017-12-15 02:49:13.689 INFO 8164 --- [ main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@6e38921c: startup date [Fri Dec 15 02:48:23 MSK 2017]; root of context hierarchy
732017-12-15 02:49:13.836 INFO 8164 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
742017-12-15 02:49:13.838 INFO 8164 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
752017-12-15 02:49:13.893 INFO 8164 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
762017-12-15 02:49:13.893 INFO 8164 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
772017-12-15 02:49:13.960 INFO 8164 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
782017-12-15 02:49:14.513 INFO 8164 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
792017-12-15 02:49:14.644 INFO 8164 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
802017-12-15 02:49:14.651 INFO 8164 --- [ main] springdatamillionaire.Application : Started Application in 51.889 seconds (JVM running for 52.7)