初始化项目
0 parents
Showing
90 changed files
with
8102 additions
and
0 deletions
t_hpai_member_info.sql
0 → 100644
1 | /* | ||
2 | Navicat MySQL Data Transfer | ||
3 | |||
4 | Source Server : 127 | ||
5 | Source Server Version : 50632 | ||
6 | Source Host : localhost | ||
7 | Source Database : csair_dp | ||
8 | |||
9 | Target Server Version : 50632 | ||
10 | File Encoding : utf-8 | ||
11 | |||
12 | Date: 12/29/2017 17:28:10 PM | ||
13 | */ | ||
14 | |||
15 | SET NAMES utf8; | ||
16 | SET FOREIGN_KEY_CHECKS = 0; | ||
17 | |||
18 | -- ---------------------------- | ||
19 | -- Table structure for `t_hpai_member_info` | ||
20 | -- ---------------------------- | ||
21 | DROP TABLE IF EXISTS `t_hpai_member_info`; | ||
22 | CREATE TABLE `t_hpai_member_info` ( | ||
23 | `id` bigint(20) NOT NULL AUTO_INCREMENT, | ||
24 | `source` bigint(20) NOT NULL, | ||
25 | `timestamp` bigint(20) NOT NULL, | ||
26 | `barcode` varchar(128) NOT NULL, | ||
27 | `channel_id` bigint(20) NOT NULL, | ||
28 | `manager_id` bigint(20) NOT NULL, | ||
29 | `name` varchar(255) NOT NULL, | ||
30 | `gender` char(32) NOT NULL, | ||
31 | `birthday_str` varchar(128) NOT NULL, | ||
32 | `mobile_number` varchar(255) NOT NULL, | ||
33 | `sampling_date` varchar(255) NOT NULL, | ||
34 | `recipients` varchar(255) NOT NULL, | ||
35 | `address` varchar(255) NOT NULL, | ||
36 | `family_disease` varchar(255) NOT NULL, | ||
37 | `existing_disease` varchar(255) NOT NULL, | ||
38 | `weight` float NOT NULL, | ||
39 | `height` bigint(20) NOT NULL, | ||
40 | `remarks` varchar(255) DEFAULT NULL, | ||
41 | `create_at` datetime NOT NULL, | ||
42 | `status` tinyint(4) NOT NULL, | ||
43 | `member_number` varchar(255) NOT NULL, | ||
44 | `is_genereport` tinyint(4) DEFAULT '0', | ||
45 | `genereport_at` datetime DEFAULT NULL, | ||
46 | `pack_name` varchar(255) DEFAULT NULL, | ||
47 | `pdf_name` varchar(255) DEFAULT NULL, | ||
48 | `url` text, | ||
49 | `genereport_name` varchar(255) DEFAULT NULL, | ||
50 | PRIMARY KEY (`id`) | ||
51 | ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4; | ||
52 | |||
53 | SET FOREIGN_KEY_CHECKS = 1; |
yry_dp/.classpath
0 → 100644
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <classpath> | ||
3 | <classpathentry kind="src" output="target/classes" path="src/main/java"> | ||
4 | <attributes> | ||
5 | <attribute name="optional" value="true"/> | ||
6 | <attribute name="maven.pomderived" value="true"/> | ||
7 | </attributes> | ||
8 | </classpathentry> | ||
9 | <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"> | ||
10 | <attributes> | ||
11 | <attribute name="maven.pomderived" value="true"/> | ||
12 | </attributes> | ||
13 | </classpathentry> | ||
14 | <classpathentry kind="src" output="target/test-classes" path="src/test/java"> | ||
15 | <attributes> | ||
16 | <attribute name="optional" value="true"/> | ||
17 | <attribute name="maven.pomderived" value="true"/> | ||
18 | </attributes> | ||
19 | </classpathentry> | ||
20 | <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"> | ||
21 | <attributes> | ||
22 | <attribute name="maven.pomderived" value="true"/> | ||
23 | </attributes> | ||
24 | </classpathentry> | ||
25 | <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> | ||
26 | <attributes> | ||
27 | <attribute name="maven.pomderived" value="true"/> | ||
28 | </attributes> | ||
29 | </classpathentry> | ||
30 | <classpathentry kind="output" path="target/classes"/> | ||
31 | </classpath> |
yry_dp/.mvn/wrapper/maven-wrapper.jar
0 → 100644
No preview for this file type
yry_dp/.mvn/wrapper/maven-wrapper.properties
0 → 100644
1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.3.3/apache-maven-3.3.3-bin.zip | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
yry_dp/.project
0 → 100644
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <projectDescription> | ||
3 | <name>demo</name> | ||
4 | <comment></comment> | ||
5 | <projects> | ||
6 | </projects> | ||
7 | <buildSpec> | ||
8 | <buildCommand> | ||
9 | <name>org.eclipse.wst.common.project.facet.core.builder</name> | ||
10 | <arguments> | ||
11 | </arguments> | ||
12 | </buildCommand> | ||
13 | <buildCommand> | ||
14 | <name>org.eclipse.jdt.core.javabuilder</name> | ||
15 | <arguments> | ||
16 | </arguments> | ||
17 | </buildCommand> | ||
18 | <buildCommand> | ||
19 | <name>org.springframework.ide.eclipse.core.springbuilder</name> | ||
20 | <arguments> | ||
21 | </arguments> | ||
22 | </buildCommand> | ||
23 | <buildCommand> | ||
24 | <name>org.eclipse.m2e.core.maven2Builder</name> | ||
25 | <arguments> | ||
26 | </arguments> | ||
27 | </buildCommand> | ||
28 | </buildSpec> | ||
29 | <natures> | ||
30 | <nature>org.springframework.ide.eclipse.core.springnature</nature> | ||
31 | <nature>org.eclipse.jdt.core.javanature</nature> | ||
32 | <nature>org.eclipse.m2e.core.maven2Nature</nature> | ||
33 | <nature>org.eclipse.wst.common.project.facet.core.nature</nature> | ||
34 | </natures> | ||
35 | </projectDescription> |
yry_dp/.settings/org.eclipse.jdt.core.prefs
0 → 100644
yry_dp/.settings/org.eclipse.m2e.core.prefs
0 → 100644
yry_dp/demo.iml
0 → 100644
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4"> | ||
3 | <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="false"> | ||
4 | <output url="file://$MODULE_DIR$/target/classes" /> | ||
5 | <output-test url="file://$MODULE_DIR$/target/test-classes" /> | ||
6 | <content url="file://$MODULE_DIR$"> | ||
7 | <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" /> | ||
8 | <sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" /> | ||
9 | <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" /> | ||
10 | <excludeFolder url="file://$MODULE_DIR$/target" /> | ||
11 | </content> | ||
12 | <orderEntry type="inheritedJdk" /> | ||
13 | <orderEntry type="sourceFolder" forTests="false" /> | ||
14 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-data-mongodb:1.3.3.RELEASE" level="project" /> | ||
15 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter:1.3.3.RELEASE" level="project" /> | ||
16 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot:1.3.3.RELEASE" level="project" /> | ||
17 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-autoconfigure:1.3.3.RELEASE" level="project" /> | ||
18 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-logging:1.3.3.RELEASE" level="project" /> | ||
19 | <orderEntry type="library" name="Maven: ch.qos.logback:logback-classic:1.1.5" level="project" /> | ||
20 | <orderEntry type="library" name="Maven: ch.qos.logback:logback-core:1.1.5" level="project" /> | ||
21 | <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.16" level="project" /> | ||
22 | <orderEntry type="library" name="Maven: org.slf4j:log4j-over-slf4j:1.7.16" level="project" /> | ||
23 | <orderEntry type="library" scope="RUNTIME" name="Maven: org.yaml:snakeyaml:1.16" level="project" /> | ||
24 | <orderEntry type="library" name="Maven: org.mongodb:mongo-java-driver:2.13.3" level="project" /> | ||
25 | <orderEntry type="library" name="Maven: org.springframework.data:spring-data-mongodb:1.8.4.RELEASE" level="project" /> | ||
26 | <orderEntry type="library" name="Maven: org.springframework:spring-expression:4.2.5.RELEASE" level="project" /> | ||
27 | <orderEntry type="library" name="Maven: org.springframework.data:spring-data-commons:1.11.4.RELEASE" level="project" /> | ||
28 | <orderEntry type="library" name="Maven: org.slf4j:jcl-over-slf4j:1.7.16" level="project" /> | ||
29 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-redis:1.3.3.RELEASE" level="project" /> | ||
30 | <orderEntry type="library" name="Maven: redis.clients:jedis:2.7.3" level="project" /> | ||
31 | <orderEntry type="library" name="Maven: org.apache.commons:commons-pool2:2.4.2" level="project" /> | ||
32 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-web:1.3.3.RELEASE" level="project" /> | ||
33 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-tomcat:1.3.3.RELEASE" level="project" /> | ||
34 | <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-logging-juli:8.0.32" level="project" /> | ||
35 | <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-websocket:8.0.32" level="project" /> | ||
36 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-validation:1.3.3.RELEASE" level="project" /> | ||
37 | <orderEntry type="library" name="Maven: org.hibernate:hibernate-validator:5.2.4.Final" level="project" /> | ||
38 | <orderEntry type="library" name="Maven: javax.validation:validation-api:1.1.0.Final" level="project" /> | ||
39 | <orderEntry type="library" name="Maven: org.jboss.logging:jboss-logging:3.3.0.Final" level="project" /> | ||
40 | <orderEntry type="library" name="Maven: com.fasterxml:classmate:1.1.0" level="project" /> | ||
41 | <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-databind:2.6.5" level="project" /> | ||
42 | <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-annotations:2.6.5" level="project" /> | ||
43 | <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-core:2.6.5" level="project" /> | ||
44 | <orderEntry type="library" name="Maven: org.springframework:spring-web:4.2.5.RELEASE" level="project" /> | ||
45 | <orderEntry type="library" name="Maven: org.springframework:spring-webmvc:4.2.5.RELEASE" level="project" /> | ||
46 | <orderEntry type="library" name="Maven: commons-httpclient:commons-httpclient:3.1" level="project" /> | ||
47 | <orderEntry type="library" name="Maven: commons-logging:commons-logging:1.0.4" level="project" /> | ||
48 | <orderEntry type="library" scope="RUNTIME" name="Maven: mysql:mysql-connector-java:5.1.38" level="project" /> | ||
49 | <orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-starter-test:1.3.3.RELEASE" level="project" /> | ||
50 | <orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.12" level="project" /> | ||
51 | <orderEntry type="library" scope="TEST" name="Maven: org.mockito:mockito-core:1.10.19" level="project" /> | ||
52 | <orderEntry type="library" scope="TEST" name="Maven: org.objenesis:objenesis:2.1" level="project" /> | ||
53 | <orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" /> | ||
54 | <orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-library:1.3" level="project" /> | ||
55 | <orderEntry type="library" name="Maven: org.springframework:spring-core:4.2.5.RELEASE" level="project" /> | ||
56 | <orderEntry type="library" scope="TEST" name="Maven: org.springframework:spring-test:4.2.5.RELEASE" level="project" /> | ||
57 | <orderEntry type="library" name="Maven: org.json:json:20140107" level="project" /> | ||
58 | <orderEntry type="library" scope="PROVIDED" name="Maven: org.apache.tomcat.embed:tomcat-embed-jasper:8.0.32" level="project" /> | ||
59 | <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-core:8.0.32" level="project" /> | ||
60 | <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-el:8.0.32" level="project" /> | ||
61 | <orderEntry type="library" scope="PROVIDED" name="Maven: org.eclipse.jdt.core.compiler:ecj:4.4.2" level="project" /> | ||
62 | <orderEntry type="library" name="Maven: javax.servlet:jstl:1.2" level="project" /> | ||
63 | <orderEntry type="library" name="Maven: org.mybatis.spring.boot:mybatis-spring-boot-starter:1.0.0" level="project" /> | ||
64 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-jdbc:1.3.3.RELEASE" level="project" /> | ||
65 | <orderEntry type="library" name="Maven: org.apache.tomcat:tomcat-jdbc:8.0.32" level="project" /> | ||
66 | <orderEntry type="library" name="Maven: org.apache.tomcat:tomcat-juli:8.0.32" level="project" /> | ||
67 | <orderEntry type="library" name="Maven: org.springframework:spring-jdbc:4.2.5.RELEASE" level="project" /> | ||
68 | <orderEntry type="library" name="Maven: org.mybatis.spring.boot:mybatis-spring-boot-autoconfigure:1.0.0" level="project" /> | ||
69 | <orderEntry type="library" name="Maven: org.mybatis:mybatis:3.3.0" level="project" /> | ||
70 | <orderEntry type="library" name="Maven: org.mybatis:mybatis-spring:1.2.3" level="project" /> | ||
71 | <orderEntry type="library" name="Maven: com.h2database:h2:1.4.191" level="project" /> | ||
72 | <orderEntry type="library" name="Maven: org.springframework.data:spring-data-redis:1.5.0.RELEASE" level="project" /> | ||
73 | <orderEntry type="library" name="Maven: org.springframework:spring-context:4.2.5.RELEASE" level="project" /> | ||
74 | <orderEntry type="library" name="Maven: org.springframework:spring-context-support:4.2.5.RELEASE" level="project" /> | ||
75 | <orderEntry type="library" name="Maven: org.springframework:spring-tx:4.2.5.RELEASE" level="project" /> | ||
76 | <orderEntry type="library" name="Maven: org.springframework:spring-aop:4.2.5.RELEASE" level="project" /> | ||
77 | <orderEntry type="library" name="Maven: aopalliance:aopalliance:1.0" level="project" /> | ||
78 | <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.16" level="project" /> | ||
79 | <orderEntry type="library" name="Maven: org.springframework:spring-webmvc-portlet:4.2.5.RELEASE" level="project" /> | ||
80 | <orderEntry type="library" name="Maven: org.springframework:spring-beans:4.2.5.RELEASE" level="project" /> | ||
81 | <orderEntry type="library" name="Maven: org.tuckey:urlrewritefilter:4.0.3" level="project" /> | ||
82 | <orderEntry type="library" name="Maven: tk.mybatis:mapper:3.3.4" level="project" /> | ||
83 | <orderEntry type="library" name="Maven: javax.persistence:persistence-api:1.0" level="project" /> | ||
84 | <orderEntry type="library" name="Maven: org.apache.commons:commons-lang3:3.3.2" level="project" /> | ||
85 | <orderEntry type="library" name="Maven: commons-io:commons-io:2.1" level="project" /> | ||
86 | <orderEntry type="library" name="Maven: org.apache.wink:wink-client:1.3.0" level="project" /> | ||
87 | <orderEntry type="library" name="Maven: org.apache.wink:wink-common:1.3.0" level="project" /> | ||
88 | <orderEntry type="library" name="Maven: javax.ws.rs:jsr311-api:1.1.1" level="project" /> | ||
89 | <orderEntry type="library" name="Maven: org.apache.geronimo.specs:geronimo-annotation_1.1_spec:1.0" level="project" /> | ||
90 | <orderEntry type="library" name="Maven: javax.xml.bind:jaxb-api:2.2" level="project" /> | ||
91 | <orderEntry type="library" name="Maven: javax.xml.stream:stax-api:1.0-2" level="project" /> | ||
92 | <orderEntry type="library" name="Maven: com.sun.xml.bind:jaxb-impl:2.2.1.1" level="project" /> | ||
93 | <orderEntry type="library" name="Maven: javax.activation:activation:1.1" level="project" /> | ||
94 | <orderEntry type="library" name="Maven: dom4j:dom4j:1.6.1" level="project" /> | ||
95 | <orderEntry type="library" name="Maven: xml-apis:xml-apis:1.0.b2" level="project" /> | ||
96 | <orderEntry type="library" name="Maven: commons-codec:commons-codec:1.9" level="project" /> | ||
97 | <orderEntry type="library" name="Maven: commons-fileupload:commons-fileupload:1.2.2" level="project" /> | ||
98 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-jetty:1.3.3.RELEASE" level="project" /> | ||
99 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-servlets:9.2.15.v20160210" level="project" /> | ||
100 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-continuation:9.2.15.v20160210" level="project" /> | ||
101 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-http:9.2.15.v20160210" level="project" /> | ||
102 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-util:9.2.15.v20160210" level="project" /> | ||
103 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-io:9.2.15.v20160210" level="project" /> | ||
104 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-webapp:9.2.15.v20160210" level="project" /> | ||
105 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-xml:9.2.15.v20160210" level="project" /> | ||
106 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-servlet:9.2.15.v20160210" level="project" /> | ||
107 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-security:9.2.15.v20160210" level="project" /> | ||
108 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-server:9.2.15.v20160210" level="project" /> | ||
109 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:websocket-server:9.2.15.v20160210" level="project" /> | ||
110 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:websocket-common:9.2.15.v20160210" level="project" /> | ||
111 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:websocket-api:9.2.15.v20160210" level="project" /> | ||
112 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:websocket-client:9.2.15.v20160210" level="project" /> | ||
113 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:websocket-servlet:9.2.15.v20160210" level="project" /> | ||
114 | <orderEntry type="library" name="Maven: javax.servlet:javax.servlet-api:3.1.0" level="project" /> | ||
115 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:javax-websocket-server-impl:9.2.15.v20160210" level="project" /> | ||
116 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-annotations:9.2.15.v20160210" level="project" /> | ||
117 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-plus:9.2.15.v20160210" level="project" /> | ||
118 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-jndi:9.2.15.v20160210" level="project" /> | ||
119 | <orderEntry type="library" name="Maven: javax.annotation:javax.annotation-api:1.2" level="project" /> | ||
120 | <orderEntry type="library" name="Maven: org.ow2.asm:asm:5.0.1" level="project" /> | ||
121 | <orderEntry type="library" name="Maven: org.ow2.asm:asm-commons:5.0.1" level="project" /> | ||
122 | <orderEntry type="library" name="Maven: org.ow2.asm:asm-tree:5.0.1" level="project" /> | ||
123 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:javax-websocket-client-impl:9.2.15.v20160210" level="project" /> | ||
124 | <orderEntry type="library" name="Maven: javax.websocket:javax.websocket-api:1.0" level="project" /> | ||
125 | </component> | ||
126 | </module> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
yry_dp/hs_err_pid66136.log
0 → 100644
1 | # | ||
2 | # A fatal error has been detected by the Java Runtime Environment: | ||
3 | # | ||
4 | # SIGBUS (0xa) at pc=0x00000001013650b7, pid=66136, tid=5891 | ||
5 | # | ||
6 | # JRE version: Java(TM) SE Runtime Environment (7.0_79-b15) (build 1.7.0_79-b15) | ||
7 | # Java VM: Java HotSpot(TM) 64-Bit Server VM (24.79-b02 mixed mode bsd-amd64 compressed oops) | ||
8 | # Problematic frame: | ||
9 | # C [libzip.dylib+0x30b7] newEntry+0x154 | ||
10 | # | ||
11 | # Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again | ||
12 | # | ||
13 | # If you would like to submit a bug report, please visit: | ||
14 | # http://bugreport.java.com/bugreport/crash.jsp | ||
15 | # The crash happened outside the Java Virtual Machine in native code. | ||
16 | # See problematic frame for where to report the bug. | ||
17 | # | ||
18 | |||
19 | --------------- T H R E A D --------------- | ||
20 | |||
21 | Current thread (0x00007f95b5003800): JavaThread "main" [_thread_in_native, id=5891, stack(0x000070000011a000,0x000070000021a000)] | ||
22 | |||
23 | siginfo:si_signo=SIGBUS: si_errno=0, si_code=2 (BUS_ADRERR), si_addr=0x000000011364c1f8 | ||
24 | |||
25 | Registers: | ||
26 | RAX=0x00007f95b4909060, RBX=0x000000011364c1ec, RCX=0x0000000000000300, RDX=0x0000000000000000 | ||
27 | RSP=0x00007000002187b0, RBP=0x0000700000218810, RSI=0x00007f95b4900000, RDI=0x0000000101054400 | ||
28 | R8 =0x0000000000000004, R9 =0x00000000ffffe000, R10=0x0000000102ed8598, R11=0x00006ff8159d2806 | ||
29 | R12=0x0000000000000090, R13=0x00007f95b49091a0, R14=0x00007f95b4909060, R15=0x00007f95b4b2b720 | ||
30 | RIP=0x00000001013650b7, EFLAGS=0x0000000000010202, ERR=0x0000000000000004 | ||
31 | TRAPNO=0x000000000000000e | ||
32 | |||
33 | Top of Stack: (sp=0x00007000002187b0) | ||
34 | 0x00007000002187b0: 0000000000000001 0000000002959307 | ||
35 | 0x00007000002187c0: 00007f95b500b002 000000bd02e69058 | ||
36 | 0x00007000002187d0: 00007000002187f0 00007f95b4909060 | ||
37 | 0x00007000002187e0: 00007f95b4934480 000000004eecb6d3 | ||
38 | 0x00007000002187f0: 0000000000000090 00007f95b49091a0 | ||
39 | 0x0000700000218800: 00007f95b4909060 00007f95b4b2b720 | ||
40 | 0x0000700000218810: 0000700000218860 0000000101365725 | ||
41 | 0x0000700000218820: 0000000000000010 00000000b5003800 | ||
42 | 0x0000700000218830: 000070000021887e 0000700000218cc8 | ||
43 | 0x0000700000218840: 0000000000000010 000070000021887e | ||
44 | 0x0000700000218850: 00007f95b4909060 00007f95b50039e8 | ||
45 | 0x0000700000218860: 0000700000218cb0 0000000101364570 | ||
46 | 0x0000700000218870: 0000000000000000 6f64000000000000 | ||
47 | 0x0000700000218880: 612f73706f725063 00006c6d782e7070 | ||
48 | 0x0000700000218890: 0000000000000000 0000700000218898 | ||
49 | 0x00007000002188a0: 0000000000000000 0000000032aaaba2 | ||
50 | 0x00007000002188b0: 0000000000000000 0000000000000000 | ||
51 | 0x00007000002188c0: 0000000000000000 0000000000000000 | ||
52 | 0x00007000002188d0: 0000000000000000 0000000000000000 | ||
53 | 0x00007000002188e0: 0000000000000000 00000007ea845603 | ||
54 | 0x00007000002188f0: 0000000000000000 0000000000000000 | ||
55 | 0x0000700000218900: 0000000000000000 0000000000000000 | ||
56 | 0x0000700000218910: 0000000000000000 0000000000000000 | ||
57 | 0x0000700000218920: 0000000000000000 0000000000000000 | ||
58 | 0x0000700000218930: 0000000000000000 0000000000000000 | ||
59 | 0x0000700000218940: 0000000000000000 000000010f76aa31 | ||
60 | 0x0000700000218950: 00000001002189a0 00007f95b4804c80 | ||
61 | 0x0000700000218960: 00007f95b4804c70 0000000000000001 | ||
62 | 0x0000700000218970: 00007f95b4804c88 00007f95b4804c68 | ||
63 | 0x0000700000218980: 0000700000218a00 00000001027a19a9 | ||
64 | 0x0000700000218990: 000000010f7a5980 00000006fb1cc1d8 | ||
65 | 0x00007000002189a0: 00007000002189d0 00007f95b5003800 | ||
66 | |||
67 | Instructions: (pc=0x00000001013650b7) | ||
68 | 0x0000000101365097: 49 8b 7f 38 e8 9c 1a 00 00 4d 89 77 38 49 89 5f | ||
69 | 0x00000001013650a7: 40 4c 89 f0 48 85 c0 0f 84 16 05 00 00 48 89 c3 | ||
70 | 0x00000001013650b7: 0f b6 43 0c 0f b6 4b 0d 48 c1 e1 08 48 01 c1 0f | ||
71 | 0x00000001013650c7: b6 43 0e 0f b6 53 0f 48 c1 e2 08 48 01 c2 48 c1 | ||
72 | |||
73 | Register to memory mapping: | ||
74 | |||
75 | RAX=0x00007f95b4909060 is an unknown value | ||
76 | RBX=0x000000011364c1ec is an unknown value | ||
77 | RCX=0x0000000000000300 is an unknown value | ||
78 | RDX=0x0000000000000000 is an unknown value | ||
79 | RSP=0x00007000002187b0 is pointing into the stack for thread: 0x00007f95b5003800 | ||
80 | RBP=0x0000700000218810 is pointing into the stack for thread: 0x00007f95b5003800 | ||
81 | RSI=0x00007f95b4900000 is an unknown value | ||
82 | RDI=0x0000000101054400 is an unknown value | ||
83 | R8 =0x0000000000000004 is an unknown value | ||
84 | R9 =0x00000000ffffe000 is an unknown value | ||
85 | R10=0x0000000102ed8598 is at entry_point+88 in (nmethod*)0x0000000102ed83d0 | ||
86 | R11=0x00006ff8159d2806 is an unknown value | ||
87 | R12=0x0000000000000090 is an unknown value | ||
88 | R13=0x00007f95b49091a0 is an unknown value | ||
89 | R14=0x00007f95b4909060 is an unknown value | ||
90 | R15=0x00007f95b4b2b720 is an unknown value | ||
91 | |||
92 | |||
93 | Stack: [0x000070000011a000,0x000070000021a000], sp=0x00007000002187b0, free space=1017k | ||
94 | Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) | ||
95 | C [libzip.dylib+0x30b7] newEntry+0x154 | ||
96 | C [libzip.dylib+0x3725] ZIP_GetEntry+0xa2 | ||
97 | C [libzip.dylib+0x2570] Java_java_util_zip_ZipFile_getEntry+0xdd | ||
98 | J 50 java.util.zip.ZipFile.getEntry(J[BZ)J (0 bytes) @ 0x0000000102ed860e [0x0000000102ed8540+0xce] | ||
99 | j java.util.zip.ZipFile.getInputStream(Ljava/util/zip/ZipEntry;)Ljava/io/InputStream;+88 | ||
100 | j org.apache.poi.openxml4j.util.ZipSecureFile.getInputStream(Ljava/util/zip/ZipEntry;)Ljava/io/InputStream;+2 | ||
101 | j org.apache.poi.openxml4j.util.ZipFileZipEntrySource.getInputStream(Ljava/util/zip/ZipEntry;)Ljava/io/InputStream;+22 | ||
102 | j org.apache.poi.openxml4j.opc.ZipPackagePart.getInputStreamImpl()Ljava/io/InputStream;+14 | ||
103 | j org.apache.poi.openxml4j.opc.PackagePart.getInputStream()Ljava/io/InputStream;+1 | ||
104 | j org.apache.poi.POIXMLProperties.<init>(Lorg/apache/poi/openxml4j/opc/OPCPackage;)V+69 | ||
105 | j org.apache.poi.POIXMLDocument.getProperties()Lorg/apache/poi/POIXMLProperties;+16 | ||
106 | j org.apache.poi.POIXMLDocument.write(Ljava/io/OutputStream;)V+39 | ||
107 | j org.apache.poi.xssf.streaming.SXSSFWorkbook.write(Ljava/io/OutputStream;)V+63 | ||
108 | J 646% C2 com.example.service.enroll.EnrollInfoServiceImpl.filed()V (581 bytes) @ 0x000000010305d124 [0x000000010305bda0+0x1384] | ||
109 | j com.example.service.enroll.EnrollInfoServiceImpl.main([Ljava/lang/String;)V+13 | ||
110 | v ~StubRoutines::call_stub | ||
111 | V [libjvm.dylib+0x2dbef8] | ||
112 | V [libjvm.dylib+0x2dbcc8] | ||
113 | V [libjvm.dylib+0x467718] | ||
114 | V [libjvm.dylib+0x467b7e] | ||
115 | V [libjvm.dylib+0x328747] | ||
116 | j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 | ||
117 | j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87 | ||
118 | j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 | ||
119 | j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+57 | ||
120 | j com.intellij.rt.execution.application.AppMain.main([Ljava/lang/String;)V+157 | ||
121 | v ~StubRoutines::call_stub | ||
122 | V [libjvm.dylib+0x2dbef8] | ||
123 | V [libjvm.dylib+0x2dbcc8] | ||
124 | V [libjvm.dylib+0x30f55e] | ||
125 | V [libjvm.dylib+0x3086f9] | ||
126 | C [java+0x30fe] JavaMain+0x91d | ||
127 | C [libsystem_pthread.dylib+0x399d] _pthread_body+0x83 | ||
128 | C [libsystem_pthread.dylib+0x391a] _pthread_body+0x0 | ||
129 | C [libsystem_pthread.dylib+0x1351] thread_start+0xd | ||
130 | |||
131 | Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) | ||
132 | J 50 java.util.zip.ZipFile.getEntry(J[BZ)J (0 bytes) @ 0x0000000102ed8598 [0x0000000102ed8540+0x58] | ||
133 | j java.util.zip.ZipFile.getInputStream(Ljava/util/zip/ZipEntry;)Ljava/io/InputStream;+88 | ||
134 | j org.apache.poi.openxml4j.util.ZipSecureFile.getInputStream(Ljava/util/zip/ZipEntry;)Ljava/io/InputStream;+2 | ||
135 | j org.apache.poi.openxml4j.util.ZipFileZipEntrySource.getInputStream(Ljava/util/zip/ZipEntry;)Ljava/io/InputStream;+22 | ||
136 | j org.apache.poi.openxml4j.opc.ZipPackagePart.getInputStreamImpl()Ljava/io/InputStream;+14 | ||
137 | j org.apache.poi.openxml4j.opc.PackagePart.getInputStream()Ljava/io/InputStream;+1 | ||
138 | j org.apache.poi.POIXMLProperties.<init>(Lorg/apache/poi/openxml4j/opc/OPCPackage;)V+69 | ||
139 | j org.apache.poi.POIXMLDocument.getProperties()Lorg/apache/poi/POIXMLProperties;+16 | ||
140 | j org.apache.poi.POIXMLDocument.write(Ljava/io/OutputStream;)V+39 | ||
141 | j org.apache.poi.xssf.streaming.SXSSFWorkbook.write(Ljava/io/OutputStream;)V+63 | ||
142 | J 646% C2 com.example.service.enroll.EnrollInfoServiceImpl.filed()V (581 bytes) @ 0x000000010305d124 [0x000000010305bda0+0x1384] | ||
143 | j com.example.service.enroll.EnrollInfoServiceImpl.main([Ljava/lang/String;)V+13 | ||
144 | v ~StubRoutines::call_stub | ||
145 | j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 | ||
146 | j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87 | ||
147 | j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 | ||
148 | j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+57 | ||
149 | j com.intellij.rt.execution.application.AppMain.main([Ljava/lang/String;)V+157 | ||
150 | v ~StubRoutines::call_stub | ||
151 | |||
152 | --------------- P R O C E S S --------------- | ||
153 | |||
154 | Java Threads: ( => current thread ) | ||
155 | 0x00007f95b29c5000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=46395, stack(0x00007000018ee000,0x00007000019ee000)] | ||
156 | 0x00007f95b2983000 JavaThread "AppKit Thread" daemon [_thread_in_native, id=1295, stack(0x00007fff5e3ca000,0x00007fff5ebca000)] | ||
157 | 0x00007f95b507f800 JavaThread "Monitor Ctrl-Break" daemon [_thread_in_native, id=20995, stack(0x00007000012d0000,0x00007000013d0000)] | ||
158 | 0x00007f95b6804000 JavaThread "Service Thread" daemon [_thread_blocked, id=19971, stack(0x00007000010ca000,0x00007000011ca000)] | ||
159 | 0x00007f95b2815000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=19459, stack(0x0000700000fc7000,0x00007000010c7000)] | ||
160 | 0x00007f95b281c000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=18947, stack(0x0000700000ec4000,0x0000700000fc4000)] | ||
161 | 0x00007f95b600c000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=15887, stack(0x0000700000dc1000,0x0000700000ec1000)] | ||
162 | 0x00007f95b6801000 JavaThread "Finalizer" daemon [_thread_blocked, id=14339, stack(0x0000700000c3b000,0x0000700000d3b000)] | ||
163 | 0x00007f95b6800000 JavaThread "Reference Handler" daemon [_thread_blocked, id=13827, stack(0x0000700000b38000,0x0000700000c38000)] | ||
164 | =>0x00007f95b5003800 JavaThread "main" [_thread_in_native, id=5891, stack(0x000070000011a000,0x000070000021a000)] | ||
165 | |||
166 | Other Threads: | ||
167 | 0x00007f95b600b000 VMThread [stack: 0x0000700000a35000,0x0000700000b35000] [id=13315] | ||
168 | 0x00007f95b282c000 WatcherThread [stack: 0x00007000011cd000,0x00007000012cd000] [id=20483] | ||
169 | |||
170 | VM state:not at safepoint (normal execution) | ||
171 | |||
172 | VM Mutex/Monitor currently owned by a thread: None | ||
173 | |||
174 | Heap | ||
175 | PSYoungGen total 1335296K, used 1092821K [0x00000007aaa80000, 0x0000000800000000, 0x0000000800000000) | ||
176 | eden space 1277440K, 84% used [0x00000007aaa80000,0x00000007ec9eda90,0x00000007f8a00000) | ||
177 | from space 57856K, 20% used [0x00000007fc780000,0x00000007fd3479d0,0x0000000800000000) | ||
178 | to space 60416K, 0% used [0x00000007f8a00000,0x00000007f8a00000,0x00000007fc500000) | ||
179 | ParOldGen total 302592K, used 174254K [0x0000000700000000, 0x0000000712780000, 0x00000007aaa80000) | ||
180 | object space 302592K, 57% used [0x0000000700000000,0x000000070aa2ba88,0x0000000712780000) | ||
181 | PSPermGen total 27648K, used 13801K [0x00000006fae00000, 0x00000006fc900000, 0x0000000700000000) | ||
182 | object space 27648K, 49% used [0x00000006fae00000,0x00000006fbb7a5e0,0x00000006fc900000) | ||
183 | |||
184 | Card table byte_map: [0x0000000105f23000,0x000000010674d000] byte_map_base: 0x000000010274c000 | ||
185 | |||
186 | Polling page: 0x0000000101306000 | ||
187 | |||
188 | Code Cache [0x0000000102e63000, 0x00000001030d3000, 0x0000000105e63000) | ||
189 | total_blobs=1013 nmethods=677 adapters=290 free_code_cache=46854Kb largest_free_block=47931520 | ||
190 | |||
191 | Compilation events (10 events): | ||
192 | Event: 9.093 Thread 0x00007f95b2815000 nmethod 684 0x000000010307f390 code [0x000000010307f500, 0x000000010307f718] | ||
193 | Event: 9.093 Thread 0x00007f95b2815000 686 org.apache.xmlbeans.impl.store.Saver$DocSaveCur::hasText (8 bytes) | ||
194 | Event: 9.094 Thread 0x00007f95b281c000 nmethod 685 0x000000010307ee10 code [0x000000010307ef80, 0x000000010307f158] | ||
195 | Event: 9.096 Thread 0x00007f95b2815000 nmethod 686 0x0000000103086ed0 code [0x0000000103087040, 0x0000000103087278] | ||
196 | Event: 9.111 Thread 0x00007f95b281c000 687 java.nio.ByteBuffer::arrayOffset (35 bytes) | ||
197 | Event: 9.111 Thread 0x00007f95b281c000 nmethod 687 0x000000010304a650 code [0x000000010304a7a0, 0x000000010304a838] | ||
198 | Event: 9.150 Thread 0x00007f95b2815000 688 java.nio.Buffer::position (5 bytes) | ||
199 | Event: 9.151 Thread 0x00007f95b2815000 nmethod 688 0x0000000103084e90 code [0x0000000103084fc0, 0x0000000103085018] | ||
200 | Event: 9.261 Thread 0x00007f95b281c000 689 java.nio.Buffer::limit (5 bytes) | ||
201 | Event: 9.261 Thread 0x00007f95b281c000 nmethod 689 0x000000010307ec10 code [0x000000010307ed40, 0x000000010307ed98] | ||
202 | |||
203 | GC Heap History (10 events): | ||
204 | Event: 5.666 GC heap before | ||
205 | {Heap before GC invocations=9 (full 0): | ||
206 | PSYoungGen total 548864K, used 548843K [0x00000007aaa80000, 0x00000007cf080000, 0x0000000800000000) | ||
207 | eden space 520192K, 100% used [0x00000007aaa80000,0x00000007ca680000,0x00000007ca680000) | ||
208 | from space 28672K, 99% used [0x00000007cc880000,0x00000007ce47aeb0,0x00000007ce480000) | ||
209 | to space 34816K, 0% used [0x00000007ca680000,0x00000007ca680000,0x00000007cc880000) | ||
210 | ParOldGen total 174592K, used 33931K [0x0000000700000000, 0x000000070aa80000, 0x00000007aaa80000) | ||
211 | object space 174592K, 19% used [0x0000000700000000,0x0000000702122fd0,0x000000070aa80000) | ||
212 | PSPermGen total 21504K, used 13579K [0x00000006fae00000, 0x00000006fc300000, 0x0000000700000000) | ||
213 | object space 21504K, 63% used [0x00000006fae00000,0x00000006fbb42e20,0x00000006fc300000) | ||
214 | Event: 5.697 GC heap after | ||
215 | Heap after GC invocations=9 (full 0): | ||
216 | PSYoungGen total 555008K, used 34811K [0x00000007aaa80000, 0x00000007e3380000, 0x0000000800000000) | ||
217 | eden space 520192K, 0% used [0x00000007aaa80000,0x00000007aaa80000,0x00000007ca680000) | ||
218 | from space 34816K, 99% used [0x00000007ca680000,0x00000007cc87ee28,0x00000007cc880000) | ||
219 | to space 47104K, 0% used [0x00000007e0580000,0x00000007e0580000,0x00000007e3380000) | ||
220 | ParOldGen total 174592K, used 52985K [0x0000000700000000, 0x000000070aa80000, 0x00000007aaa80000) | ||
221 | object space 174592K, 30% used [0x0000000700000000,0x00000007033be780,0x000000070aa80000) | ||
222 | PSPermGen total 21504K, used 13579K [0x00000006fae00000, 0x00000006fc300000, 0x0000000700000000) | ||
223 | object space 21504K, 63% used [0x00000006fae00000,0x00000006fbb42e20,0x00000006fc300000) | ||
224 | } | ||
225 | Event: 6.042 GC heap before | ||
226 | {Heap before GC invocations=10 (full 0): | ||
227 | PSYoungGen total 555008K, used 555003K [0x00000007aaa80000, 0x00000007e3380000, 0x0000000800000000) | ||
228 | eden space 520192K, 100% used [0x00000007aaa80000,0x00000007ca680000,0x00000007ca680000) | ||
229 | from space 34816K, 99% used [0x00000007ca680000,0x00000007cc87ee28,0x00000007cc880000) | ||
230 | to space 47104K, 0% used [0x00000007e0580000,0x00000007e0580000,0x00000007e3380000) | ||
231 | ParOldGen total 174592K, used 52985K [0x0000000700000000, 0x000000070aa80000, 0x00000007aaa80000) | ||
232 | object space 174592K, 30% used [0x0000000700000000,0x00000007033be780,0x000000070aa80000) | ||
233 | PSPermGen total 21504K, used 13579K [0x00000006fae00000, 0x00000006fc300000, 0x0000000700000000) | ||
234 | object space 21504K, 63% used [0x00000006fae00000,0x00000006fbb42e20,0x00000006fc300000) | ||
235 | Event: 6.083 GC heap after | ||
236 | Heap after GC invocations=10 (full 0): | ||
237 | PSYoungGen total 873472K, used 45882K [0x00000007aaa80000, 0x00000007e3f80000, 0x0000000800000000) | ||
238 | eden space 826368K, 0% used [0x00000007aaa80000,0x00000007aaa80000,0x00000007dd180000) | ||
239 | from space 47104K, 97% used [0x00000007e0580000,0x00000007e324e898,0x00000007e3380000) | ||
240 | to space 53248K, 0% used [0x00000007dd180000,0x00000007dd180000,0x00000007e0580000) | ||
241 | ParOldGen total 174592K, used 67793K [0x0000000700000000, 0x000000070aa80000, 0x00000007aaa80000) | ||
242 | object space 174592K, 38% used [0x0000000700000000,0x0000000704234780,0x000000070aa80000) | ||
243 | PSPermGen total 21504K, used 13579K [0x00000006fae00000, 0x00000006fc300000, 0x0000000700000000) | ||
244 | object space 21504K, 63% used [0x00000006fae00000,0x00000006fbb42e20,0x00000006fc300000) | ||
245 | } | ||
246 | Event: 6.786 GC heap before | ||
247 | {Heap before GC invocations=11 (full 0): | ||
248 | PSYoungGen total 873472K, used 872250K [0x00000007aaa80000, 0x00000007e3f80000, 0x0000000800000000) | ||
249 | eden space 826368K, 100% used [0x00000007aaa80000,0x00000007dd180000,0x00000007dd180000) | ||
250 | from space 47104K, 97% used [0x00000007e0580000,0x00000007e324e898,0x00000007e3380000) | ||
251 | to space 53248K, 0% used [0x00000007dd180000,0x00000007dd180000,0x00000007e0580000) | ||
252 | ParOldGen total 174592K, used 67793K [0x0000000700000000, 0x000000070aa80000, 0x00000007aaa80000) | ||
253 | object space 174592K, 38% used [0x0000000700000000,0x0000000704234780,0x000000070aa80000) | ||
254 | PSPermGen total 21504K, used 13580K [0x00000006fae00000, 0x00000006fc300000, 0x0000000700000000) | ||
255 | object space 21504K, 63% used [0x00000006fae00000,0x00000006fbb43188,0x00000006fc300000) | ||
256 | Event: 6.925 GC heap after | ||
257 | Heap after GC invocations=11 (full 0): | ||
258 | PSYoungGen total 879616K, used 44583K [0x00000007aaa80000, 0x0000000800000000, 0x0000000800000000) | ||
259 | eden space 826368K, 0% used [0x00000007aaa80000,0x00000007aaa80000,0x00000007dd180000) | ||
260 | from space 53248K, 83% used [0x00000007dd180000,0x00000007dfd09cd8,0x00000007e0580000) | ||
261 | to space 57856K, 0% used [0x00000007fc780000,0x00000007fc780000,0x0000000800000000) | ||
262 | ParOldGen total 174592K, used 110561K [0x0000000700000000, 0x000000070aa80000, 0x00000007aaa80000) | ||
263 | object space 174592K, 63% used [0x0000000700000000,0x0000000706bf8780,0x000000070aa80000) | ||
264 | PSPermGen total 21504K, used 13580K [0x00000006fae00000, 0x00000006fc300000, 0x0000000700000000) | ||
265 | object space 21504K, 63% used [0x00000006fae00000,0x00000006fbb43188,0x00000006fc300000) | ||
266 | } | ||
267 | Event: 7.533 GC heap before | ||
268 | {Heap before GC invocations=12 (full 0): | ||
269 | PSYoungGen total 879616K, used 870951K [0x00000007aaa80000, 0x0000000800000000, 0x0000000800000000) | ||
270 | eden space 826368K, 100% used [0x00000007aaa80000,0x00000007dd180000,0x00000007dd180000) | ||
271 | from space 53248K, 83% used [0x00000007dd180000,0x00000007dfd09cd8,0x00000007e0580000) | ||
272 | to space 57856K, 0% used [0x00000007fc780000,0x00000007fc780000,0x0000000800000000) | ||
273 | ParOldGen total 174592K, used 110561K [0x0000000700000000, 0x000000070aa80000, 0x00000007aaa80000) | ||
274 | object space 174592K, 63% used [0x0000000700000000,0x0000000706bf8780,0x000000070aa80000) | ||
275 | PSPermGen total 21504K, used 13581K [0x00000006fae00000, 0x00000006fc300000, 0x0000000700000000) | ||
276 | object space 21504K, 63% used [0x00000006fae00000,0x00000006fbb43738,0x00000006fc300000) | ||
277 | Event: 7.631 GC heap after | ||
278 | Heap after GC invocations=12 (full 0): | ||
279 | PSYoungGen total 1335296K, used 42944K [0x00000007aaa80000, 0x0000000800000000, 0x0000000800000000) | ||
280 | eden space 1277440K, 0% used [0x00000007aaa80000,0x00000007aaa80000,0x00000007f8a00000) | ||
281 | from space 57856K, 74% used [0x00000007fc780000,0x00000007ff170368,0x0000000800000000) | ||
282 | to space 60416K, 0% used [0x00000007f8a00000,0x00000007f8a00000,0x00000007fc500000) | ||
283 | ParOldGen total 174592K, used 152699K [0x0000000700000000, 0x000000070aa80000, 0x00000007aaa80000) | ||
284 | object space 174592K, 87% used [0x0000000700000000,0x000000070951ecb8,0x000000070aa80000) | ||
285 | PSPermGen total 21504K, used 13581K [0x00000006fae00000, 0x00000006fc300000, 0x0000000700000000) | ||
286 | object space 21504K, 63% used [0x00000006fae00000,0x00000006fbb43738,0x00000006fc300000) | ||
287 | } | ||
288 | Event: 7.631 GC heap before | ||
289 | {Heap before GC invocations=13 (full 1): | ||
290 | PSYoungGen total 1335296K, used 42944K [0x00000007aaa80000, 0x0000000800000000, 0x0000000800000000) | ||
291 | eden space 1277440K, 0% used [0x00000007aaa80000,0x00000007aaa80000,0x00000007f8a00000) | ||
292 | from space 57856K, 74% used [0x00000007fc780000,0x00000007ff170368,0x0000000800000000) | ||
293 | to space 60416K, 0% used [0x00000007f8a00000,0x00000007f8a00000,0x00000007fc500000) | ||
294 | ParOldGen total 174592K, used 152699K [0x0000000700000000, 0x000000070aa80000, 0x00000007aaa80000) | ||
295 | object space 174592K, 87% used [0x0000000700000000,0x000000070951ecb8,0x000000070aa80000) | ||
296 | PSPermGen total 21504K, used 13581K [0x00000006fae00000, 0x00000006fc300000, 0x0000000700000000) | ||
297 | object space 21504K, 63% used [0x00000006fae00000,0x00000006fbb43738,0x00000006fc300000) | ||
298 | Event: 8.027 GC heap after | ||
299 | Heap after GC invocations=13 (full 1): | ||
300 | PSYoungGen total 1335296K, used 12062K [0x00000007aaa80000, 0x0000000800000000, 0x0000000800000000) | ||
301 | eden space 1277440K, 0% used [0x00000007aaa80000,0x00000007aaa80000,0x00000007f8a00000) | ||
302 | from space 57856K, 20% used [0x00000007fc780000,0x00000007fd3479d0,0x0000000800000000) | ||
303 | to space 60416K, 0% used [0x00000007f8a00000,0x00000007f8a00000,0x00000007fc500000) | ||
304 | ParOldGen total 302592K, used 174254K [0x0000000700000000, 0x0000000712780000, 0x00000007aaa80000) | ||
305 | object space 302592K, 57% used [0x0000000700000000,0x000000070aa2ba88,0x0000000712780000) | ||
306 | PSPermGen total 27648K, used 13575K [0x00000006fae00000, 0x00000006fc900000, 0x0000000700000000) | ||
307 | object space 27648K, 49% used [0x00000006fae00000,0x00000006fbb41d98,0x00000006fc900000) | ||
308 | } | ||
309 | |||
310 | Deoptimization events (10 events): | ||
311 | Event: 9.352 Thread 0x00007f95b5003800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000102fe8458 method=org.apache.xmlbeans.impl.schema.SchemaTypeImpl.createTypeStoreUser()Lorg/apache/xmlbeans/impl/values/TypeStoreUser; @ 5 | ||
312 | Event: 9.353 Thread 0x00007f95b5003800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000102fcf184 method=org.apache.xmlbeans.impl.store.Xobj.setStableUser(Lorg/apache/xmlbeans/impl/values/TypeStoreUser;)V @ 39 | ||
313 | Event: 9.353 Thread 0x00007f95b5003800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x0000000102f4cdd8 method=org.apache.xmlbeans.impl.store.Xobj.invalidateUser()V @ 60 | ||
314 | Event: 9.353 Thread 0x00007f95b5003800 Uncommon trap: reason=unreached action=reinterpret pc=0x0000000102f93cd0 method=org.apache.xmlbeans.SchemaComponent$Ref.getComponent()Lorg/apache/xmlbeans/SchemaComponent; @ 4 | ||
315 | Event: 9.361 Thread 0x00007f95b5003800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000102fe8458 method=org.apache.xmlbeans.impl.schema.SchemaTypeImpl.createTypeStoreUser()Lorg/apache/xmlbeans/impl/values/TypeStoreUser; @ 5 | ||
316 | Event: 9.361 Thread 0x00007f95b5003800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000102fcf184 method=org.apache.xmlbeans.impl.store.Xobj.setStableUser(Lorg/apache/xmlbeans/impl/values/TypeStoreUser;)V @ 39 | ||
317 | Event: 9.361 Thread 0x00007f95b5003800 Uncommon trap: reason=unreached action=reinterpret pc=0x0000000102f92f48 method=org.apache.xmlbeans.SchemaComponent$Ref.getComponent()Lorg/apache/xmlbeans/SchemaComponent; @ 4 | ||
318 | Event: 9.365 Thread 0x00007f95b5003800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000102f42828 method=java.util.regex.Pattern.compile()V @ 246 | ||
319 | Event: 9.365 Thread 0x00007f95b5003800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000102f42828 method=java.util.regex.Pattern.compile()V @ 246 | ||
320 | Event: 9.365 Thread 0x00007f95b5003800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000102f42828 method=java.util.regex.Pattern.compile()V @ 246 | ||
321 | |||
322 | Internal exceptions (10 events): | ||
323 | Event: 9.351 Thread 0x00007f95b5003800 Threw 0x00000007ea6f3eb0 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
324 | Event: 9.352 Thread 0x00007f95b5003800 Threw 0x00000007ea71db60 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
325 | Event: 9.355 Thread 0x00007f95b5003800 Threw 0x00000007ea75a5a8 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
326 | Event: 9.356 Thread 0x00007f95b5003800 Threw 0x00000007ea787820 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
327 | Event: 9.358 Thread 0x00007f95b5003800 Threw 0x00000007ea79f060 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
328 | Event: 9.359 Thread 0x00007f95b5003800 Threw 0x00000007ea7b7f08 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
329 | Event: 9.360 Thread 0x00007f95b5003800 Threw 0x00000007ea7e1730 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
330 | Event: 9.362 Thread 0x00007f95b5003800 Threw 0x00000007ea80c490 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
331 | Event: 9.362 Thread 0x00007f95b5003800 Threw 0x00000007ea822d80 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
332 | Event: 9.364 Thread 0x00007f95b5003800 Threw 0x00000007ea835510 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
333 | |||
334 | Events (10 events): | ||
335 | Event: 9.364 loading class 0x00007f95b4c001a0 done | ||
336 | Event: 9.365 Thread 0x00007f95b5003800 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000000102f42828 | ||
337 | Event: 9.365 Thread 0x00007f95b5003800 DEOPT PACKING pc=0x0000000102f42828 sp=0x0000700000218bd0 | ||
338 | Event: 9.365 Thread 0x00007f95b5003800 DEOPT UNPACKING pc=0x0000000102e9c045 sp=0x0000700000218bb8 mode 2 | ||
339 | Event: 9.365 Thread 0x00007f95b5003800 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000000102f42828 | ||
340 | Event: 9.365 Thread 0x00007f95b5003800 DEOPT PACKING pc=0x0000000102f42828 sp=0x0000700000218bd0 | ||
341 | Event: 9.365 Thread 0x00007f95b5003800 DEOPT UNPACKING pc=0x0000000102e9c045 sp=0x0000700000218bb8 mode 2 | ||
342 | Event: 9.365 Thread 0x00007f95b5003800 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000000102f42828 | ||
343 | Event: 9.365 Thread 0x00007f95b5003800 DEOPT PACKING pc=0x0000000102f42828 sp=0x0000700000218bd0 | ||
344 | Event: 9.365 Thread 0x00007f95b5003800 DEOPT UNPACKING pc=0x0000000102e9c045 sp=0x0000700000218bb8 mode 2 | ||
345 | |||
346 | |||
347 | Dynamic libraries: | ||
348 | 0x0000000004f8f000 /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa | ||
349 | 0x0000000004f8f000 /System/Library/Frameworks/Security.framework/Versions/A/Security | ||
350 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices | ||
351 | 0x0000000004f8f000 /usr/lib/libz.1.dylib | ||
352 | 0x0000000004f8f000 /usr/lib/libSystem.B.dylib | ||
353 | 0x0000000004f8f000 /usr/lib/libobjc.A.dylib | ||
354 | 0x0000000004f8f000 /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation | ||
355 | 0x0000000004f8f000 /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation | ||
356 | 0x0000000004f8f000 /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit | ||
357 | 0x0000000004f8f000 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData | ||
358 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices | ||
359 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation | ||
360 | 0x0000000004f8f000 /usr/lib/libScreenReader.dylib | ||
361 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate | ||
362 | 0x0000000004f8f000 /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface | ||
363 | 0x0000000004f8f000 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox | ||
364 | 0x0000000004f8f000 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit | ||
365 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore | ||
366 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv | ||
367 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox | ||
368 | 0x0000000004f8f000 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore | ||
369 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition | ||
370 | 0x0000000004f8f000 /usr/lib/libauto.dylib | ||
371 | 0x0000000004f8f000 /usr/lib/libicucore.A.dylib | ||
372 | 0x0000000004f8f000 /usr/lib/libxml2.2.dylib | ||
373 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI | ||
374 | 0x0000000004f8f000 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio | ||
375 | 0x0000000004f8f000 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration | ||
376 | 0x0000000004f8f000 /usr/lib/liblangid.dylib | ||
377 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport | ||
378 | 0x0000000004f8f000 /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit | ||
379 | 0x0000000004f8f000 /usr/lib/libDiagnosticMessagesClient.dylib | ||
380 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices | ||
381 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis | ||
382 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage | ||
383 | 0x0000000004f8f000 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL | ||
384 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing | ||
385 | 0x0000000004f8f000 /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics | ||
386 | 0x0000000004f8f000 /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage | ||
387 | 0x0000000004f8f000 /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText | ||
388 | 0x0000000004f8f000 /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO | ||
389 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup | ||
390 | 0x0000000004f8f000 /usr/lib/libextension.dylib | ||
391 | 0x0000000004f8f000 /usr/lib/libarchive.2.dylib | ||
392 | 0x0000000004f8f000 /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork | ||
393 | 0x0000000004f8f000 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration | ||
394 | 0x0000000004f8f000 /usr/lib/libCRFSuite.dylib | ||
395 | 0x0000000004f8f000 /usr/lib/libc++.1.dylib | ||
396 | 0x0000000004f8f000 /usr/lib/libc++abi.dylib | ||
397 | 0x0000000004f8f000 /usr/lib/system/libcache.dylib | ||
398 | 0x0000000004f8f000 /usr/lib/system/libcommonCrypto.dylib | ||
399 | 0x0000000004f8f000 /usr/lib/system/libcompiler_rt.dylib | ||
400 | 0x0000000004f8f000 /usr/lib/system/libcopyfile.dylib | ||
401 | 0x0000000004f8f000 /usr/lib/system/libcorecrypto.dylib | ||
402 | 0x0000000004f8f000 /usr/lib/system/libdispatch.dylib | ||
403 | 0x0000000004f8f000 /usr/lib/system/libdyld.dylib | ||
404 | 0x0000000004f8f000 /usr/lib/system/libkeymgr.dylib | ||
405 | 0x0000000004f8f000 /usr/lib/system/liblaunch.dylib | ||
406 | 0x0000000004f8f000 /usr/lib/system/libmacho.dylib | ||
407 | 0x0000000004f8f000 /usr/lib/system/libquarantine.dylib | ||
408 | 0x0000000004f8f000 /usr/lib/system/libremovefile.dylib | ||
409 | 0x0000000004f8f000 /usr/lib/system/libsystem_asl.dylib | ||
410 | 0x0000000004f8f000 /usr/lib/system/libsystem_blocks.dylib | ||
411 | 0x0000000004f8f000 /usr/lib/system/libsystem_c.dylib | ||
412 | 0x0000000004f8f000 /usr/lib/system/libsystem_configuration.dylib | ||
413 | 0x0000000004f8f000 /usr/lib/system/libsystem_coreservices.dylib | ||
414 | 0x0000000004f8f000 /usr/lib/system/libsystem_coretls.dylib | ||
415 | 0x0000000004f8f000 /usr/lib/system/libsystem_dnssd.dylib | ||
416 | 0x0000000004f8f000 /usr/lib/system/libsystem_info.dylib | ||
417 | 0x0000000004f8f000 /usr/lib/system/libsystem_kernel.dylib | ||
418 | 0x0000000004f8f000 /usr/lib/system/libsystem_m.dylib | ||
419 | 0x0000000004f8f000 /usr/lib/system/libsystem_malloc.dylib | ||
420 | 0x0000000004f8f000 /usr/lib/system/libsystem_network.dylib | ||
421 | 0x0000000004f8f000 /usr/lib/system/libsystem_networkextension.dylib | ||
422 | 0x0000000004f8f000 /usr/lib/system/libsystem_notify.dylib | ||
423 | 0x0000000004f8f000 /usr/lib/system/libsystem_platform.dylib | ||
424 | 0x0000000004f8f000 /usr/lib/system/libsystem_pthread.dylib | ||
425 | 0x0000000004f8f000 /usr/lib/system/libsystem_sandbox.dylib | ||
426 | 0x0000000004f8f000 /usr/lib/system/libsystem_secinit.dylib | ||
427 | 0x0000000004f8f000 /usr/lib/system/libsystem_trace.dylib | ||
428 | 0x0000000004f8f000 /usr/lib/system/libunc.dylib | ||
429 | 0x0000000004f8f000 /usr/lib/system/libunwind.dylib | ||
430 | 0x0000000004f8f000 /usr/lib/system/libxpc.dylib | ||
431 | 0x0000000004f8f000 /usr/lib/libenergytrace.dylib | ||
432 | 0x0000000004f8f000 /usr/lib/libbsm.0.dylib | ||
433 | 0x0000000004f8f000 /usr/lib/system/libkxld.dylib | ||
434 | 0x0000000004f8f000 /usr/lib/libxar.1.dylib | ||
435 | 0x0000000004f8f000 /usr/lib/libsqlite3.dylib | ||
436 | 0x0000000004f8f000 /usr/lib/libpam.2.dylib | ||
437 | 0x0000000004f8f000 /usr/lib/libOpenScriptingUtil.dylib | ||
438 | 0x0000000004f8f000 /usr/lib/libbz2.1.0.dylib | ||
439 | 0x0000000004f8f000 /usr/lib/liblzma.5.dylib | ||
440 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents | ||
441 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore | ||
442 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata | ||
443 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices | ||
444 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit | ||
445 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE | ||
446 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices | ||
447 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices | ||
448 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList | ||
449 | 0x0000000004f8f000 /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS | ||
450 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth | ||
451 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport | ||
452 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC | ||
453 | 0x0000000004f8f000 /usr/lib/libmecabra.dylib | ||
454 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS | ||
455 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync | ||
456 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices | ||
457 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis | ||
458 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore | ||
459 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD | ||
460 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis | ||
461 | 0x0000000004f8f000 /System/Library/Frameworks/Metal.framework/Versions/A/Metal | ||
462 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage | ||
463 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib | ||
464 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib | ||
465 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib | ||
466 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib | ||
467 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib | ||
468 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib | ||
469 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib | ||
470 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib | ||
471 | 0x0000000004f8f000 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib | ||
472 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator | ||
473 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib | ||
474 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib | ||
475 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA | ||
476 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG | ||
477 | 0x0000000004f8f000 /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib | ||
478 | 0x0000000004f8f000 /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib | ||
479 | 0x0000000004f8f000 /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib | ||
480 | 0x0000000004f8f000 /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib | ||
481 | 0x0000000004f8f000 /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib | ||
482 | 0x0000000004f8f000 /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib | ||
483 | 0x0000000004f8f000 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo | ||
484 | 0x0000000004f8f000 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib | ||
485 | 0x0000000004f8f000 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib | ||
486 | 0x0000000004f8f000 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib | ||
487 | 0x0000000004f8f000 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib | ||
488 | 0x0000000004f8f000 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib | ||
489 | 0x0000000004f8f000 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib | ||
490 | 0x0000000004f8f000 /usr/lib/libcompression.dylib | ||
491 | 0x0000000004f8f000 /usr/lib/libcups.2.dylib | ||
492 | 0x0000000004f8f000 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos | ||
493 | 0x0000000004f8f000 /System/Library/Frameworks/GSS.framework/Versions/A/GSS | ||
494 | 0x0000000004f8f000 /usr/lib/libresolv.9.dylib | ||
495 | 0x0000000004f8f000 /usr/lib/libiconv.2.dylib | ||
496 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal | ||
497 | 0x0000000004f8f000 /usr/lib/libheimdal-asn1.dylib | ||
498 | 0x0000000004f8f000 /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory | ||
499 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth | ||
500 | 0x0000000004f8f000 /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory | ||
501 | 0x0000000004f8f000 /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation | ||
502 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling | ||
503 | 0x0000000004f8f000 /usr/lib/libmarisa.dylib | ||
504 | 0x0000000004f8f000 /usr/lib/libChineseTokenizer.dylib | ||
505 | 0x0000000004f8f000 /usr/lib/libcmph.dylib | ||
506 | 0x0000000004f8f000 /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement | ||
507 | 0x0000000004f8f000 /usr/lib/libxslt.1.dylib | ||
508 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink | ||
509 | 0x0000000004f8f000 /usr/lib/libFosl_dynamic.dylib | ||
510 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore | ||
511 | 0x0000000004f8f000 /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL | ||
512 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport | ||
513 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices | ||
514 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 | ||
515 | 0x0000000004f8f000 /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN | ||
516 | 0x0000000004f8f000 /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth | ||
517 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi | ||
518 | 0x0000000004f8f000 /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth | ||
519 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary | ||
520 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols | ||
521 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication | ||
522 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication | ||
523 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore | ||
524 | 0x0000000101281000 /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib | ||
525 | 0x0000000102400000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/server/libjvm.dylib | ||
526 | 0x0000000004f8f000 /usr/lib/libstdc++.6.dylib | ||
527 | 0x00000001012c9000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/libverify.dylib | ||
528 | 0x00000001012d6000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/libjava.dylib | ||
529 | 0x0000000101307000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/libinstrument.dylib | ||
530 | 0x0000000101362000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/libzip.dylib | ||
531 | 0x000000011166e000 /System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework/JavaRuntimeSupport | ||
532 | 0x00000001013e6000 /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.framework/Versions/A/JavaNativeFoundation | ||
533 | 0x0000000111689000 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM | ||
534 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon | ||
535 | 0x0000000111696000 /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunching | ||
536 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels | ||
537 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help | ||
538 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture | ||
539 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting | ||
540 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print | ||
541 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI | ||
542 | 0x00000001135e0000 /Applications/IntelliJ IDEA 14.app/Contents/bin/libbreakgen64.jnilib | ||
543 | 0x00000001135e3000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/libnet.dylib | ||
544 | 0x000000011364d000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/libnio.dylib | ||
545 | 0x0000000113a3a000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/libawt.dylib | ||
546 | 0x0000000113ae9000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/./libmlib_image.dylib | ||
547 | 0x0000000113bb5000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/lwawt/liblwawt.dylib | ||
548 | 0x000000011300c000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/libosxapp.dylib | ||
549 | 0x0000000004f8f000 /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHandling | ||
550 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal | ||
551 | 0x0000000004f8f000 /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib | ||
552 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib | ||
553 | 0x0000000004f8f000 /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib | ||
554 | 0x0000000004f8f000 /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib | ||
555 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages | ||
556 | 0x0000000004f8f000 /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording | ||
557 | 0x0000000004f8f000 /usr/lib/libcsfde.dylib | ||
558 | 0x0000000004f8f000 /usr/lib/libcurl.4.dylib | ||
559 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit | ||
560 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage | ||
561 | 0x0000000004f8f000 /usr/lib/libCoreStorage.dylib | ||
562 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin | ||
563 | 0x0000000004f8f000 /usr/lib/libutil.dylib | ||
564 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice | ||
565 | 0x0000000004f8f000 /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP | ||
566 | 0x0000000004f8f000 /usr/lib/libsasl2.2.dylib | ||
567 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon | ||
568 | 0x0000000004f8f000 /usr/lib/libcrypto.0.9.8.dylib | ||
569 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP | ||
570 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent | ||
571 | 0x00000001138e0000 cl_kernels | ||
572 | 0x0000000004f8f000 /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib | ||
573 | 0x0000000004f8f000 /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgba.dylib | ||
574 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls | ||
575 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore | ||
576 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration | ||
577 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer | ||
578 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper | ||
579 | 0x0000000004f8f000 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService | ||
580 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore | ||
581 | 0x0000000004f8f000 /usr/lib/libodfde.dylib | ||
582 | 0x000000011397b000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/libfontmanager.dylib | ||
583 | |||
584 | VM Arguments: | ||
585 | jvm_args: -javaagent:/Users/JA/Library/Caches/IntelliJIdea14/coverageJars/coverage-agent.jar=/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/coverage23args -Didea.launcher.port=7533 -Didea.launcher.bin.path=/Applications/IntelliJ IDEA 14.app/Contents/bin -Dfile.encoding=UTF-8 | ||
586 | java_command: com.intellij.rt.execution.application.AppMain com.example.service.enroll.EnrollInfoServiceImpl | ||
587 | Launcher Type: SUN_STANDARD | ||
588 | |||
589 | Environment Variables: | ||
590 | JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_111.jdk/Contents/Home | ||
591 | PATH=/Users/JA/.sdkman/candidates/gradle/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin | ||
592 | SHELL=/bin/bash | ||
593 | |||
594 | Signal Handlers: | ||
595 | SIGSEGV: [libjvm.dylib+0x52daf1], sa_mask[0]=0xfffefeff, sa_flags=0x00000043 | ||
596 | SIGBUS: [libjvm.dylib+0x52daf1], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 | ||
597 | SIGFPE: [libjvm.dylib+0x41f34e], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 | ||
598 | SIGPIPE: [libjvm.dylib+0x41f34e], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 | ||
599 | SIGXFSZ: [libjvm.dylib+0x41f34e], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 | ||
600 | SIGILL: [libjvm.dylib+0x41f34e], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 | ||
601 | SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000 | ||
602 | SIGUSR2: [libjvm.dylib+0x41ee40], sa_mask[0]=0x00000004, sa_flags=0x00000042 | ||
603 | SIGHUP: [libjvm.dylib+0x41d0d1], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 | ||
604 | SIGINT: [libjvm.dylib+0x41d0d1], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 | ||
605 | SIGTERM: [libjvm.dylib+0x41d0d1], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 | ||
606 | SIGQUIT: [libjvm.dylib+0x41d0d1], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 | ||
607 | |||
608 | |||
609 | --------------- S Y S T E M --------------- | ||
610 | |||
611 | OS:Bsduname:Darwin 15.6.0 Darwin Kernel Version 15.6.0: Thu Jun 23 18:25:34 PDT 2016; root:xnu-3248.60.10~1/RELEASE_X86_64 x86_64 | ||
612 | rlimit: STACK 8192k, CORE 0k, NPROC 709, NOFILE 10240, AS infinity | ||
613 | load average:6.93 5.05 4.18 | ||
614 | |||
615 | CPU:total 8 (4 cores per cpu, 2 threads per core) family 6 model 70 stepping 1, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, erms, ht, tsc, tscinvbit | ||
616 | |||
617 | Memory: 4k page, physical 16777216k(4194304k free) | ||
618 | |||
619 | /proc/meminfo: | ||
620 | |||
621 | |||
622 | vm_info: Java HotSpot(TM) 64-Bit Server VM (24.79-b02) for bsd-amd64 JRE (1.7.0_79-b15), built on Apr 10 2015 11:35:04 by "java_re" with gcc 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00) | ||
623 | |||
624 | time: Mon Mar 27 15:55:49 2017 | ||
625 | elapsed time: 9 seconds | ||
626 |
yry_dp/hs_err_pid66147.log
0 → 100644
1 | # | ||
2 | # A fatal error has been detected by the Java Runtime Environment: | ||
3 | # | ||
4 | # SIGBUS (0xa) at pc=0x000000010a8cf0b7, pid=66147, tid=5891 | ||
5 | # | ||
6 | # JRE version: Java(TM) SE Runtime Environment (7.0_79-b15) (build 1.7.0_79-b15) | ||
7 | # Java VM: Java HotSpot(TM) 64-Bit Server VM (24.79-b02 mixed mode bsd-amd64 compressed oops) | ||
8 | # Problematic frame: | ||
9 | # C [libzip.dylib+0x30b7] newEntry+0x154 | ||
10 | # | ||
11 | # Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again | ||
12 | # | ||
13 | # If you would like to submit a bug report, please visit: | ||
14 | # http://bugreport.java.com/bugreport/crash.jsp | ||
15 | # The crash happened outside the Java Virtual Machine in native code. | ||
16 | # See problematic frame for where to report the bug. | ||
17 | # | ||
18 | |||
19 | --------------- T H R E A D --------------- | ||
20 | |||
21 | Current thread (0x00007fef64000000): JavaThread "main" [_thread_in_native, id=5891, stack(0x000070000011a000,0x000070000021a000)] | ||
22 | |||
23 | siginfo:si_signo=SIGBUS: si_errno=0, si_code=2 (BUS_ADRERR), si_addr=0x000000011cbb61f7 | ||
24 | |||
25 | Registers: | ||
26 | RAX=0x00007fef6050e540, RBX=0x000000011cbb61eb, RCX=0x0000000000000400, RDX=0x0000000000000000 | ||
27 | RSP=0x0000700000218830, RBP=0x0000700000218890, RSI=0x00007fef61b00000, RDI=0x000000010a5bee00 | ||
28 | R8 =0x0000000000000004, R9 =0x00000000fc000000, R10=0x000000010c4db1d8, R11=0x00006ff83c423096 | ||
29 | R12=0x0000000000000090, R13=0x00007fef6050e680, R14=0x00007fef6050e540, R15=0x00007fef61b3df20 | ||
30 | RIP=0x000000010a8cf0b7, EFLAGS=0x0000000000010206, ERR=0x0000000000000004 | ||
31 | TRAPNO=0x000000000000000e | ||
32 | |||
33 | Top of Stack: (sp=0x0000700000218830) | ||
34 | 0x0000700000218830: 0000000000000001 000000000bf59307 | ||
35 | 0x0000700000218840: 00007fef630035d2 000000bd0c469058 | ||
36 | 0x0000700000218850: 0000700000218870 00007fef6050e540 | ||
37 | 0x0000700000218860: 00007fef61b4e350 000000004eecb6d3 | ||
38 | 0x0000700000218870: 0000000000000090 00007fef6050e680 | ||
39 | 0x0000700000218880: 00007fef6050e540 00007fef61b3df20 | ||
40 | 0x0000700000218890: 00007000002188e0 000000010a8cf725 | ||
41 | 0x00007000002188a0: 0000000000000010 0000000064000000 | ||
42 | 0x00007000002188b0: 00007000002188fe 0000700000218d48 | ||
43 | 0x00007000002188c0: 0000000000000010 00007000002188fe | ||
44 | 0x00007000002188d0: 00007fef6050e540 00007fef640001e8 | ||
45 | 0x00007000002188e0: 0000700000218d30 000000010a8ce570 | ||
46 | 0x00007000002188f0: 0000000000000000 6f64000000000000 | ||
47 | 0x0000700000218900: 612f73706f725063 00006c6d782e7070 | ||
48 | 0x0000700000218910: 0000000000000000 0000700000218918 | ||
49 | 0x0000700000218920: 0000000000000000 0000000032aaaba2 | ||
50 | 0x0000700000218930: 0000000000000000 0000000000000000 | ||
51 | 0x0000700000218940: 0000000000000000 0000000000000000 | ||
52 | 0x0000700000218950: 0000000000000000 0000000000000000 | ||
53 | 0x0000700000218960: 0000000000000000 00000007c3df4e03 | ||
54 | 0x0000700000218970: 0000000000000000 0000000000000000 | ||
55 | 0x0000700000218980: 0000000000000000 0000000000000000 | ||
56 | 0x0000700000218990: 0000000000000000 0000000000000000 | ||
57 | 0x00007000002189a0: 0000000000000000 0000000000000000 | ||
58 | 0x00007000002189b0: 0000000000000000 0000000000000000 | ||
59 | 0x00007000002189c0: 0000000000000000 0000000118cfca31 | ||
60 | 0x00007000002189d0: 0000000100218a20 00007fef61b00ba0 | ||
61 | 0x00007000002189e0: 00007fef61b00b90 0000000000000001 | ||
62 | 0x00007000002189f0: 00007fef61b00ba8 00007fef61b00b88 | ||
63 | 0x0000700000218a00: 0000700000218a80 000000010bda19a9 | ||
64 | 0x0000700000218a10: 0000000118d37980 00000006fb1cc128 | ||
65 | 0x0000700000218a20: 0000700000218a50 00007fef64000000 | ||
66 | |||
67 | Instructions: (pc=0x000000010a8cf0b7) | ||
68 | 0x000000010a8cf097: 49 8b 7f 38 e8 9c 1a 00 00 4d 89 77 38 49 89 5f | ||
69 | 0x000000010a8cf0a7: 40 4c 89 f0 48 85 c0 0f 84 16 05 00 00 48 89 c3 | ||
70 | 0x000000010a8cf0b7: 0f b6 43 0c 0f b6 4b 0d 48 c1 e1 08 48 01 c1 0f | ||
71 | 0x000000010a8cf0c7: b6 43 0e 0f b6 53 0f 48 c1 e2 08 48 01 c2 48 c1 | ||
72 | |||
73 | Register to memory mapping: | ||
74 | |||
75 | RAX=0x00007fef6050e540 is an unknown value | ||
76 | RBX=0x000000011cbb61eb is an unknown value | ||
77 | RCX=0x0000000000000400 is an unknown value | ||
78 | RDX=0x0000000000000000 is an unknown value | ||
79 | RSP=0x0000700000218830 is pointing into the stack for thread: 0x00007fef64000000 | ||
80 | RBP=0x0000700000218890 is pointing into the stack for thread: 0x00007fef64000000 | ||
81 | RSI=0x00007fef61b00000 is an unknown value | ||
82 | RDI=0x000000010a5bee00 is an unknown value | ||
83 | R8 =0x0000000000000004 is an unknown value | ||
84 | R9 =0x00000000fc000000 is an unknown value | ||
85 | R10=0x000000010c4db1d8 is at entry_point+88 in (nmethod*)0x000000010c4db010 | ||
86 | R11=0x00006ff83c423096 is an unknown value | ||
87 | R12=0x0000000000000090 is an unknown value | ||
88 | R13=0x00007fef6050e680 is an unknown value | ||
89 | R14=0x00007fef6050e540 is an unknown value | ||
90 | R15=0x00007fef61b3df20 is an unknown value | ||
91 | |||
92 | |||
93 | Stack: [0x000070000011a000,0x000070000021a000], sp=0x0000700000218830, free space=1018k | ||
94 | Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) | ||
95 | C [libzip.dylib+0x30b7] newEntry+0x154 | ||
96 | C [libzip.dylib+0x3725] ZIP_GetEntry+0xa2 | ||
97 | C [libzip.dylib+0x2570] Java_java_util_zip_ZipFile_getEntry+0xdd | ||
98 | J 50 java.util.zip.ZipFile.getEntry(J[BZ)J (0 bytes) @ 0x000000010c4db24e [0x000000010c4db180+0xce] | ||
99 | j java.util.zip.ZipFile.getInputStream(Ljava/util/zip/ZipEntry;)Ljava/io/InputStream;+88 | ||
100 | j org.apache.poi.openxml4j.util.ZipSecureFile.getInputStream(Ljava/util/zip/ZipEntry;)Ljava/io/InputStream;+2 | ||
101 | j org.apache.poi.openxml4j.util.ZipFileZipEntrySource.getInputStream(Ljava/util/zip/ZipEntry;)Ljava/io/InputStream;+22 | ||
102 | j org.apache.poi.openxml4j.opc.ZipPackagePart.getInputStreamImpl()Ljava/io/InputStream;+14 | ||
103 | j org.apache.poi.openxml4j.opc.PackagePart.getInputStream()Ljava/io/InputStream;+1 | ||
104 | j org.apache.poi.POIXMLProperties.<init>(Lorg/apache/poi/openxml4j/opc/OPCPackage;)V+69 | ||
105 | j org.apache.poi.POIXMLDocument.getProperties()Lorg/apache/poi/POIXMLProperties;+16 | ||
106 | j org.apache.poi.POIXMLDocument.write(Ljava/io/OutputStream;)V+39 | ||
107 | J 680% C2 com.example.service.enroll.EnrollInfoServiceImpl.filed()V (534 bytes) @ 0x000000010c6ac640 [0x000000010c6ab420+0x1220] | ||
108 | j com.example.service.enroll.EnrollInfoServiceImpl.main([Ljava/lang/String;)V+13 | ||
109 | v ~StubRoutines::call_stub | ||
110 | V [libjvm.dylib+0x2dbef8] JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*)+0x22a | ||
111 | V [libjvm.dylib+0x2dbcc8] JavaCalls::call(JavaValue*, methodHandle, JavaCallArguments*, Thread*)+0x28 | ||
112 | V [libjvm.dylib+0x467718] Reflection::invoke(instanceKlassHandle, methodHandle, Handle, bool, objArrayHandle, BasicType, objArrayHandle, bool, Thread*)+0x9fc | ||
113 | V [libjvm.dylib+0x467b7e] Reflection::invoke_method(oopDesc*, Handle, objArrayHandle, Thread*)+0x16e | ||
114 | V [libjvm.dylib+0x328747] JVM_InvokeMethod+0x166 | ||
115 | j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 | ||
116 | j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87 | ||
117 | j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 | ||
118 | j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+57 | ||
119 | j com.intellij.rt.execution.application.AppMain.main([Ljava/lang/String;)V+157 | ||
120 | v ~StubRoutines::call_stub | ||
121 | V [libjvm.dylib+0x2dbef8] JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*)+0x22a | ||
122 | V [libjvm.dylib+0x2dbcc8] JavaCalls::call(JavaValue*, methodHandle, JavaCallArguments*, Thread*)+0x28 | ||
123 | V [libjvm.dylib+0x30f55e] jni_invoke_static(JNIEnv_*, JavaValue*, _jobject*, JNICallType, _jmethodID*, JNI_ArgumentPusher*, Thread*)+0xe6 | ||
124 | V [libjvm.dylib+0x3086f9] jni_CallStaticVoidMethod+0x10b | ||
125 | C [java+0x30fe] JavaMain+0x91d | ||
126 | C [libsystem_pthread.dylib+0x399d] _pthread_body+0x83 | ||
127 | C [libsystem_pthread.dylib+0x391a] _pthread_body+0x0 | ||
128 | C [libsystem_pthread.dylib+0x1351] thread_start+0xd | ||
129 | |||
130 | Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) | ||
131 | J 50 java.util.zip.ZipFile.getEntry(J[BZ)J (0 bytes) @ 0x000000010c4db1d8 [0x000000010c4db180+0x58] | ||
132 | j java.util.zip.ZipFile.getInputStream(Ljava/util/zip/ZipEntry;)Ljava/io/InputStream;+88 | ||
133 | j org.apache.poi.openxml4j.util.ZipSecureFile.getInputStream(Ljava/util/zip/ZipEntry;)Ljava/io/InputStream;+2 | ||
134 | j org.apache.poi.openxml4j.util.ZipFileZipEntrySource.getInputStream(Ljava/util/zip/ZipEntry;)Ljava/io/InputStream;+22 | ||
135 | j org.apache.poi.openxml4j.opc.ZipPackagePart.getInputStreamImpl()Ljava/io/InputStream;+14 | ||
136 | j org.apache.poi.openxml4j.opc.PackagePart.getInputStream()Ljava/io/InputStream;+1 | ||
137 | j org.apache.poi.POIXMLProperties.<init>(Lorg/apache/poi/openxml4j/opc/OPCPackage;)V+69 | ||
138 | j org.apache.poi.POIXMLDocument.getProperties()Lorg/apache/poi/POIXMLProperties;+16 | ||
139 | j org.apache.poi.POIXMLDocument.write(Ljava/io/OutputStream;)V+39 | ||
140 | J 680% C2 com.example.service.enroll.EnrollInfoServiceImpl.filed()V (534 bytes) @ 0x000000010c6ac640 [0x000000010c6ab420+0x1220] | ||
141 | j com.example.service.enroll.EnrollInfoServiceImpl.main([Ljava/lang/String;)V+13 | ||
142 | v ~StubRoutines::call_stub | ||
143 | j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 | ||
144 | j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87 | ||
145 | j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 | ||
146 | j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+57 | ||
147 | j com.intellij.rt.execution.application.AppMain.main([Ljava/lang/String;)V+157 | ||
148 | v ~StubRoutines::call_stub | ||
149 | |||
150 | --------------- P R O C E S S --------------- | ||
151 | |||
152 | Java Threads: ( => current thread ) | ||
153 | 0x00007fef640e0000 JavaThread "Monitor Ctrl-Break" daemon [_thread_in_native, id=21251, stack(0x0000700001353000,0x0000700001453000)] | ||
154 | 0x00007fef61020000 JavaThread "Service Thread" daemon [_thread_blocked, id=20227, stack(0x000070000114d000,0x000070000124d000)] | ||
155 | 0x00007fef6101c800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=19715, stack(0x000070000104a000,0x000070000114a000)] | ||
156 | 0x00007fef62028800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=19203, stack(0x0000700000f47000,0x0000700001047000)] | ||
157 | 0x00007fef64014000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=14863, stack(0x0000700000e44000,0x0000700000f44000)] | ||
158 | 0x00007fef6080b000 JavaThread "Finalizer" daemon [_thread_blocked, id=14339, stack(0x0000700000c3b000,0x0000700000d3b000)] | ||
159 | 0x00007fef6080a000 JavaThread "Reference Handler" daemon [_thread_blocked, id=13827, stack(0x0000700000b38000,0x0000700000c38000)] | ||
160 | =>0x00007fef64000000 JavaThread "main" [_thread_in_native, id=5891, stack(0x000070000011a000,0x000070000021a000)] | ||
161 | |||
162 | Other Threads: | ||
163 | 0x00007fef6100c000 VMThread [stack: 0x0000700000a35000,0x0000700000b35000] [id=13315] | ||
164 | 0x00007fef6101d800 WatcherThread [stack: 0x0000700001250000,0x0000700001350000] [id=20739] | ||
165 | |||
166 | VM state:not at safepoint (normal execution) | ||
167 | |||
168 | VM Mutex/Monitor currently owned by a thread: None | ||
169 | |||
170 | Heap | ||
171 | PSYoungGen total 1239040K, used 540731K [0x00000007aaa80000, 0x0000000800000000, 0x0000000800000000) | ||
172 | eden space 1114112K, 38% used [0x00000007aaa80000,0x00000007c52be670,0x00000007eea80000) | ||
173 | from space 124928K, 85% used [0x00000007eea80000,0x00000007f52505d8,0x00000007f6480000) | ||
174 | to space 159232K, 0% used [0x00000007f6480000,0x00000007f6480000,0x0000000800000000) | ||
175 | ParOldGen total 634880K, used 378992K [0x0000000700000000, 0x0000000726c00000, 0x00000007aaa80000) | ||
176 | object space 634880K, 59% used [0x0000000700000000,0x000000071721c288,0x0000000726c00000) | ||
177 | PSPermGen total 26112K, used 11638K [0x00000006fae00000, 0x00000006fc780000, 0x0000000700000000) | ||
178 | object space 26112K, 44% used [0x00000006fae00000,0x00000006fb95d990,0x00000006fc780000) | ||
179 | |||
180 | Card table byte_map: [0x000000010f463000,0x000000010fc8d000] byte_map_base: 0x000000010bc8c000 | ||
181 | |||
182 | Polling page: 0x000000010a870000 | ||
183 | |||
184 | Code Cache [0x000000010c463000, 0x000000010c733000, 0x000000010f463000) | ||
185 | total_blobs=1060 nmethods=787 adapters=227 free_code_cache=46356Kb largest_free_block=47415744 | ||
186 | |||
187 | Compilation events (10 events): | ||
188 | Event: 14.099 Thread 0x00007fef62028800 nmethod 787 0x000000010c709850 code [0x000000010c7099a0, 0x000000010c709a48] | ||
189 | Event: 14.099 Thread 0x00007fef62028800 788 java.io.OutputStreamWriter::flush (8 bytes) | ||
190 | Event: 14.100 Thread 0x00007fef62028800 nmethod 788 0x000000010c7043d0 code [0x000000010c704540, 0x000000010c704928] | ||
191 | Event: 14.100 Thread 0x00007fef62028800 789 ! sun.nio.cs.StreamEncoder::flush (26 bytes) | ||
192 | Event: 14.102 Thread 0x00007fef62028800 nmethod 789 0x000000010c70b790 code [0x000000010c70b8e0, 0x000000010c70bcc8] | ||
193 | Event: 14.102 Thread 0x00007fef62028800 790 sun.nio.cs.StreamEncoder::implFlush (19 bytes) | ||
194 | Event: 14.102 Thread 0x00007fef62028800 nmethod 790 0x000000010c702910 code [0x000000010c702a60, 0x000000010c702b28] | ||
195 | Event: 14.102 Thread 0x00007fef62028800 791 org.apache.xmlbeans.impl.store.Saver$InputStreamSaver$OutputStreamImpl::write (224 bytes) | ||
196 | Event: 14.102 Thread 0x00007fef6101c800 nmethod 786 0x000000010c7039d0 code [0x000000010c703b40, 0x000000010c703fe8] | ||
197 | Event: 14.105 Thread 0x00007fef62028800 nmethod 791 0x000000010c703250 code [0x000000010c7033c0, 0x000000010c703768] | ||
198 | |||
199 | GC Heap History (10 events): | ||
200 | Event: 6.821 GC heap before | ||
201 | {Heap before GC invocations=11 (full 0): | ||
202 | PSYoungGen total 877056K, used 877050K [0x00000007aaa80000, 0x00000007e9c80000, 0x0000000800000000) | ||
203 | eden space 792064K, 100% used [0x00000007aaa80000,0x00000007db000000,0x00000007db000000) | ||
204 | from space 84992K, 99% used [0x00000007e1a80000,0x00000007e6d7e8a8,0x00000007e6d80000) | ||
205 | to space 109056K, 0% used [0x00000007db000000,0x00000007db000000,0x00000007e1a80000) | ||
206 | ParOldGen total 174592K, used 131169K [0x0000000700000000, 0x000000070aa80000, 0x00000007aaa80000) | ||
207 | object space 174592K, 75% used [0x0000000700000000,0x00000007080184a0,0x000000070aa80000) | ||
208 | PSPermGen total 21504K, used 11398K [0x00000006fae00000, 0x00000006fc300000, 0x0000000700000000) | ||
209 | object space 21504K, 53% used [0x00000006fae00000,0x00000006fb9219d8,0x00000006fc300000) | ||
210 | Event: 7.205 GC heap after | ||
211 | Heap after GC invocations=11 (full 0): | ||
212 | PSYoungGen total 901120K, used 85479K [0x00000007aaa80000, 0x0000000800000000, 0x0000000800000000) | ||
213 | eden space 792064K, 0% used [0x00000007aaa80000,0x00000007aaa80000,0x00000007db000000) | ||
214 | from space 109056K, 78% used [0x00000007db000000,0x00000007e0379cd8,0x00000007e1a80000) | ||
215 | to space 118272K, 0% used [0x00000007f8c80000,0x00000007f8c80000,0x0000000800000000) | ||
216 | ParOldGen total 216064K, used 215569K [0x0000000700000000, 0x000000070d300000, 0x00000007aaa80000) | ||
217 | object space 216064K, 99% used [0x0000000700000000,0x000000070d2844a0,0x000000070d300000) | ||
218 | PSPermGen total 21504K, used 11398K [0x00000006fae00000, 0x00000006fc300000, 0x0000000700000000) | ||
219 | object space 21504K, 53% used [0x00000006fae00000,0x00000006fb9219d8,0x00000006fc300000) | ||
220 | } | ||
221 | Event: 7.205 GC heap before | ||
222 | {Heap before GC invocations=12 (full 1): | ||
223 | PSYoungGen total 901120K, used 85479K [0x00000007aaa80000, 0x0000000800000000, 0x0000000800000000) | ||
224 | eden space 792064K, 0% used [0x00000007aaa80000,0x00000007aaa80000,0x00000007db000000) | ||
225 | from space 109056K, 78% used [0x00000007db000000,0x00000007e0379cd8,0x00000007e1a80000) | ||
226 | to space 118272K, 0% used [0x00000007f8c80000,0x00000007f8c80000,0x0000000800000000) | ||
227 | ParOldGen total 216064K, used 215569K [0x0000000700000000, 0x000000070d300000, 0x00000007aaa80000) | ||
228 | object space 216064K, 99% used [0x0000000700000000,0x000000070d2844a0,0x000000070d300000) | ||
229 | PSPermGen total 21504K, used 11398K [0x00000006fae00000, 0x00000006fc300000, 0x0000000700000000) | ||
230 | object space 21504K, 53% used [0x00000006fae00000,0x00000006fb9219d8,0x00000006fc300000) | ||
231 | Event: 8.925 GC heap after | ||
232 | Heap after GC invocations=12 (full 1): | ||
233 | PSYoungGen total 901120K, used 81640K [0x00000007aaa80000, 0x0000000800000000, 0x0000000800000000) | ||
234 | eden space 792064K, 0% used [0x00000007aaa80000,0x00000007aaa80000,0x00000007db000000) | ||
235 | from space 109056K, 74% used [0x00000007db000000,0x00000007dffba348,0x00000007e1a80000) | ||
236 | to space 118272K, 0% used [0x00000007f8c80000,0x00000007f8c80000,0x0000000800000000) | ||
237 | ParOldGen total 379392K, used 215831K [0x0000000700000000, 0x0000000717280000, 0x00000007aaa80000) | ||
238 | object space 379392K, 56% used [0x0000000700000000,0x000000070d2c5ca0,0x0000000717280000) | ||
239 | PSPermGen total 23040K, used 11391K [0x00000006fae00000, 0x00000006fc480000, 0x0000000700000000) | ||
240 | object space 23040K, 49% used [0x00000006fae00000,0x00000006fb91fea0,0x00000006fc480000) | ||
241 | } | ||
242 | Event: 9.544 GC heap before | ||
243 | {Heap before GC invocations=13 (full 1): | ||
244 | PSYoungGen total 901120K, used 873704K [0x00000007aaa80000, 0x0000000800000000, 0x0000000800000000) | ||
245 | eden space 792064K, 100% used [0x00000007aaa80000,0x00000007db000000,0x00000007db000000) | ||
246 | from space 109056K, 74% used [0x00000007db000000,0x00000007dffba348,0x00000007e1a80000) | ||
247 | to space 118272K, 0% used [0x00000007f8c80000,0x00000007f8c80000,0x0000000800000000) | ||
248 | ParOldGen total 379392K, used 215831K [0x0000000700000000, 0x0000000717280000, 0x00000007aaa80000) | ||
249 | object space 379392K, 56% used [0x0000000700000000,0x000000070d2c5ca0,0x0000000717280000) | ||
250 | PSPermGen total 23040K, used 11391K [0x00000006fae00000, 0x00000006fc480000, 0x0000000700000000) | ||
251 | object space 23040K, 49% used [0x00000006fae00000,0x00000006fb91fea0,0x00000006fc480000) | ||
252 | Event: 9.731 GC heap after | ||
253 | Heap after GC invocations=13 (full 1): | ||
254 | PSYoungGen total 1080832K, used 83680K [0x00000007aaa80000, 0x00000007fde80000, 0x0000000800000000) | ||
255 | eden space 996864K, 0% used [0x00000007aaa80000,0x00000007aaa80000,0x00000007e7800000) | ||
256 | from space 83968K, 99% used [0x00000007f8c80000,0x00000007fde38368,0x00000007fde80000) | ||
257 | to space 124928K, 0% used [0x00000007eea80000,0x00000007eea80000,0x00000007f6480000) | ||
258 | ParOldGen total 379392K, used 297959K [0x0000000700000000, 0x0000000717280000, 0x00000007aaa80000) | ||
259 | object space 379392K, 78% used [0x0000000700000000,0x00000007122f9cb0,0x0000000717280000) | ||
260 | PSPermGen total 23040K, used 11391K [0x00000006fae00000, 0x00000006fc480000, 0x0000000700000000) | ||
261 | object space 23040K, 49% used [0x00000006fae00000,0x00000006fb91fea0,0x00000006fc480000) | ||
262 | } | ||
263 | Event: 10.570 GC heap before | ||
264 | {Heap before GC invocations=14 (full 1): | ||
265 | PSYoungGen total 1080832K, used 1080544K [0x00000007aaa80000, 0x00000007fde80000, 0x0000000800000000) | ||
266 | eden space 996864K, 100% used [0x00000007aaa80000,0x00000007e7800000,0x00000007e7800000) | ||
267 | from space 83968K, 99% used [0x00000007f8c80000,0x00000007fde38368,0x00000007fde80000) | ||
268 | to space 124928K, 0% used [0x00000007eea80000,0x00000007eea80000,0x00000007f6480000) | ||
269 | ParOldGen total 379392K, used 297959K [0x0000000700000000, 0x0000000717280000, 0x00000007aaa80000) | ||
270 | object space 379392K, 78% used [0x0000000700000000,0x00000007122f9cb0,0x0000000717280000) | ||
271 | PSPermGen total 23040K, used 11392K [0x00000006fae00000, 0x00000006fc480000, 0x0000000700000000) | ||
272 | object space 23040K, 49% used [0x00000006fae00000,0x00000006fb920068,0x00000006fc480000) | ||
273 | Event: 10.852 GC heap after | ||
274 | Heap after GC invocations=14 (full 1): | ||
275 | PSYoungGen total 1239040K, used 124906K [0x00000007aaa80000, 0x0000000800000000, 0x0000000800000000) | ||
276 | eden space 1114112K, 0% used [0x00000007aaa80000,0x00000007aaa80000,0x00000007eea80000) | ||
277 | from space 124928K, 99% used [0x00000007eea80000,0x00000007f647ab00,0x00000007f6480000) | ||
278 | to space 159232K, 0% used [0x00000007f6480000,0x00000007f6480000,0x0000000800000000) | ||
279 | ParOldGen total 379392K, used 362919K [0x0000000700000000, 0x0000000717280000, 0x00000007aaa80000) | ||
280 | object space 379392K, 95% used [0x0000000700000000,0x0000000716269cb0,0x0000000717280000) | ||
281 | PSPermGen total 23040K, used 11392K [0x00000006fae00000, 0x00000006fc480000, 0x0000000700000000) | ||
282 | object space 23040K, 49% used [0x00000006fae00000,0x00000006fb920068,0x00000006fc480000) | ||
283 | } | ||
284 | Event: 10.852 GC heap before | ||
285 | {Heap before GC invocations=15 (full 2): | ||
286 | PSYoungGen total 1239040K, used 124906K [0x00000007aaa80000, 0x0000000800000000, 0x0000000800000000) | ||
287 | eden space 1114112K, 0% used [0x00000007aaa80000,0x00000007aaa80000,0x00000007eea80000) | ||
288 | from space 124928K, 99% used [0x00000007eea80000,0x00000007f647ab00,0x00000007f6480000) | ||
289 | to space 159232K, 0% used [0x00000007f6480000,0x00000007f6480000,0x0000000800000000) | ||
290 | ParOldGen total 379392K, used 362919K [0x0000000700000000, 0x0000000717280000, 0x00000007aaa80000) | ||
291 | object space 379392K, 95% used [0x0000000700000000,0x0000000716269cb0,0x0000000717280000) | ||
292 | PSPermGen total 23040K, used 11392K [0x00000006fae00000, 0x00000006fc480000, 0x0000000700000000) | ||
293 | object space 23040K, 49% used [0x00000006fae00000,0x00000006fb920068,0x00000006fc480000) | ||
294 | Event: 12.220 GC heap after | ||
295 | Heap after GC invocations=15 (full 2): | ||
296 | PSYoungGen total 1239040K, used 106305K [0x00000007aaa80000, 0x0000000800000000, 0x0000000800000000) | ||
297 | eden space 1114112K, 0% used [0x00000007aaa80000,0x00000007aaa80000,0x00000007eea80000) | ||
298 | from space 124928K, 85% used [0x00000007eea80000,0x00000007f52505d8,0x00000007f6480000) | ||
299 | to space 159232K, 0% used [0x00000007f6480000,0x00000007f6480000,0x0000000800000000) | ||
300 | ParOldGen total 634880K, used 378992K [0x0000000700000000, 0x0000000726c00000, 0x00000007aaa80000) | ||
301 | object space 634880K, 59% used [0x0000000700000000,0x000000071721c288,0x0000000726c00000) | ||
302 | PSPermGen total 26112K, used 11392K [0x00000006fae00000, 0x00000006fc780000, 0x0000000700000000) | ||
303 | object space 26112K, 43% used [0x00000006fae00000,0x00000006fb920068,0x00000006fc780000) | ||
304 | } | ||
305 | |||
306 | Deoptimization events (10 events): | ||
307 | Event: 13.817 Thread 0x00007fef64000000 Uncommon trap: reason=unreached action=reinterpret pc=0x000000010c714100 method=org.apache.xmlbeans.impl.store.Saver.processElement()V @ 265 | ||
308 | Event: 14.115 Thread 0x00007fef64000000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000000010c5eb468 method=org.apache.xmlbeans.impl.schema.SchemaTypeImpl.createTypeStoreUser()Lorg/apache/xmlbeans/impl/values/TypeStoreUser; @ 5 | ||
309 | Event: 14.115 Thread 0x00007fef64000000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000000010c4ee0cc method=org.apache.xmlbeans.impl.store.Xobj.setStableUser(Lorg/apache/xmlbeans/impl/values/TypeStoreUser;)V @ 39 | ||
310 | Event: 14.115 Thread 0x00007fef64000000 Uncommon trap: reason=unreached action=reinterpret pc=0x000000010c568a70 method=org.apache.xmlbeans.SchemaComponent$Ref.getComponent()Lorg/apache/xmlbeans/SchemaComponent; @ 4 | ||
311 | Event: 14.122 Thread 0x00007fef64000000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000000010c5eb468 method=org.apache.xmlbeans.impl.schema.SchemaTypeImpl.createTypeStoreUser()Lorg/apache/xmlbeans/impl/values/TypeStoreUser; @ 5 | ||
312 | Event: 14.122 Thread 0x00007fef64000000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000000010c4ee0cc method=org.apache.xmlbeans.impl.store.Xobj.setStableUser(Lorg/apache/xmlbeans/impl/values/TypeStoreUser;)V @ 39 | ||
313 | Event: 14.122 Thread 0x00007fef64000000 Uncommon trap: reason=unreached action=reinterpret pc=0x000000010c53dd50 method=org.apache.xmlbeans.SchemaComponent$Ref.getComponent()Lorg/apache/xmlbeans/SchemaComponent; @ 4 | ||
314 | Event: 14.123 Thread 0x00007fef64000000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000000010c686880 method=java.util.regex.Pattern.compile()V @ 246 | ||
315 | Event: 14.123 Thread 0x00007fef64000000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000000010c686880 method=java.util.regex.Pattern.compile()V @ 246 | ||
316 | Event: 14.124 Thread 0x00007fef64000000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000000010c686880 method=java.util.regex.Pattern.compile()V @ 246 | ||
317 | |||
318 | Internal exceptions (10 events): | ||
319 | Event: 14.113 Thread 0x00007fef64000000 Threw 0x00000007bf0cb5b8 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
320 | Event: 14.114 Thread 0x00007fef64000000 Threw 0x00000007bf0f5168 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
321 | Event: 14.117 Thread 0x00007fef64000000 Threw 0x00000007c3d09e98 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
322 | Event: 14.118 Thread 0x00007fef64000000 Threw 0x00000007c3d37110 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
323 | Event: 14.120 Thread 0x00007fef64000000 Threw 0x00000007c3d4e950 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
324 | Event: 14.120 Thread 0x00007fef64000000 Threw 0x00000007c3d677f8 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
325 | Event: 14.121 Thread 0x00007fef64000000 Threw 0x00000007c3d90f20 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
326 | Event: 14.122 Thread 0x00007fef64000000 Threw 0x00000007c3dbbc80 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
327 | Event: 14.122 Thread 0x00007fef64000000 Threw 0x00000007c3dd2570 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
328 | Event: 14.123 Thread 0x00007fef64000000 Threw 0x00000007c3de4d00 at /HUDSON/workspace/7u-2-build-macosx-x86_64/jdk7u79/2331/hotspot/src/share/vm/prims/jvm.cpp:1304 | ||
329 | |||
330 | Events (10 events): | ||
331 | Event: 14.123 loading class 0x00007fef6052b840 done | ||
332 | Event: 14.123 Thread 0x00007fef64000000 Uncommon trap: trap_request=0xffffffde fr.pc=0x000000010c686880 | ||
333 | Event: 14.123 Thread 0x00007fef64000000 DEOPT PACKING pc=0x000000010c686880 sp=0x0000700000218c50 | ||
334 | Event: 14.123 Thread 0x00007fef64000000 DEOPT UNPACKING pc=0x000000010c49c045 sp=0x0000700000218c38 mode 2 | ||
335 | Event: 14.123 Thread 0x00007fef64000000 Uncommon trap: trap_request=0xffffffde fr.pc=0x000000010c686880 | ||
336 | Event: 14.123 Thread 0x00007fef64000000 DEOPT PACKING pc=0x000000010c686880 sp=0x0000700000218c50 | ||
337 | Event: 14.123 Thread 0x00007fef64000000 DEOPT UNPACKING pc=0x000000010c49c045 sp=0x0000700000218c38 mode 2 | ||
338 | Event: 14.124 Thread 0x00007fef64000000 Uncommon trap: trap_request=0xffffffde fr.pc=0x000000010c686880 | ||
339 | Event: 14.124 Thread 0x00007fef64000000 DEOPT PACKING pc=0x000000010c686880 sp=0x0000700000218c50 | ||
340 | Event: 14.124 Thread 0x00007fef64000000 DEOPT UNPACKING pc=0x000000010c49c045 sp=0x0000700000218c38 mode 2 | ||
341 | |||
342 | |||
343 | Dynamic libraries: | ||
344 | 0x0000000004f8f000 /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa | ||
345 | 0x0000000004f8f000 /System/Library/Frameworks/Security.framework/Versions/A/Security | ||
346 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices | ||
347 | 0x0000000004f8f000 /usr/lib/libz.1.dylib | ||
348 | 0x0000000004f8f000 /usr/lib/libSystem.B.dylib | ||
349 | 0x0000000004f8f000 /usr/lib/libobjc.A.dylib | ||
350 | 0x0000000004f8f000 /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation | ||
351 | 0x0000000004f8f000 /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation | ||
352 | 0x0000000004f8f000 /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit | ||
353 | 0x0000000004f8f000 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData | ||
354 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices | ||
355 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation | ||
356 | 0x0000000004f8f000 /usr/lib/libScreenReader.dylib | ||
357 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate | ||
358 | 0x0000000004f8f000 /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface | ||
359 | 0x0000000004f8f000 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox | ||
360 | 0x0000000004f8f000 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit | ||
361 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore | ||
362 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv | ||
363 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox | ||
364 | 0x0000000004f8f000 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore | ||
365 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition | ||
366 | 0x0000000004f8f000 /usr/lib/libauto.dylib | ||
367 | 0x0000000004f8f000 /usr/lib/libicucore.A.dylib | ||
368 | 0x0000000004f8f000 /usr/lib/libxml2.2.dylib | ||
369 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI | ||
370 | 0x0000000004f8f000 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio | ||
371 | 0x0000000004f8f000 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration | ||
372 | 0x0000000004f8f000 /usr/lib/liblangid.dylib | ||
373 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport | ||
374 | 0x0000000004f8f000 /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit | ||
375 | 0x0000000004f8f000 /usr/lib/libDiagnosticMessagesClient.dylib | ||
376 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices | ||
377 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis | ||
378 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage | ||
379 | 0x0000000004f8f000 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL | ||
380 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing | ||
381 | 0x0000000004f8f000 /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics | ||
382 | 0x0000000004f8f000 /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage | ||
383 | 0x0000000004f8f000 /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText | ||
384 | 0x0000000004f8f000 /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO | ||
385 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup | ||
386 | 0x0000000004f8f000 /usr/lib/libextension.dylib | ||
387 | 0x0000000004f8f000 /usr/lib/libarchive.2.dylib | ||
388 | 0x0000000004f8f000 /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork | ||
389 | 0x0000000004f8f000 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration | ||
390 | 0x0000000004f8f000 /usr/lib/libCRFSuite.dylib | ||
391 | 0x0000000004f8f000 /usr/lib/libc++.1.dylib | ||
392 | 0x0000000004f8f000 /usr/lib/libc++abi.dylib | ||
393 | 0x0000000004f8f000 /usr/lib/system/libcache.dylib | ||
394 | 0x0000000004f8f000 /usr/lib/system/libcommonCrypto.dylib | ||
395 | 0x0000000004f8f000 /usr/lib/system/libcompiler_rt.dylib | ||
396 | 0x0000000004f8f000 /usr/lib/system/libcopyfile.dylib | ||
397 | 0x0000000004f8f000 /usr/lib/system/libcorecrypto.dylib | ||
398 | 0x0000000004f8f000 /usr/lib/system/libdispatch.dylib | ||
399 | 0x0000000004f8f000 /usr/lib/system/libdyld.dylib | ||
400 | 0x0000000004f8f000 /usr/lib/system/libkeymgr.dylib | ||
401 | 0x0000000004f8f000 /usr/lib/system/liblaunch.dylib | ||
402 | 0x0000000004f8f000 /usr/lib/system/libmacho.dylib | ||
403 | 0x0000000004f8f000 /usr/lib/system/libquarantine.dylib | ||
404 | 0x0000000004f8f000 /usr/lib/system/libremovefile.dylib | ||
405 | 0x0000000004f8f000 /usr/lib/system/libsystem_asl.dylib | ||
406 | 0x0000000004f8f000 /usr/lib/system/libsystem_blocks.dylib | ||
407 | 0x0000000004f8f000 /usr/lib/system/libsystem_c.dylib | ||
408 | 0x0000000004f8f000 /usr/lib/system/libsystem_configuration.dylib | ||
409 | 0x0000000004f8f000 /usr/lib/system/libsystem_coreservices.dylib | ||
410 | 0x0000000004f8f000 /usr/lib/system/libsystem_coretls.dylib | ||
411 | 0x0000000004f8f000 /usr/lib/system/libsystem_dnssd.dylib | ||
412 | 0x0000000004f8f000 /usr/lib/system/libsystem_info.dylib | ||
413 | 0x0000000004f8f000 /usr/lib/system/libsystem_kernel.dylib | ||
414 | 0x0000000004f8f000 /usr/lib/system/libsystem_m.dylib | ||
415 | 0x0000000004f8f000 /usr/lib/system/libsystem_malloc.dylib | ||
416 | 0x0000000004f8f000 /usr/lib/system/libsystem_network.dylib | ||
417 | 0x0000000004f8f000 /usr/lib/system/libsystem_networkextension.dylib | ||
418 | 0x0000000004f8f000 /usr/lib/system/libsystem_notify.dylib | ||
419 | 0x0000000004f8f000 /usr/lib/system/libsystem_platform.dylib | ||
420 | 0x0000000004f8f000 /usr/lib/system/libsystem_pthread.dylib | ||
421 | 0x0000000004f8f000 /usr/lib/system/libsystem_sandbox.dylib | ||
422 | 0x0000000004f8f000 /usr/lib/system/libsystem_secinit.dylib | ||
423 | 0x0000000004f8f000 /usr/lib/system/libsystem_trace.dylib | ||
424 | 0x0000000004f8f000 /usr/lib/system/libunc.dylib | ||
425 | 0x0000000004f8f000 /usr/lib/system/libunwind.dylib | ||
426 | 0x0000000004f8f000 /usr/lib/system/libxpc.dylib | ||
427 | 0x0000000004f8f000 /usr/lib/libenergytrace.dylib | ||
428 | 0x0000000004f8f000 /usr/lib/libbsm.0.dylib | ||
429 | 0x0000000004f8f000 /usr/lib/system/libkxld.dylib | ||
430 | 0x0000000004f8f000 /usr/lib/libxar.1.dylib | ||
431 | 0x0000000004f8f000 /usr/lib/libsqlite3.dylib | ||
432 | 0x0000000004f8f000 /usr/lib/libpam.2.dylib | ||
433 | 0x0000000004f8f000 /usr/lib/libOpenScriptingUtil.dylib | ||
434 | 0x0000000004f8f000 /usr/lib/libbz2.1.0.dylib | ||
435 | 0x0000000004f8f000 /usr/lib/liblzma.5.dylib | ||
436 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents | ||
437 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore | ||
438 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata | ||
439 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices | ||
440 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit | ||
441 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE | ||
442 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices | ||
443 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices | ||
444 | 0x0000000004f8f000 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList | ||
445 | 0x0000000004f8f000 /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS | ||
446 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth | ||
447 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport | ||
448 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC | ||
449 | 0x0000000004f8f000 /usr/lib/libmecabra.dylib | ||
450 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS | ||
451 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync | ||
452 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices | ||
453 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis | ||
454 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore | ||
455 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD | ||
456 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis | ||
457 | 0x0000000004f8f000 /System/Library/Frameworks/Metal.framework/Versions/A/Metal | ||
458 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage | ||
459 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib | ||
460 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib | ||
461 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib | ||
462 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib | ||
463 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib | ||
464 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib | ||
465 | 0x0000000004f8f000 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib | ||
466 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib | ||
467 | 0x0000000004f8f000 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib | ||
468 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator | ||
469 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib | ||
470 | 0x0000000004f8f000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib | ||
471 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA | ||
472 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG | ||
473 | 0x0000000004f8f000 /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib | ||
474 | 0x0000000004f8f000 /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib | ||
475 | 0x0000000004f8f000 /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib | ||
476 | 0x0000000004f8f000 /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib | ||
477 | 0x0000000004f8f000 /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib | ||
478 | 0x0000000004f8f000 /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib | ||
479 | 0x0000000004f8f000 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo | ||
480 | 0x0000000004f8f000 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib | ||
481 | 0x0000000004f8f000 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib | ||
482 | 0x0000000004f8f000 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib | ||
483 | 0x0000000004f8f000 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib | ||
484 | 0x0000000004f8f000 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib | ||
485 | 0x0000000004f8f000 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib | ||
486 | 0x0000000004f8f000 /usr/lib/libcompression.dylib | ||
487 | 0x0000000004f8f000 /usr/lib/libcups.2.dylib | ||
488 | 0x0000000004f8f000 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos | ||
489 | 0x0000000004f8f000 /System/Library/Frameworks/GSS.framework/Versions/A/GSS | ||
490 | 0x0000000004f8f000 /usr/lib/libresolv.9.dylib | ||
491 | 0x0000000004f8f000 /usr/lib/libiconv.2.dylib | ||
492 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal | ||
493 | 0x0000000004f8f000 /usr/lib/libheimdal-asn1.dylib | ||
494 | 0x0000000004f8f000 /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory | ||
495 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth | ||
496 | 0x0000000004f8f000 /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory | ||
497 | 0x0000000004f8f000 /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation | ||
498 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling | ||
499 | 0x0000000004f8f000 /usr/lib/libmarisa.dylib | ||
500 | 0x0000000004f8f000 /usr/lib/libChineseTokenizer.dylib | ||
501 | 0x0000000004f8f000 /usr/lib/libcmph.dylib | ||
502 | 0x0000000004f8f000 /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement | ||
503 | 0x0000000004f8f000 /usr/lib/libxslt.1.dylib | ||
504 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink | ||
505 | 0x0000000004f8f000 /usr/lib/libFosl_dynamic.dylib | ||
506 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore | ||
507 | 0x0000000004f8f000 /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL | ||
508 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport | ||
509 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices | ||
510 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 | ||
511 | 0x0000000004f8f000 /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN | ||
512 | 0x0000000004f8f000 /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth | ||
513 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi | ||
514 | 0x0000000004f8f000 /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth | ||
515 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary | ||
516 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols | ||
517 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication | ||
518 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication | ||
519 | 0x0000000004f8f000 /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore | ||
520 | 0x000000010a7eb000 /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib | ||
521 | 0x000000010ba00000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/server/libjvm.dylib | ||
522 | 0x0000000004f8f000 /usr/lib/libstdc++.6.dylib | ||
523 | 0x000000010a833000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/libverify.dylib | ||
524 | 0x000000010a840000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/libjava.dylib | ||
525 | 0x000000010a871000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/libinstrument.dylib | ||
526 | 0x000000010a8cc000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/libzip.dylib | ||
527 | 0x000000011abc0000 /System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework/JavaRuntimeSupport | ||
528 | 0x000000011abdb000 /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.framework/Versions/A/JavaNativeFoundation | ||
529 | 0x000000011abf0000 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM | ||
530 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon | ||
531 | 0x000000011abfd000 /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunching | ||
532 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels | ||
533 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help | ||
534 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture | ||
535 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting | ||
536 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print | ||
537 | 0x0000000004f8f000 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI | ||
538 | 0x000000011cb4a000 /Applications/IntelliJ IDEA 14.app/Contents/bin/libbreakgen64.jnilib | ||
539 | 0x000000011cb4d000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/libnet.dylib | ||
540 | 0x000000011cbb7000 /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/libnio.dylib | ||
541 | |||
542 | VM Arguments: | ||
543 | jvm_args: -javaagent:/Users/JA/Library/Caches/IntelliJIdea14/coverageJars/coverage-agent.jar=/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/coverage24args -Didea.launcher.port=7534 -Didea.launcher.bin.path=/Applications/IntelliJ IDEA 14.app/Contents/bin -Dfile.encoding=UTF-8 | ||
544 | java_command: com.intellij.rt.execution.application.AppMain com.example.service.enroll.EnrollInfoServiceImpl | ||
545 | Launcher Type: SUN_STANDARD | ||
546 | |||
547 | Environment Variables: | ||
548 | JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_111.jdk/Contents/Home | ||
549 | PATH=/Users/JA/.sdkman/candidates/gradle/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin | ||
550 | SHELL=/bin/bash | ||
551 | |||
552 | Signal Handlers: | ||
553 | SIGSEGV: [libjvm.dylib+0x52daf1], sa_mask[0]=0xfffefeff, sa_flags=0x00000043 | ||
554 | SIGBUS: [libjvm.dylib+0x52daf1], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 | ||
555 | SIGFPE: [libjvm.dylib+0x41f34e], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 | ||
556 | SIGPIPE: [libjvm.dylib+0x41f34e], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 | ||
557 | SIGXFSZ: [libjvm.dylib+0x41f34e], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 | ||
558 | SIGILL: [libjvm.dylib+0x41f34e], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 | ||
559 | SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000 | ||
560 | SIGUSR2: [libjvm.dylib+0x41ee40], sa_mask[0]=0x00000004, sa_flags=0x00000042 | ||
561 | SIGHUP: [libjvm.dylib+0x41d0d1], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 | ||
562 | SIGINT: [libjvm.dylib+0x41d0d1], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 | ||
563 | SIGTERM: [libjvm.dylib+0x41d0d1], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 | ||
564 | SIGQUIT: [libjvm.dylib+0x41d0d1], sa_mask[0]=0xfffefeff, sa_flags=0x00000042 | ||
565 | |||
566 | |||
567 | --------------- S Y S T E M --------------- | ||
568 | |||
569 | OS:Bsduname:Darwin 15.6.0 Darwin Kernel Version 15.6.0: Thu Jun 23 18:25:34 PDT 2016; root:xnu-3248.60.10~1/RELEASE_X86_64 x86_64 | ||
570 | rlimit: STACK 8192k, CORE 0k, NPROC 709, NOFILE 10240, AS infinity | ||
571 | load average:5.09 5.08 4.31 | ||
572 | |||
573 | CPU:total 8 (4 cores per cpu, 2 threads per core) family 6 model 70 stepping 1, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, erms, ht, tsc, tscinvbit | ||
574 | |||
575 | Memory: 4k page, physical 16777216k(4194304k free) | ||
576 | |||
577 | /proc/meminfo: | ||
578 | |||
579 | |||
580 | vm_info: Java HotSpot(TM) 64-Bit Server VM (24.79-b02) for bsd-amd64 JRE (1.7.0_79-b15), built on Apr 10 2015 11:35:04 by "java_re" with gcc 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00) | ||
581 | |||
582 | time: Mon Mar 27 15:57:49 2017 | ||
583 | elapsed time: 14 seconds | ||
584 |
yry_dp/libs/shdupp-jdk1.5.jar
0 → 100644
No preview for this file type
yry_dp/logs/catalina-2017-02-16.0.log
0 → 100644
1 | [ INFO ] [2017-02-16 15:10:32] com.example.DemoApplication [48] - Starting DemoApplication on qujiehuideMacBook-Pro.local with PID 11128 (/Users/JA/Downloads/trunk/demo(1)/target/classes started by JA in /Users/JA/Downloads/trunk/demo(1)) | ||
2 | [ INFO ] [2017-02-16 15:10:32] com.example.DemoApplication [666] - No active profile set, falling back to default profiles: default | ||
3 | [ INFO ] [2017-02-16 15:10:32] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [578] - Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@1981d40a: startup date [Thu Feb 16 15:10:32 CST 2017]; root of context hierarchy | ||
4 | [ INFO ] [2017-02-16 15:10:34] org.springframework.beans.factory.support.DefaultListableBeanFactory [839] - Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]] | ||
5 | [ INFO ] [2017-02-16 15:10:35] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mybatis.CONFIGURATION_PROPERTIES' of type [class org.mybatis.spring.boot.autoconfigure.MybatisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
6 | [ INFO ] [2017-02-16 15:10:35] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.data.mongodb.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.mongo.MongoProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
7 | [ INFO ] [2017-02-16 15:10:35] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration' of type [class org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration$$EnhancerBySpringCGLIB$$41d04e21] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
8 | [ INFO ] [2017-02-16 15:10:35] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration' of type [class org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration$$EnhancerBySpringCGLIB$$69007f7f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
9 | [ INFO ] [2017-02-16 15:10:35] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongo' of type [class com.mongodb.MongoClient] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
10 | [ INFO ] [2017-02-16 15:10:35] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoDbFactory' of type [class org.springframework.data.mongodb.core.SimpleMongoDbFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
11 | [ INFO ] [2017-02-16 15:10:35] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoMappingContext' of type [class org.springframework.data.mongodb.core.mapping.MongoMappingContext] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
12 | [ INFO ] [2017-02-16 15:10:35] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mappingMongoConverter' of type [class org.springframework.data.mongodb.core.convert.MappingMongoConverter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
13 | [ INFO ] [2017-02-16 15:10:35] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoTemplate' of type [class org.springframework.data.mongodb.core.MongoTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
14 | [ INFO ] [2017-02-16 15:10:35] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'gridFsTemplate' of type [class org.springframework.data.mongodb.gridfs.GridFsTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
15 | [ INFO ] [2017-02-16 15:10:35] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration' of type [class org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration$$EnhancerBySpringCGLIB$$e1661d11] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
16 | [ INFO ] [2017-02-16 15:10:35] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.datasource.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
17 | [ INFO ] [2017-02-16 15:10:35] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
18 | [ INFO ] [2017-02-16 15:10:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'dataSource' of type [class org.apache.tomcat.jdbc.pool.DataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
19 | [ INFO ] [2017-02-16 15:10:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionFactory' of type [class org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
20 | [ INFO ] [2017-02-16 15:10:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionTemplate' of type [class org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
21 | [ INFO ] [2017-02-16 15:10:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxMessageMonitorMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
22 | [ INFO ] [2017-02-16 15:10:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxComponentInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
23 | [ INFO ] [2017-02-16 15:10:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxAuthorizerMessageMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
24 | [ INFO ] [2017-02-16 15:10:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxAuthorizerJsapiTicketMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
25 | [ INFO ] [2017-02-16 15:10:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxAuthorizerInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
26 | [ INFO ] [2017-02-16 15:10:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxAuthorizerApiTicketMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
27 | [ INFO ] [2017-02-16 15:10:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [class org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$f261fc3f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
28 | [ INFO ] [2017-02-16 15:10:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$8b0431e1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
29 | [ INFO ] [2017-02-16 15:10:37] org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainerFactory [149] - Server initialized with port: 8080 | ||
30 | [ INFO ] [2017-02-16 15:10:37] org.eclipse.jetty.server.Server [327] - jetty-9.2.15.v20160210 | ||
31 | [ INFO ] [2017-02-16 15:10:37] application [2052] - Initializing Spring embedded WebApplicationContext | ||
32 | [ INFO ] [2017-02-16 15:10:37] org.springframework.web.context.ContextLoader [272] - Root WebApplicationContext: initialization completed in 4532 ms | ||
33 | [ INFO ] [2017-02-16 15:10:38] org.springframework.boot.context.embedded.ServletRegistrationBean [189] - Mapping servlet: 'dispatcherServlet' to [/] | ||
34 | [ INFO ] [2017-02-16 15:10:38] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'characterEncodingFilter' to: [/*] | ||
35 | [ INFO ] [2017-02-16 15:10:38] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'hiddenHttpMethodFilter' to: [/*] | ||
36 | [ INFO ] [2017-02-16 15:10:38] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'httpPutFormContentFilter' to: [/*] | ||
37 | [ INFO ] [2017-02-16 15:10:38] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'requestContextFilter' to: [/*] | ||
38 | [ INFO ] [2017-02-16 15:10:38] org.eclipse.jetty.server.handler.ContextHandler [744] - Started o.s.b.c.e.j.JettyEmbeddedWebAppContext@32876124{/,file:/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/jetty-docbase.6461811064739140774.8080/,AVAILABLE} | ||
39 | [ INFO ] [2017-02-16 15:10:38] org.eclipse.jetty.server.Server [379] - Started @7185ms | ||
40 | [ INFO ] [2017-02-16 15:10:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [532] - Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@1981d40a: startup date [Thu Feb 16 15:10:32 CST 2017]; root of context hierarchy | ||
41 | [ INFO ] [2017-02-16 15:10:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/jssign/get],methods=[POST]}" onto private com.example.support.model.MessageEntity com.example.controller.wx.WxAuthorizerController.signature(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) throws com.example.support.exception.WxException | ||
42 | [ INFO ] [2017-02-16 15:10:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/login],methods=[GET]}" onto public java.lang.String com.example.controller.wx.WxAuthorizerController.login() throws java.io.UnsupportedEncodingException,com.example.support.exception.WxException | ||
43 | [ INFO ] [2017-02-16 15:10:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/oauth]}" onto public java.lang.String com.example.controller.wx.WxAuthorizerController.oauth(java.lang.String,java.lang.String,java.lang.String) | ||
44 | [ INFO ] [2017-02-16 15:10:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/callback]}" onto public java.lang.String com.example.controller.wx.WxAuthorizerController.authorizeCallback(java.lang.String,int) | ||
45 | [ INFO ] [2017-02-16 15:10:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/user/get]}" onto public com.example.support.model.MessageEntity com.example.controller.wx.WxAuthorizerController.redirectUri(javax.servlet.http.HttpServletRequest,java.lang.String) | ||
46 | [ INFO ] [2017-02-16 15:10:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/oauthCallback]}" onto public java.lang.String com.example.controller.wx.WxAuthorizerController.redirectUri(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) | ||
47 | [ INFO ] [2017-02-16 15:10:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/verify]}" onto public java.lang.String com.example.controller.wx.WxAuthorizerController.event(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
48 | [ INFO ] [2017-02-16 15:10:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/card/ext]}" onto public com.example.support.model.MessageEntity com.example.controller.wx.WxCardController.cardExtSign(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws com.example.support.exception.WxAppNotFoundException,java.io.IOException | ||
49 | [ INFO ] [2017-02-16 15:10:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/listener/add]}" onto public com.example.support.model.MessageEntity com.example.controller.wx.WxListenerController.add(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
50 | [ INFO ] [2017-02-16 15:10:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/listener/delete]}" onto public com.example.support.model.MessageEntity com.example.controller.wx.WxListenerController.delete(javax.servlet.http.HttpServletRequest,java.lang.String) | ||
51 | [ INFO ] [2017-02-16 15:10:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/listener/{appId}]}" onto public java.lang.String com.example.controller.wx.WxListenerController.event(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
52 | [ INFO ] [2017-02-16 15:10:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/url/request]}" onto public com.example.support.model.MessageEntity com.example.controller.wx.WxUrlRequestController.request(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
53 | [ INFO ] [2017-02-16 15:10:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
54 | [ INFO ] [2017-02-16 15:10:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
55 | [ INFO ] [2017-02-16 15:10:38] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
56 | [ INFO ] [2017-02-16 15:10:38] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
57 | [ INFO ] [2017-02-16 15:10:39] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
58 | [ INFO ] [2017-02-16 15:10:39] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] - Registering beans for JMX exposure on startup | ||
59 | [ INFO ] [2017-02-16 15:10:39] application [2052] - Initializing Spring FrameworkServlet 'dispatcherServlet' | ||
60 | [ INFO ] [2017-02-16 15:10:39] org.springframework.web.servlet.DispatcherServlet [488] - FrameworkServlet 'dispatcherServlet': initialization started | ||
61 | [ INFO ] [2017-02-16 15:10:39] org.springframework.web.servlet.DispatcherServlet [507] - FrameworkServlet 'dispatcherServlet': initialization completed in 27 ms | ||
62 | [ INFO ] [2017-02-16 15:10:39] org.eclipse.jetty.server.ServerConnector [266] - Started ServerConnector@49016a5f{HTTP/1.1}{0.0.0.0:8080} | ||
63 | [ INFO ] [2017-02-16 15:10:39] org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainer [121] - Jetty started on port(s) 8080 (http/1.1) | ||
64 | [ INFO ] [2017-02-16 15:10:39] com.example.DemoApplication [57] - Started DemoApplication in 7.78 seconds (JVM running for 8.592) | ||
65 | [ INFO ] [2017-02-16 15:10:51] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [960] - Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@1981d40a: startup date [Thu Feb 16 15:10:32 CST 2017]; root of context hierarchy | ||
66 | [ INFO ] [2017-02-16 15:10:51] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [449] - Unregistering JMX-exposed beans on shutdown | ||
67 | [ WARN ] [2017-02-16 15:10:51] org.springframework.beans.factory.support.DisposableBeanAdapter [364] - Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate': java.lang.UnsupportedOperationException: Manual close is not allowed over a Spring managed SqlSession | ||
68 | [ INFO ] [2017-02-16 15:10:51] org.eclipse.jetty.server.ServerConnector [306] - Stopped ServerConnector@49016a5f{HTTP/1.1}{0.0.0.0:8080} | ||
69 | [ INFO ] [2017-02-16 15:10:51] application [2052] - Destroying Spring FrameworkServlet 'dispatcherServlet' | ||
70 | [ INFO ] [2017-02-16 15:10:51] org.eclipse.jetty.server.handler.ContextHandler [865] - Stopped o.s.b.c.e.j.JettyEmbeddedWebAppContext@32876124{/,file:/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/jetty-docbase.6461811064739140774.8080/,UNAVAILABLE} | ||
71 | [ INFO ] [2017-02-16 15:14:25] org.hibernate.validator.internal.util.Version [30] - HV000001: Hibernate Validator 5.2.4.Final | ||
72 | [ INFO ] [2017-02-16 15:14:25] com.example.DemoApplication [48] - Starting DemoApplication on qujiehuideMacBook-Pro.local with PID 11143 (/Users/JA/Downloads/csair_dp_HDP/target/classes started by JA in /Users/JA/Downloads/csair_dp_HDP) | ||
73 | [ INFO ] [2017-02-16 15:14:25] com.example.DemoApplication [666] - No active profile set, falling back to default profiles: default | ||
74 | [ INFO ] [2017-02-16 15:14:25] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [578] - Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@54ba2aa4: startup date [Thu Feb 16 15:14:25 CST 2017]; root of context hierarchy | ||
75 | [ INFO ] [2017-02-16 15:14:27] org.springframework.beans.factory.support.DefaultListableBeanFactory [839] - Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]] | ||
76 | [ INFO ] [2017-02-16 15:14:27] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mybatis.CONFIGURATION_PROPERTIES' of type [class org.mybatis.spring.boot.autoconfigure.MybatisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
77 | [ INFO ] [2017-02-16 15:14:27] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.data.mongodb.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.mongo.MongoProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
78 | [ INFO ] [2017-02-16 15:14:27] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration' of type [class org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration$$EnhancerBySpringCGLIB$$9419900e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
79 | [ INFO ] [2017-02-16 15:14:27] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration' of type [class org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration$$EnhancerBySpringCGLIB$$bb49c16c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
80 | [ INFO ] [2017-02-16 15:14:27] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongo' of type [class com.mongodb.MongoClient] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
81 | [ INFO ] [2017-02-16 15:14:27] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoDbFactory' of type [class org.springframework.data.mongodb.core.SimpleMongoDbFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
82 | [ INFO ] [2017-02-16 15:14:27] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoMappingContext' of type [class org.springframework.data.mongodb.core.mapping.MongoMappingContext] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
83 | [ INFO ] [2017-02-16 15:14:28] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mappingMongoConverter' of type [class org.springframework.data.mongodb.core.convert.MappingMongoConverter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
84 | [ INFO ] [2017-02-16 15:14:28] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoTemplate' of type [class org.springframework.data.mongodb.core.MongoTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
85 | [ INFO ] [2017-02-16 15:14:28] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'gridFsTemplate' of type [class org.springframework.data.mongodb.gridfs.GridFsTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
86 | [ INFO ] [2017-02-16 15:14:28] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration' of type [class org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration$$EnhancerBySpringCGLIB$$33af5efe] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
87 | [ INFO ] [2017-02-16 15:14:28] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.datasource.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
88 | [ INFO ] [2017-02-16 15:14:28] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
89 | [ INFO ] [2017-02-16 15:14:28] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'dataSource' of type [class org.apache.tomcat.jdbc.pool.DataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
90 | [ INFO ] [2017-02-16 15:14:29] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionFactory' of type [class org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
91 | [ INFO ] [2017-02-16 15:14:29] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionTemplate' of type [class org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
92 | [ INFO ] [2017-02-16 15:14:29] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxMessageMonitorMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
93 | [ INFO ] [2017-02-16 15:14:29] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxComponentInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
94 | [ INFO ] [2017-02-16 15:14:29] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxAuthorizerMessageMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
95 | [ INFO ] [2017-02-16 15:14:29] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxAuthorizerJsapiTicketMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
96 | [ INFO ] [2017-02-16 15:14:29] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxAuthorizerInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
97 | [ INFO ] [2017-02-16 15:14:29] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxAuthorizerApiTicketMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
98 | [ INFO ] [2017-02-16 15:14:29] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'formInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
99 | [ INFO ] [2017-02-16 15:14:29] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [class org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$44ab3e2c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
100 | [ INFO ] [2017-02-16 15:14:29] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$dd4d73ce] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
101 | [ INFO ] [2017-02-16 15:14:29] org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainerFactory [149] - Server initialized with port: 8080 | ||
102 | [ INFO ] [2017-02-16 15:14:29] org.eclipse.jetty.server.Server [327] - jetty-9.2.15.v20160210 | ||
103 | [ INFO ] [2017-02-16 15:14:29] application [2052] - Initializing Spring embedded WebApplicationContext | ||
104 | [ INFO ] [2017-02-16 15:14:29] org.springframework.web.context.ContextLoader [272] - Root WebApplicationContext: initialization completed in 4037 ms | ||
105 | [ INFO ] [2017-02-16 15:14:29] org.springframework.boot.context.embedded.ServletRegistrationBean [189] - Mapping servlet: 'dispatcherServlet' to [/] | ||
106 | [ INFO ] [2017-02-16 15:14:30] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'characterEncodingFilter' to: [/*] | ||
107 | [ INFO ] [2017-02-16 15:14:30] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'hiddenHttpMethodFilter' to: [/*] | ||
108 | [ INFO ] [2017-02-16 15:14:30] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'httpPutFormContentFilter' to: [/*] | ||
109 | [ INFO ] [2017-02-16 15:14:30] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'requestContextFilter' to: [/*] | ||
110 | [ INFO ] [2017-02-16 15:14:30] org.eclipse.jetty.server.handler.ContextHandler [744] - Started o.s.b.c.e.j.JettyEmbeddedWebAppContext@bc65445{/,file:/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/jetty-docbase.3935552864351981631.8080/,AVAILABLE} | ||
111 | [ INFO ] [2017-02-16 15:14:30] org.eclipse.jetty.server.Server [379] - Started @6583ms | ||
112 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [532] - Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@54ba2aa4: startup date [Thu Feb 16 15:14:25 CST 2017]; root of context hierarchy | ||
113 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/form/save]}" onto public com.example.support.model.MessageEntity com.example.controller.form.FormController.save(javax.servlet.http.HttpServletRequest,com.example.models.form.FormInfo) | ||
114 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/jssign/get],methods=[POST]}" onto private com.example.support.model.MessageEntity com.example.controller.wx.WxAuthorizerController.signature(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) throws com.example.support.exception.WxException | ||
115 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/login],methods=[GET]}" onto public java.lang.String com.example.controller.wx.WxAuthorizerController.login() throws java.io.UnsupportedEncodingException,com.example.support.exception.WxException | ||
116 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/callback]}" onto public java.lang.String com.example.controller.wx.WxAuthorizerController.authorizeCallback(java.lang.String,int) | ||
117 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/oauth]}" onto public java.lang.String com.example.controller.wx.WxAuthorizerController.oauth(java.lang.String,java.lang.String,java.lang.String) | ||
118 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/oauthCallback]}" onto public java.lang.String com.example.controller.wx.WxAuthorizerController.redirectUri(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) | ||
119 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/user/get]}" onto public com.example.support.model.MessageEntity com.example.controller.wx.WxAuthorizerController.redirectUri(javax.servlet.http.HttpServletRequest,java.lang.String) | ||
120 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/verify]}" onto public java.lang.String com.example.controller.wx.WxAuthorizerController.event(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
121 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/card/ext]}" onto public com.example.support.model.MessageEntity com.example.controller.wx.WxCardController.cardExtSign(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws com.example.support.exception.WxAppNotFoundException,java.io.IOException | ||
122 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/listener/add]}" onto public com.example.support.model.MessageEntity com.example.controller.wx.WxListenerController.add(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
123 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/listener/delete]}" onto public com.example.support.model.MessageEntity com.example.controller.wx.WxListenerController.delete(javax.servlet.http.HttpServletRequest,java.lang.String) | ||
124 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/listener/{appId}]}" onto public java.lang.String com.example.controller.wx.WxListenerController.event(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
125 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/url/request]}" onto public com.example.support.model.MessageEntity com.example.controller.wx.WxUrlRequestController.request(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
126 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
127 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
128 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
129 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
130 | [ INFO ] [2017-02-16 15:14:30] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
131 | [ INFO ] [2017-02-16 15:14:31] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] - Registering beans for JMX exposure on startup | ||
132 | [ INFO ] [2017-02-16 15:14:31] application [2052] - Initializing Spring FrameworkServlet 'dispatcherServlet' | ||
133 | [ INFO ] [2017-02-16 15:14:31] org.springframework.web.servlet.DispatcherServlet [488] - FrameworkServlet 'dispatcherServlet': initialization started | ||
134 | [ INFO ] [2017-02-16 15:14:31] org.springframework.web.servlet.DispatcherServlet [507] - FrameworkServlet 'dispatcherServlet': initialization completed in 16 ms | ||
135 | [ INFO ] [2017-02-16 15:14:31] org.eclipse.jetty.server.ServerConnector [266] - Started ServerConnector@1297e48e{HTTP/1.1}{0.0.0.0:8080} | ||
136 | [ INFO ] [2017-02-16 15:14:31] org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainer [121] - Jetty started on port(s) 8080 (http/1.1) | ||
137 | [ INFO ] [2017-02-16 15:14:31] com.example.DemoApplication [57] - Started DemoApplication in 6.781 seconds (JVM running for 7.756) | ||
138 | [ WARN ] [2017-02-16 15:14:34] org.apache.tomcat.jdbc.pool.interceptor.SlowQueryReport [180] - Slow Query Report SQL=INSERT INTO form_info ( | ||
139 | package_name, | ||
140 | |||
141 | phone_number, | ||
142 | |||
143 | email, | ||
144 | |||
145 | buying_time, | ||
146 | |||
147 | create_at | ||
148 | ) | ||
149 | VALUES ( | ||
150 | ?, | ||
151 | |||
152 | ?, | ||
153 | |||
154 | ?, | ||
155 | |||
156 | ?, | ||
157 | |||
158 | ? | ||
159 | ); time=4 ms; | ||
160 | [ INFO ] [2017-02-16 15:15:40] org.springframework.test.context.support.AbstractContextLoader [242] - Could not detect default resource locations for test class [com.example.DemoApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}. | ||
161 | [ INFO ] [2017-02-16 15:15:40] org.springframework.test.context.web.WebTestContextBootstrapper [259] - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] | ||
162 | [ INFO ] [2017-02-16 15:15:40] org.springframework.test.context.web.WebTestContextBootstrapper [185] - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@211b3c6a, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@31b6421, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@7b4ab41e, org.springframework.test.context.support.DirtiesContextTestExecutionListener@65775cce, org.springframework.test.context.transaction.TransactionalTestExecutionListener@7f6e0c6c, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@11f1c7d0] | ||
163 | [ INFO ] [2017-02-16 15:15:40] org.springframework.test.context.support.AbstractContextLoader [242] - Could not detect default resource locations for test class [com.example.DemoApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}. | ||
164 | [ INFO ] [2017-02-16 15:15:40] org.springframework.test.context.web.WebTestContextBootstrapper [259] - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] | ||
165 | [ INFO ] [2017-02-16 15:15:40] org.springframework.test.context.web.WebTestContextBootstrapper [185] - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@4bc2fdde, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@6ea920ad, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@21a0769d, org.springframework.test.context.support.DirtiesContextTestExecutionListener@2dcb4eaa, org.springframework.test.context.transaction.TransactionalTestExecutionListener@7e999262, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@1459a0dd] | ||
166 | [ INFO ] [2017-02-16 15:15:40] com.example.DemoApplicationTests [48] - Starting DemoApplicationTests on qujiehuideMacBook-Pro.local with PID 11149 (/Users/JA/Downloads/csair_dp_HDP/target/test-classes started by JA in /Users/JA/Downloads/csair_dp_HDP) | ||
167 | [ INFO ] [2017-02-16 15:15:40] com.example.DemoApplicationTests [666] - No active profile set, falling back to default profiles: default | ||
168 | [ INFO ] [2017-02-16 15:15:41] org.springframework.web.context.support.GenericWebApplicationContext [578] - Refreshing org.springframework.web.context.support.GenericWebApplicationContext@719fe652: startup date [Thu Feb 16 15:15:41 CST 2017]; root of context hierarchy | ||
169 | [ INFO ] [2017-02-16 15:15:41] org.hibernate.validator.internal.util.Version [30] - HV000001: Hibernate Validator 5.2.4.Final | ||
170 | [ INFO ] [2017-02-16 15:15:42] org.springframework.beans.factory.support.DefaultListableBeanFactory [839] - Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]] | ||
171 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mybatis.CONFIGURATION_PROPERTIES' of type [class org.mybatis.spring.boot.autoconfigure.MybatisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
172 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.data.mongodb.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.mongo.MongoProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
173 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration' of type [class org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration$$EnhancerBySpringCGLIB$$eb8a18f2] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
174 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration' of type [class org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration$$EnhancerBySpringCGLIB$$12ba4a50] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
175 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongo' of type [class com.mongodb.MongoClient] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
176 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoDbFactory' of type [class org.springframework.data.mongodb.core.SimpleMongoDbFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
177 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoMappingContext' of type [class org.springframework.data.mongodb.core.mapping.MongoMappingContext] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
178 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mappingMongoConverter' of type [class org.springframework.data.mongodb.core.convert.MappingMongoConverter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
179 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoTemplate' of type [class org.springframework.data.mongodb.core.MongoTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
180 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'gridFsTemplate' of type [class org.springframework.data.mongodb.gridfs.GridFsTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
181 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration' of type [class org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration$$EnhancerBySpringCGLIB$$8b1fe7e2] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
182 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.datasource.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
183 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
184 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'dataSource' of type [class org.apache.tomcat.jdbc.pool.DataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
185 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionFactory' of type [class org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
186 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionTemplate' of type [class org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
187 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxMessageMonitorMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
188 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxComponentInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
189 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxAuthorizerMessageMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
190 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxAuthorizerJsapiTicketMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
191 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxAuthorizerInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
192 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxAuthorizerApiTicketMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
193 | [ INFO ] [2017-02-16 15:15:43] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'formInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
194 | [ INFO ] [2017-02-16 15:15:44] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [class org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$9c1bc710] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
195 | [ INFO ] [2017-02-16 15:15:44] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$34bdfcb2] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
196 | [ INFO ] [2017-02-16 15:15:44] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [532] - Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@719fe652: startup date [Thu Feb 16 15:15:41 CST 2017]; root of context hierarchy | ||
197 | [ INFO ] [2017-02-16 15:15:44] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/form/save]}" onto public com.example.support.model.MessageEntity com.example.controller.form.FormController.save(javax.servlet.http.HttpServletRequest,com.example.models.form.FormInfo) | ||
198 | [ INFO ] [2017-02-16 15:15:44] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/jssign/get],methods=[POST]}" onto private com.example.support.model.MessageEntity com.example.controller.wx.WxAuthorizerController.signature(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) throws com.example.support.exception.WxException | ||
199 | [ INFO ] [2017-02-16 15:15:44] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/verify]}" onto public java.lang.String com.example.controller.wx.WxAuthorizerController.event(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
200 | [ INFO ] [2017-02-16 15:15:44] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/login],methods=[GET]}" onto public java.lang.String com.example.controller.wx.WxAuthorizerController.login() throws java.io.UnsupportedEncodingException,com.example.support.exception.WxException | ||
201 | [ INFO ] [2017-02-16 15:15:44] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/callback]}" onto public java.lang.String com.example.controller.wx.WxAuthorizerController.authorizeCallback(java.lang.String,int) | ||
202 | [ INFO ] [2017-02-16 15:15:44] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/oauth]}" onto public java.lang.String com.example.controller.wx.WxAuthorizerController.oauth(java.lang.String,java.lang.String,java.lang.String) | ||
203 | [ INFO ] [2017-02-16 15:15:44] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/oauthCallback]}" onto public java.lang.String com.example.controller.wx.WxAuthorizerController.redirectUri(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) | ||
204 | [ INFO ] [2017-02-16 15:15:44] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/user/get]}" onto public com.example.support.model.MessageEntity com.example.controller.wx.WxAuthorizerController.redirectUri(javax.servlet.http.HttpServletRequest,java.lang.String) | ||
205 | [ INFO ] [2017-02-16 15:15:44] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/card/ext]}" onto public com.example.support.model.MessageEntity com.example.controller.wx.WxCardController.cardExtSign(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String) throws com.example.support.exception.WxAppNotFoundException,java.io.IOException | ||
206 | [ INFO ] [2017-02-16 15:15:44] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/listener/add]}" onto public com.example.support.model.MessageEntity com.example.controller.wx.WxListenerController.add(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
207 | [ INFO ] [2017-02-16 15:15:44] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/listener/delete]}" onto public com.example.support.model.MessageEntity com.example.controller.wx.WxListenerController.delete(javax.servlet.http.HttpServletRequest,java.lang.String) | ||
208 | [ INFO ] [2017-02-16 15:15:44] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/listener/{appId}]}" onto public java.lang.String com.example.controller.wx.WxListenerController.event(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
209 | [ INFO ] [2017-02-16 15:15:44] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/url/request]}" onto public com.example.support.model.MessageEntity com.example.controller.wx.WxUrlRequestController.request(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
210 | [ INFO ] [2017-02-16 15:15:44] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
211 | [ INFO ] [2017-02-16 15:15:44] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
212 | [ INFO ] [2017-02-16 15:15:44] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
213 | [ INFO ] [2017-02-16 15:15:44] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
214 | [ INFO ] [2017-02-16 15:15:45] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
215 | [ INFO ] [2017-02-16 15:15:45] org.eclipse.jetty.util.log [186] - Logging initialized @5286ms | ||
216 | [ INFO ] [2017-02-16 15:15:45] com.example.DemoApplicationTests [57] - Started DemoApplicationTests in 4.941 seconds (JVM running for 5.751) | ||
217 | [ INFO ] [2017-02-16 15:15:45] org.springframework.web.context.support.GenericWebApplicationContext [960] - Closing org.springframework.web.context.support.GenericWebApplicationContext@719fe652: startup date [Thu Feb 16 15:15:41 CST 2017]; root of context hierarchy | ||
218 | [ WARN ] [2017-02-16 15:15:45] org.springframework.beans.factory.support.DisposableBeanAdapter [364] - Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate': java.lang.UnsupportedOperationException: Manual close is not allowed over a Spring managed SqlSession | ||
219 | [ INFO ] [2017-02-16 15:18:05] org.springframework.test.context.support.AbstractContextLoader [242] - Could not detect default resource locations for test class [com.example.DemoApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}. | ||
220 | [ INFO ] [2017-02-16 15:18:05] org.springframework.test.context.web.WebTestContextBootstrapper [259] - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] | ||
221 | [ INFO ] [2017-02-16 15:18:05] org.springframework.test.context.web.WebTestContextBootstrapper [185] - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@211b3c6a, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@31b6421, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@7b4ab41e, org.springframework.test.context.support.DirtiesContextTestExecutionListener@65775cce, org.springframework.test.context.transaction.TransactionalTestExecutionListener@7f6e0c6c, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@11f1c7d0] | ||
222 | [ INFO ] [2017-02-16 15:18:05] org.springframework.test.context.support.AbstractContextLoader [242] - Could not detect default resource locations for test class [com.example.DemoApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}. | ||
223 | [ INFO ] [2017-02-16 15:18:05] org.springframework.test.context.web.WebTestContextBootstrapper [259] - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] | ||
224 | [ INFO ] [2017-02-16 15:18:05] org.springframework.test.context.web.WebTestContextBootstrapper [185] - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@4bc2fdde, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@6ea920ad, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@21a0769d, org.springframework.test.context.support.DirtiesContextTestExecutionListener@2dcb4eaa, org.springframework.test.context.transaction.TransactionalTestExecutionListener@7e999262, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@1459a0dd] | ||
225 | [ INFO ] [2017-02-16 15:18:05] com.example.DemoApplicationTests [48] - Starting DemoApplicationTests on qujiehuideMacBook-Pro.local with PID 11159 (/Users/JA/Downloads/csair_dp_HDP/target/test-classes started by JA in /Users/JA/Downloads/csair_dp_HDP) | ||
226 | [ INFO ] [2017-02-16 15:18:05] com.example.DemoApplicationTests [666] - No active profile set, falling back to default profiles: default | ||
227 | [ INFO ] [2017-02-16 15:18:05] org.springframework.web.context.support.GenericWebApplicationContext [578] - Refreshing org.springframework.web.context.support.GenericWebApplicationContext@3aa368a4: startup date [Thu Feb 16 15:18:05 CST 2017]; root of context hierarchy | ||
228 | [ INFO ] [2017-02-16 15:18:06] org.hibernate.validator.internal.util.Version [30] - HV000001: Hibernate Validator 5.2.4.Final | ||
229 | [ INFO ] [2017-02-16 15:18:07] org.springframework.beans.factory.support.DefaultListableBeanFactory [839] - Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]] | ||
230 | [ INFO ] [2017-02-16 15:18:07] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mybatis.CONFIGURATION_PROPERTIES' of type [class org.mybatis.spring.boot.autoconfigure.MybatisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
231 | [ INFO ] [2017-02-16 15:18:07] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.data.mongodb.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.mongo.MongoProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
232 | [ INFO ] [2017-02-16 15:18:07] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration' of type [class org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration$$EnhancerBySpringCGLIB$$12a2fb06] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
233 | [ INFO ] [2017-02-16 15:18:07] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration' of type [class org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration$$EnhancerBySpringCGLIB$$39d32c64] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
234 | [ INFO ] [2017-02-16 15:18:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongo' of type [class com.mongodb.MongoClient] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
235 | [ INFO ] [2017-02-16 15:18:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoDbFactory' of type [class org.springframework.data.mongodb.core.SimpleMongoDbFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
236 | [ INFO ] [2017-02-16 15:18:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoMappingContext' of type [class org.springframework.data.mongodb.core.mapping.MongoMappingContext] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
237 | [ INFO ] [2017-02-16 15:18:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mappingMongoConverter' of type [class org.springframework.data.mongodb.core.convert.MappingMongoConverter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
238 | [ INFO ] [2017-02-16 15:18:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoTemplate' of type [class org.springframework.data.mongodb.core.MongoTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
239 | [ INFO ] [2017-02-16 15:18:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'gridFsTemplate' of type [class org.springframework.data.mongodb.gridfs.GridFsTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
240 | [ INFO ] [2017-02-16 15:18:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration' of type [class org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration$$EnhancerBySpringCGLIB$$b238c9f6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
241 | [ INFO ] [2017-02-16 15:18:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.datasource.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
242 | [ INFO ] [2017-02-16 15:18:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
243 | [ INFO ] [2017-02-16 15:18:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'dataSource' of type [class org.apache.tomcat.jdbc.pool.DataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
244 | [ INFO ] [2017-02-16 15:18:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionFactory' of type [class org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
245 | [ INFO ] [2017-02-16 15:18:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionTemplate' of type [class org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
246 | [ INFO ] [2017-02-16 15:18:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'formInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
247 | [ INFO ] [2017-02-16 15:18:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$5bd6dec6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
248 | [ INFO ] [2017-02-16 15:18:09] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [532] - Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@3aa368a4: startup date [Thu Feb 16 15:18:05 CST 2017]; root of context hierarchy | ||
249 | [ INFO ] [2017-02-16 15:18:09] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/yuyue/save]}" onto public com.example.support.model.MessageEntity com.example.controller.form.FormController.save(javax.servlet.http.HttpServletRequest,com.example.models.form.FormInfo) | ||
250 | [ INFO ] [2017-02-16 15:18:09] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
251 | [ INFO ] [2017-02-16 15:18:09] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
252 | [ INFO ] [2017-02-16 15:18:09] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
253 | [ INFO ] [2017-02-16 15:18:09] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
254 | [ INFO ] [2017-02-16 15:18:09] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
255 | [ INFO ] [2017-02-16 15:18:09] org.eclipse.jetty.util.log [186] - Logging initialized @4752ms | ||
256 | [ INFO ] [2017-02-16 15:18:09] com.example.DemoApplicationTests [57] - Started DemoApplicationTests in 4.048 seconds (JVM running for 5.133) | ||
257 | [ INFO ] [2017-02-16 15:18:09] org.springframework.web.context.support.GenericWebApplicationContext [960] - Closing org.springframework.web.context.support.GenericWebApplicationContext@3aa368a4: startup date [Thu Feb 16 15:18:05 CST 2017]; root of context hierarchy | ||
258 | [ WARN ] [2017-02-16 15:18:09] org.springframework.beans.factory.support.DisposableBeanAdapter [364] - Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate': java.lang.UnsupportedOperationException: Manual close is not allowed over a Spring managed SqlSession | ||
259 | [ WARN ] [2017-02-16 15:18:55] org.apache.tomcat.jdbc.pool.interceptor.SlowQueryReport [180] - Slow Query Report SQL=INSERT INTO form_info ( | ||
260 | package_name, | ||
261 | |||
262 | phone_number, | ||
263 | |||
264 | email, | ||
265 | |||
266 | buying_time, | ||
267 | |||
268 | create_at | ||
269 | ) | ||
270 | VALUES ( | ||
271 | ?, | ||
272 | |||
273 | ?, | ||
274 | |||
275 | ?, | ||
276 | |||
277 | ?, | ||
278 | |||
279 | ? | ||
280 | ); time=2 ms; | ||
281 | [ INFO ] [2017-02-16 15:19:01] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [960] - Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@54ba2aa4: startup date [Thu Feb 16 15:14:25 CST 2017]; root of context hierarchy | ||
282 | [ INFO ] [2017-02-16 15:19:01] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [449] - Unregistering JMX-exposed beans on shutdown | ||
283 | [ WARN ] [2017-02-16 15:19:01] org.springframework.beans.factory.support.DisposableBeanAdapter [364] - Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate': java.lang.UnsupportedOperationException: Manual close is not allowed over a Spring managed SqlSession | ||
284 | [ INFO ] [2017-02-16 15:19:01] org.eclipse.jetty.server.ServerConnector [306] - Stopped ServerConnector@1297e48e{HTTP/1.1}{0.0.0.0:8080} | ||
285 | [ INFO ] [2017-02-16 15:19:01] application [2052] - Destroying Spring FrameworkServlet 'dispatcherServlet' | ||
286 | [ INFO ] [2017-02-16 15:19:01] org.eclipse.jetty.server.handler.ContextHandler [865] - Stopped o.s.b.c.e.j.JettyEmbeddedWebAppContext@bc65445{/,file:/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/jetty-docbase.3935552864351981631.8080/,UNAVAILABLE} |
yry_dp/logs/catalina-2017-02-17.0.log
0 → 100644
1 | [ INFO ] [2017-02-17 10:01:44] org.springframework.test.context.support.AbstractContextLoader [242] - Could not detect default resource locations for test class [com.example.DemoApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}. | ||
2 | [ INFO ] [2017-02-17 10:01:44] org.springframework.test.context.web.WebTestContextBootstrapper [259] - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] | ||
3 | [ INFO ] [2017-02-17 10:01:44] org.springframework.test.context.web.WebTestContextBootstrapper [185] - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@67e9b7b2, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@211b3c6a, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@31b6421, org.springframework.test.context.support.DirtiesContextTestExecutionListener@7b4ab41e, org.springframework.test.context.transaction.TransactionalTestExecutionListener@65775cce, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@7f6e0c6c] | ||
4 | [ INFO ] [2017-02-17 10:01:44] org.springframework.test.context.support.AbstractContextLoader [242] - Could not detect default resource locations for test class [com.example.DemoApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}. | ||
5 | [ INFO ] [2017-02-17 10:01:44] org.springframework.test.context.web.WebTestContextBootstrapper [259] - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] | ||
6 | [ INFO ] [2017-02-17 10:01:44] org.springframework.test.context.web.WebTestContextBootstrapper [185] - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@62dfb098, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@4bc2fdde, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@6ea920ad, org.springframework.test.context.support.DirtiesContextTestExecutionListener@21a0769d, org.springframework.test.context.transaction.TransactionalTestExecutionListener@2dcb4eaa, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@7e999262] | ||
7 | [ INFO ] [2017-02-17 10:01:44] com.example.DemoApplicationTests [48] - Starting DemoApplicationTests on qujiehuideMacBook-Pro.local with PID 13370 (/Users/JA/Downloads/csair_dp_HDP/target/test-classes started by JA in /Users/JA/Downloads/csair_dp_HDP) | ||
8 | [ INFO ] [2017-02-17 10:01:44] com.example.DemoApplicationTests [666] - No active profile set, falling back to default profiles: default | ||
9 | [ INFO ] [2017-02-17 10:01:44] org.springframework.web.context.support.GenericWebApplicationContext [578] - Refreshing org.springframework.web.context.support.GenericWebApplicationContext@7f973c89: startup date [Fri Feb 17 10:01:44 CST 2017]; root of context hierarchy | ||
10 | [ INFO ] [2017-02-17 10:01:45] org.hibernate.validator.internal.util.Version [30] - HV000001: Hibernate Validator 5.2.4.Final | ||
11 | [ INFO ] [2017-02-17 10:01:46] org.springframework.beans.factory.support.DefaultListableBeanFactory [839] - Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]] | ||
12 | [ INFO ] [2017-02-17 10:01:47] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mybatis.CONFIGURATION_PROPERTIES' of type [class org.mybatis.spring.boot.autoconfigure.MybatisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
13 | [ INFO ] [2017-02-17 10:01:47] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.data.mongodb.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.mongo.MongoProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
14 | [ INFO ] [2017-02-17 10:01:47] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration' of type [class org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration$$EnhancerBySpringCGLIB$$3548de26] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
15 | [ INFO ] [2017-02-17 10:01:47] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration' of type [class org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration$$EnhancerBySpringCGLIB$$5c790f84] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
16 | [ INFO ] [2017-02-17 10:01:47] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongo' of type [class com.mongodb.MongoClient] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
17 | [ INFO ] [2017-02-17 10:01:47] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoDbFactory' of type [class org.springframework.data.mongodb.core.SimpleMongoDbFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
18 | [ INFO ] [2017-02-17 10:01:47] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoMappingContext' of type [class org.springframework.data.mongodb.core.mapping.MongoMappingContext] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
19 | [ INFO ] [2017-02-17 10:01:47] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mappingMongoConverter' of type [class org.springframework.data.mongodb.core.convert.MappingMongoConverter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
20 | [ INFO ] [2017-02-17 10:01:47] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoTemplate' of type [class org.springframework.data.mongodb.core.MongoTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
21 | [ INFO ] [2017-02-17 10:01:47] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'gridFsTemplate' of type [class org.springframework.data.mongodb.gridfs.GridFsTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
22 | [ INFO ] [2017-02-17 10:01:47] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration' of type [class org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration$$EnhancerBySpringCGLIB$$d4dead16] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
23 | [ INFO ] [2017-02-17 10:01:47] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.datasource.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
24 | [ INFO ] [2017-02-17 10:01:47] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
25 | [ INFO ] [2017-02-17 10:01:47] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'dataSource' of type [class org.apache.tomcat.jdbc.pool.DataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
26 | [ INFO ] [2017-02-17 10:01:48] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionFactory' of type [class org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
27 | [ INFO ] [2017-02-17 10:01:48] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionTemplate' of type [class org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
28 | [ INFO ] [2017-02-17 10:01:48] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'formInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
29 | [ INFO ] [2017-02-17 10:01:48] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$7e7cc1e6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
30 | [ INFO ] [2017-02-17 10:01:48] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [532] - Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@7f973c89: startup date [Fri Feb 17 10:01:44 CST 2017]; root of context hierarchy | ||
31 | [ INFO ] [2017-02-17 10:01:48] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/yuyue/save]}" onto public com.example.support.model.MessageEntity com.example.controller.form.FormController.save(javax.servlet.http.HttpServletRequest,com.example.models.form.FormInfo) | ||
32 | [ INFO ] [2017-02-17 10:01:48] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
33 | [ INFO ] [2017-02-17 10:01:48] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
34 | [ INFO ] [2017-02-17 10:01:48] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
35 | [ INFO ] [2017-02-17 10:01:48] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
36 | [ INFO ] [2017-02-17 10:01:48] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
37 | [ INFO ] [2017-02-17 10:01:48] org.eclipse.jetty.util.log [186] - Logging initialized @5437ms | ||
38 | [ INFO ] [2017-02-17 10:01:49] com.example.DemoApplicationTests [57] - Started DemoApplicationTests in 5.01 seconds (JVM running for 5.988) | ||
39 | [ INFO ] [2017-02-17 10:01:49] org.springframework.web.context.support.GenericWebApplicationContext [960] - Closing org.springframework.web.context.support.GenericWebApplicationContext@7f973c89: startup date [Fri Feb 17 10:01:44 CST 2017]; root of context hierarchy | ||
40 | [ WARN ] [2017-02-17 10:01:49] org.springframework.beans.factory.support.DisposableBeanAdapter [364] - Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate': java.lang.UnsupportedOperationException: Manual close is not allowed over a Spring managed SqlSession | ||
41 | [ INFO ] [2017-02-17 10:02:04] org.hibernate.validator.internal.util.Version [30] - HV000001: Hibernate Validator 5.2.4.Final | ||
42 | [ INFO ] [2017-02-17 10:02:04] com.example.DemoApplication [48] - Starting DemoApplication on qujiehuideMacBook-Pro.local with PID 13374 (/Users/JA/Downloads/csair_dp_HDP/target/classes started by JA in /Users/JA/Downloads/csair_dp_HDP) | ||
43 | [ INFO ] [2017-02-17 10:02:04] com.example.DemoApplication [666] - No active profile set, falling back to default profiles: default | ||
44 | [ INFO ] [2017-02-17 10:02:04] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [578] - Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@4c700677: startup date [Fri Feb 17 10:02:04 CST 2017]; root of context hierarchy | ||
45 | [ INFO ] [2017-02-17 10:02:06] org.springframework.beans.factory.support.DefaultListableBeanFactory [839] - Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]] | ||
46 | [ INFO ] [2017-02-17 10:02:06] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mybatis.CONFIGURATION_PROPERTIES' of type [class org.mybatis.spring.boot.autoconfigure.MybatisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
47 | [ INFO ] [2017-02-17 10:02:06] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.data.mongodb.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.mongo.MongoProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
48 | [ INFO ] [2017-02-17 10:02:07] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration' of type [class org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration$$EnhancerBySpringCGLIB$$8d6b8f4f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
49 | [ INFO ] [2017-02-17 10:02:07] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration' of type [class org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration$$EnhancerBySpringCGLIB$$b49bc0ad] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
50 | [ INFO ] [2017-02-17 10:02:07] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongo' of type [class com.mongodb.MongoClient] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
51 | [ INFO ] [2017-02-17 10:02:07] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoDbFactory' of type [class org.springframework.data.mongodb.core.SimpleMongoDbFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
52 | [ INFO ] [2017-02-17 10:02:07] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoMappingContext' of type [class org.springframework.data.mongodb.core.mapping.MongoMappingContext] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
53 | [ INFO ] [2017-02-17 10:02:07] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mappingMongoConverter' of type [class org.springframework.data.mongodb.core.convert.MappingMongoConverter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
54 | [ INFO ] [2017-02-17 10:02:07] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoTemplate' of type [class org.springframework.data.mongodb.core.MongoTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
55 | [ INFO ] [2017-02-17 10:02:07] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'gridFsTemplate' of type [class org.springframework.data.mongodb.gridfs.GridFsTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
56 | [ INFO ] [2017-02-17 10:02:07] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration' of type [class org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration$$EnhancerBySpringCGLIB$$2d015e3f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
57 | [ INFO ] [2017-02-17 10:02:07] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.datasource.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
58 | [ INFO ] [2017-02-17 10:02:07] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
59 | [ INFO ] [2017-02-17 10:02:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'dataSource' of type [class org.apache.tomcat.jdbc.pool.DataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
60 | [ INFO ] [2017-02-17 10:02:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionFactory' of type [class org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
61 | [ INFO ] [2017-02-17 10:02:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionTemplate' of type [class org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
62 | [ INFO ] [2017-02-17 10:02:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'formInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
63 | [ INFO ] [2017-02-17 10:02:08] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$d69f730f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
64 | [ INFO ] [2017-02-17 10:02:08] org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainerFactory [149] - Server initialized with port: 8080 | ||
65 | [ INFO ] [2017-02-17 10:02:08] org.eclipse.jetty.server.Server [327] - jetty-9.2.15.v20160210 | ||
66 | [ INFO ] [2017-02-17 10:02:08] application [2052] - Initializing Spring embedded WebApplicationContext | ||
67 | [ INFO ] [2017-02-17 10:02:08] org.springframework.web.context.ContextLoader [272] - Root WebApplicationContext: initialization completed in 4176 ms | ||
68 | [ INFO ] [2017-02-17 10:02:09] org.springframework.boot.context.embedded.ServletRegistrationBean [189] - Mapping servlet: 'dispatcherServlet' to [/] | ||
69 | [ INFO ] [2017-02-17 10:02:09] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'characterEncodingFilter' to: [/*] | ||
70 | [ INFO ] [2017-02-17 10:02:09] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'hiddenHttpMethodFilter' to: [/*] | ||
71 | [ INFO ] [2017-02-17 10:02:09] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'httpPutFormContentFilter' to: [/*] | ||
72 | [ INFO ] [2017-02-17 10:02:09] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'requestContextFilter' to: [/*] | ||
73 | [ INFO ] [2017-02-17 10:02:09] org.eclipse.jetty.server.handler.ContextHandler [744] - Started o.s.b.c.e.j.JettyEmbeddedWebAppContext@2688b43e{/,file:/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/jetty-docbase.2028169687279599263.8080/,AVAILABLE} | ||
74 | [ INFO ] [2017-02-17 10:02:09] org.eclipse.jetty.server.Server [379] - Started @7063ms | ||
75 | [ INFO ] [2017-02-17 10:02:10] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [532] - Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@4c700677: startup date [Fri Feb 17 10:02:04 CST 2017]; root of context hierarchy | ||
76 | [ INFO ] [2017-02-17 10:02:10] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/yuyue/save]}" onto public com.example.support.model.MessageEntity com.example.controller.form.FormController.save(javax.servlet.http.HttpServletRequest,com.example.models.form.FormInfo) | ||
77 | [ INFO ] [2017-02-17 10:02:10] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
78 | [ INFO ] [2017-02-17 10:02:10] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
79 | [ INFO ] [2017-02-17 10:02:10] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
80 | [ INFO ] [2017-02-17 10:02:10] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
81 | [ INFO ] [2017-02-17 10:02:10] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
82 | [ INFO ] [2017-02-17 10:02:10] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] - Registering beans for JMX exposure on startup | ||
83 | [ INFO ] [2017-02-17 10:02:10] application [2052] - Initializing Spring FrameworkServlet 'dispatcherServlet' | ||
84 | [ INFO ] [2017-02-17 10:02:10] org.springframework.web.servlet.DispatcherServlet [488] - FrameworkServlet 'dispatcherServlet': initialization started | ||
85 | [ INFO ] [2017-02-17 10:02:10] org.springframework.web.servlet.DispatcherServlet [507] - FrameworkServlet 'dispatcherServlet': initialization completed in 12 ms | ||
86 | [ INFO ] [2017-02-17 10:02:10] org.eclipse.jetty.server.ServerConnector [266] - Started ServerConnector@11ab6033{HTTP/1.1}{0.0.0.0:8080} | ||
87 | [ INFO ] [2017-02-17 10:02:10] org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainer [121] - Jetty started on port(s) 8080 (http/1.1) | ||
88 | [ INFO ] [2017-02-17 10:02:10] com.example.DemoApplication [57] - Started DemoApplication in 7.253 seconds (JVM running for 8.006) | ||
89 | [ WARN ] [2017-02-17 10:02:36] org.apache.tomcat.jdbc.pool.interceptor.SlowQueryReport [180] - Slow Query Report SQL=INSERT INTO t_qianggou_yuyue ( | ||
90 | package_name, | ||
91 | |||
92 | phone_number, | ||
93 | |||
94 | email, | ||
95 | |||
96 | buying_time, | ||
97 | |||
98 | create_at | ||
99 | ) | ||
100 | VALUES ( | ||
101 | ?, | ||
102 | |||
103 | ?, | ||
104 | |||
105 | ?, | ||
106 | |||
107 | ?, | ||
108 | |||
109 | ? | ||
110 | ); time=5 ms; | ||
111 | [ INFO ] [2017-02-17 10:02:40] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [960] - Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@4c700677: startup date [Fri Feb 17 10:02:04 CST 2017]; root of context hierarchy | ||
112 | [ INFO ] [2017-02-17 10:02:40] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [449] - Unregistering JMX-exposed beans on shutdown | ||
113 | [ WARN ] [2017-02-17 10:02:40] org.springframework.beans.factory.support.DisposableBeanAdapter [364] - Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate': java.lang.UnsupportedOperationException: Manual close is not allowed over a Spring managed SqlSession | ||
114 | [ INFO ] [2017-02-17 10:02:40] org.eclipse.jetty.server.ServerConnector [306] - Stopped ServerConnector@11ab6033{HTTP/1.1}{0.0.0.0:8080} | ||
115 | [ INFO ] [2017-02-17 10:02:40] application [2052] - Destroying Spring FrameworkServlet 'dispatcherServlet' | ||
116 | [ INFO ] [2017-02-17 10:02:40] org.eclipse.jetty.server.handler.ContextHandler [865] - Stopped o.s.b.c.e.j.JettyEmbeddedWebAppContext@2688b43e{/,file:/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/jetty-docbase.2028169687279599263.8080/,UNAVAILABLE} | ||
117 | [ INFO ] [2017-02-17 12:32:52] org.springframework.test.context.support.AbstractContextLoader [242] - Could not detect default resource locations for test class [com.example.DemoApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}. | ||
118 | [ INFO ] [2017-02-17 12:32:52] org.springframework.test.context.web.WebTestContextBootstrapper [259] - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] | ||
119 | [ INFO ] [2017-02-17 12:32:52] org.springframework.test.context.web.WebTestContextBootstrapper [185] - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@31b6421, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@7b4ab41e, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@65775cce, org.springframework.test.context.support.DirtiesContextTestExecutionListener@7f6e0c6c, org.springframework.test.context.transaction.TransactionalTestExecutionListener@11f1c7d0, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@187531e4] | ||
120 | [ INFO ] [2017-02-17 12:32:52] org.springframework.test.context.support.AbstractContextLoader [242] - Could not detect default resource locations for test class [com.example.DemoApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}. | ||
121 | [ INFO ] [2017-02-17 12:32:52] org.springframework.test.context.web.WebTestContextBootstrapper [259] - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] | ||
122 | [ INFO ] [2017-02-17 12:32:52] org.springframework.test.context.web.WebTestContextBootstrapper [185] - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@6ea920ad, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@21a0769d, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@2dcb4eaa, org.springframework.test.context.support.DirtiesContextTestExecutionListener@7e999262, org.springframework.test.context.transaction.TransactionalTestExecutionListener@1459a0dd, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@850179b] | ||
123 | [ INFO ] [2017-02-17 12:32:53] com.example.DemoApplicationTests [48] - Starting DemoApplicationTests on qujiehuideMacBook-Pro.local with PID 13969 (/Users/JA/Downloads/csair_dp_HDP/target/test-classes started by JA in /Users/JA/Downloads/csair_dp_HDP) | ||
124 | [ INFO ] [2017-02-17 12:32:53] com.example.DemoApplicationTests [666] - No active profile set, falling back to default profiles: default | ||
125 | [ INFO ] [2017-02-17 12:32:53] org.springframework.web.context.support.GenericWebApplicationContext [578] - Refreshing org.springframework.web.context.support.GenericWebApplicationContext@21fdb35f: startup date [Fri Feb 17 12:32:53 CST 2017]; root of context hierarchy | ||
126 | [ INFO ] [2017-02-17 12:32:53] org.hibernate.validator.internal.util.Version [30] - HV000001: Hibernate Validator 5.2.4.Final | ||
127 | [ INFO ] [2017-02-17 12:32:54] org.springframework.beans.factory.support.DefaultListableBeanFactory [839] - Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]] | ||
128 | [ INFO ] [2017-02-17 12:32:55] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mybatis.CONFIGURATION_PROPERTIES' of type [class org.mybatis.spring.boot.autoconfigure.MybatisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
129 | [ INFO ] [2017-02-17 12:32:55] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.data.mongodb.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.mongo.MongoProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
130 | [ INFO ] [2017-02-17 12:32:55] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration' of type [class org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration$$EnhancerBySpringCGLIB$$5e8afc28] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
131 | [ INFO ] [2017-02-17 12:32:55] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration' of type [class org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration$$EnhancerBySpringCGLIB$$85bb2d86] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
132 | [ INFO ] [2017-02-17 12:32:55] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongo' of type [class com.mongodb.MongoClient] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
133 | [ INFO ] [2017-02-17 12:32:55] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoDbFactory' of type [class org.springframework.data.mongodb.core.SimpleMongoDbFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
134 | [ INFO ] [2017-02-17 12:32:55] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoMappingContext' of type [class org.springframework.data.mongodb.core.mapping.MongoMappingContext] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
135 | [ INFO ] [2017-02-17 12:32:55] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mappingMongoConverter' of type [class org.springframework.data.mongodb.core.convert.MappingMongoConverter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
136 | [ INFO ] [2017-02-17 12:32:55] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoTemplate' of type [class org.springframework.data.mongodb.core.MongoTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
137 | [ INFO ] [2017-02-17 12:32:55] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'gridFsTemplate' of type [class org.springframework.data.mongodb.gridfs.GridFsTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
138 | [ INFO ] [2017-02-17 12:32:55] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration' of type [class org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration$$EnhancerBySpringCGLIB$$fe20cb18] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
139 | [ INFO ] [2017-02-17 12:32:55] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.datasource.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
140 | [ INFO ] [2017-02-17 12:32:55] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
141 | [ INFO ] [2017-02-17 12:32:55] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'dataSource' of type [class org.apache.tomcat.jdbc.pool.DataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
142 | [ INFO ] [2017-02-17 12:32:56] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionFactory' of type [class org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
143 | [ INFO ] [2017-02-17 12:32:56] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionTemplate' of type [class org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
144 | [ INFO ] [2017-02-17 12:32:56] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'formInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
145 | [ INFO ] [2017-02-17 12:32:56] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$a7bedfe8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
146 | [ INFO ] [2017-02-17 12:32:56] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [532] - Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@21fdb35f: startup date [Fri Feb 17 12:32:53 CST 2017]; root of context hierarchy | ||
147 | [ INFO ] [2017-02-17 12:32:56] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/yuyue/save]}" onto public com.example.support.model.MessageEntity com.example.controller.form.FormController.save(javax.servlet.http.HttpServletRequest,com.example.models.form.FormInfo) | ||
148 | [ INFO ] [2017-02-17 12:32:56] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
149 | [ INFO ] [2017-02-17 12:32:56] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
150 | [ INFO ] [2017-02-17 12:32:56] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
151 | [ INFO ] [2017-02-17 12:32:56] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
152 | [ INFO ] [2017-02-17 12:32:56] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
153 | [ INFO ] [2017-02-17 12:32:56] org.eclipse.jetty.util.log [186] - Logging initialized @5556ms | ||
154 | [ INFO ] [2017-02-17 12:32:57] com.example.DemoApplicationTests [57] - Started DemoApplicationTests in 4.481 seconds (JVM running for 5.968) | ||
155 | [ INFO ] [2017-02-17 12:32:57] org.springframework.web.context.support.GenericWebApplicationContext [960] - Closing org.springframework.web.context.support.GenericWebApplicationContext@21fdb35f: startup date [Fri Feb 17 12:32:53 CST 2017]; root of context hierarchy | ||
156 | [ WARN ] [2017-02-17 12:32:57] org.springframework.beans.factory.support.DisposableBeanAdapter [364] - Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate': java.lang.UnsupportedOperationException: Manual close is not allowed over a Spring managed SqlSession | ||
157 | [ INFO ] [2017-02-17 12:40:36] org.springframework.test.context.support.AbstractContextLoader [242] - Could not detect default resource locations for test class [com.example.DemoApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}. | ||
158 | [ INFO ] [2017-02-17 12:40:36] org.springframework.test.context.web.WebTestContextBootstrapper [259] - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] | ||
159 | [ INFO ] [2017-02-17 12:40:36] org.springframework.test.context.web.WebTestContextBootstrapper [185] - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@67e9b7b2, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@211b3c6a, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@31b6421, org.springframework.test.context.support.DirtiesContextTestExecutionListener@7b4ab41e, org.springframework.test.context.transaction.TransactionalTestExecutionListener@65775cce, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@7f6e0c6c] | ||
160 | [ INFO ] [2017-02-17 12:40:36] org.springframework.test.context.support.AbstractContextLoader [242] - Could not detect default resource locations for test class [com.example.DemoApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}. | ||
161 | [ INFO ] [2017-02-17 12:40:36] org.springframework.test.context.web.WebTestContextBootstrapper [259] - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] | ||
162 | [ INFO ] [2017-02-17 12:40:36] org.springframework.test.context.web.WebTestContextBootstrapper [185] - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@62dfb098, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@4bc2fdde, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@6ea920ad, org.springframework.test.context.support.DirtiesContextTestExecutionListener@21a0769d, org.springframework.test.context.transaction.TransactionalTestExecutionListener@2dcb4eaa, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@7e999262] | ||
163 | [ INFO ] [2017-02-17 12:40:37] com.example.DemoApplicationTests [48] - Starting DemoApplicationTests on qujiehuideMacBook-Pro.local with PID 13983 (/Users/JA/Downloads/csair_dp_HDP/target/test-classes started by JA in /Users/JA/Downloads/csair_dp_HDP) | ||
164 | [ INFO ] [2017-02-17 12:40:37] com.example.DemoApplicationTests [666] - No active profile set, falling back to default profiles: default | ||
165 | [ INFO ] [2017-02-17 12:40:37] org.springframework.web.context.support.GenericWebApplicationContext [578] - Refreshing org.springframework.web.context.support.GenericWebApplicationContext@419fb314: startup date [Fri Feb 17 12:40:37 CST 2017]; root of context hierarchy | ||
166 | [ INFO ] [2017-02-17 12:40:37] org.hibernate.validator.internal.util.Version [30] - HV000001: Hibernate Validator 5.2.4.Final | ||
167 | [ INFO ] [2017-02-17 12:40:38] org.springframework.beans.factory.support.DefaultListableBeanFactory [839] - Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]] | ||
168 | [ INFO ] [2017-02-17 12:40:39] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mybatis.CONFIGURATION_PROPERTIES' of type [class org.mybatis.spring.boot.autoconfigure.MybatisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
169 | [ INFO ] [2017-02-17 12:40:39] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.data.mongodb.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.mongo.MongoProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
170 | [ INFO ] [2017-02-17 12:40:39] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration' of type [class org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration$$EnhancerBySpringCGLIB$$78293d1e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
171 | [ INFO ] [2017-02-17 12:40:39] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration' of type [class org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration$$EnhancerBySpringCGLIB$$9f596e7c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
172 | [ INFO ] [2017-02-17 12:40:39] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongo' of type [class com.mongodb.MongoClient] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
173 | [ INFO ] [2017-02-17 12:40:39] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoDbFactory' of type [class org.springframework.data.mongodb.core.SimpleMongoDbFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
174 | [ INFO ] [2017-02-17 12:40:39] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoMappingContext' of type [class org.springframework.data.mongodb.core.mapping.MongoMappingContext] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
175 | [ INFO ] [2017-02-17 12:40:39] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mappingMongoConverter' of type [class org.springframework.data.mongodb.core.convert.MappingMongoConverter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
176 | [ INFO ] [2017-02-17 12:40:39] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoTemplate' of type [class org.springframework.data.mongodb.core.MongoTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
177 | [ INFO ] [2017-02-17 12:40:40] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'gridFsTemplate' of type [class org.springframework.data.mongodb.gridfs.GridFsTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
178 | [ INFO ] [2017-02-17 12:40:40] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration' of type [class org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration$$EnhancerBySpringCGLIB$$17bf0c0e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
179 | [ INFO ] [2017-02-17 12:40:40] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.datasource.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
180 | [ INFO ] [2017-02-17 12:40:40] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
181 | [ INFO ] [2017-02-17 12:40:40] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'dataSource' of type [class org.apache.tomcat.jdbc.pool.DataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
182 | [ INFO ] [2017-02-17 12:40:40] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionFactory' of type [class org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
183 | [ INFO ] [2017-02-17 12:40:40] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionTemplate' of type [class org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
184 | [ INFO ] [2017-02-17 12:40:40] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'formInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
185 | [ INFO ] [2017-02-17 12:40:40] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$c15d20de] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
186 | [ INFO ] [2017-02-17 12:40:41] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [532] - Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@419fb314: startup date [Fri Feb 17 12:40:37 CST 2017]; root of context hierarchy | ||
187 | [ INFO ] [2017-02-17 12:40:41] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/yuyue/save]}" onto public com.example.support.model.MessageEntity com.example.controller.form.FormController.save(javax.servlet.http.HttpServletRequest,com.example.models.form.FormInfo) | ||
188 | [ INFO ] [2017-02-17 12:40:41] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
189 | [ INFO ] [2017-02-17 12:40:41] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
190 | [ INFO ] [2017-02-17 12:40:41] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
191 | [ INFO ] [2017-02-17 12:40:41] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
192 | [ INFO ] [2017-02-17 12:40:41] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
193 | [ INFO ] [2017-02-17 12:40:41] org.eclipse.jetty.util.log [186] - Logging initialized @5568ms | ||
194 | [ INFO ] [2017-02-17 12:40:41] com.example.DemoApplicationTests [57] - Started DemoApplicationTests in 4.918 seconds (JVM running for 5.979) | ||
195 | [ INFO ] [2017-02-17 12:40:41] org.springframework.web.context.support.GenericWebApplicationContext [960] - Closing org.springframework.web.context.support.GenericWebApplicationContext@419fb314: startup date [Fri Feb 17 12:40:37 CST 2017]; root of context hierarchy | ||
196 | [ WARN ] [2017-02-17 12:40:41] org.springframework.beans.factory.support.DisposableBeanAdapter [364] - Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate': java.lang.UnsupportedOperationException: Manual close is not allowed over a Spring managed SqlSession | ||
197 | [ INFO ] [2017-02-17 12:41:12] com.example.DemoApplication [48] - Starting DemoApplication on qujiehuideMacBook-Pro.local with PID 13988 (/Users/JA/Downloads/csair_dp_HDP/target/classes started by JA in /Users/JA/Downloads/csair_dp_HDP) | ||
198 | [ INFO ] [2017-02-17 12:41:12] com.example.DemoApplication [666] - No active profile set, falling back to default profiles: default | ||
199 | [ INFO ] [2017-02-17 12:41:12] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [578] - Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@5d24e2ed: startup date [Fri Feb 17 12:41:12 CST 2017]; root of context hierarchy | ||
200 | [ INFO ] [2017-02-17 12:41:14] org.springframework.beans.factory.support.DefaultListableBeanFactory [839] - Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]] | ||
201 | [ INFO ] [2017-02-17 12:41:15] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mybatis.CONFIGURATION_PROPERTIES' of type [class org.mybatis.spring.boot.autoconfigure.MybatisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
202 | [ INFO ] [2017-02-17 12:41:15] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.data.mongodb.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.mongo.MongoProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
203 | [ INFO ] [2017-02-17 12:41:15] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration' of type [class org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration$$EnhancerBySpringCGLIB$$fd8b7e7c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
204 | [ INFO ] [2017-02-17 12:41:15] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration' of type [class org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration$$EnhancerBySpringCGLIB$$24bbafda] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
205 | [ INFO ] [2017-02-17 12:41:15] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongo' of type [class com.mongodb.MongoClient] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
206 | [ INFO ] [2017-02-17 12:41:15] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoDbFactory' of type [class org.springframework.data.mongodb.core.SimpleMongoDbFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
207 | [ INFO ] [2017-02-17 12:41:15] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoMappingContext' of type [class org.springframework.data.mongodb.core.mapping.MongoMappingContext] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
208 | [ INFO ] [2017-02-17 12:41:15] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mappingMongoConverter' of type [class org.springframework.data.mongodb.core.convert.MappingMongoConverter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
209 | [ INFO ] [2017-02-17 12:41:15] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoTemplate' of type [class org.springframework.data.mongodb.core.MongoTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
210 | [ INFO ] [2017-02-17 12:41:15] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'gridFsTemplate' of type [class org.springframework.data.mongodb.gridfs.GridFsTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
211 | [ INFO ] [2017-02-17 12:41:15] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration' of type [class org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration$$EnhancerBySpringCGLIB$$9d214d6c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
212 | [ INFO ] [2017-02-17 12:41:16] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.datasource.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
213 | [ INFO ] [2017-02-17 12:41:16] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
214 | [ INFO ] [2017-02-17 12:41:17] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'dataSource' of type [class org.apache.tomcat.jdbc.pool.DataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
215 | [ INFO ] [2017-02-17 12:41:17] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionFactory' of type [class org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
216 | [ INFO ] [2017-02-17 12:41:17] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionTemplate' of type [class org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
217 | [ INFO ] [2017-02-17 12:41:17] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'formInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
218 | [ INFO ] [2017-02-17 12:41:17] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$46bf623c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
219 | [ INFO ] [2017-02-17 12:41:17] org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainerFactory [149] - Server initialized with port: 8080 | ||
220 | [ INFO ] [2017-02-17 12:41:17] org.eclipse.jetty.server.Server [327] - jetty-9.2.15.v20160210 | ||
221 | [ INFO ] [2017-02-17 12:41:18] application [2052] - Initializing Spring embedded WebApplicationContext | ||
222 | [ INFO ] [2017-02-17 12:41:18] org.springframework.web.context.ContextLoader [272] - Root WebApplicationContext: initialization completed in 5359 ms | ||
223 | [ INFO ] [2017-02-17 12:41:19] org.springframework.boot.context.embedded.ServletRegistrationBean [189] - Mapping servlet: 'dispatcherServlet' to [/] | ||
224 | [ INFO ] [2017-02-17 12:41:19] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'characterEncodingFilter' to: [/*] | ||
225 | [ INFO ] [2017-02-17 12:41:19] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'hiddenHttpMethodFilter' to: [/*] | ||
226 | [ INFO ] [2017-02-17 12:41:19] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'httpPutFormContentFilter' to: [/*] | ||
227 | [ INFO ] [2017-02-17 12:41:19] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'requestContextFilter' to: [/*] | ||
228 | [ INFO ] [2017-02-17 12:41:19] org.eclipse.jetty.server.handler.ContextHandler [744] - Started o.s.b.c.e.j.JettyEmbeddedWebAppContext@16e98962{/,file:/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/jetty-docbase.8579127611210804712.8080/,AVAILABLE} | ||
229 | [ INFO ] [2017-02-17 12:41:19] org.eclipse.jetty.server.Server [379] - Started @8794ms | ||
230 | [ INFO ] [2017-02-17 12:41:19] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [532] - Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@5d24e2ed: startup date [Fri Feb 17 12:41:12 CST 2017]; root of context hierarchy | ||
231 | [ INFO ] [2017-02-17 12:41:19] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/yuyue/save]}" onto public com.example.support.model.MessageEntity com.example.controller.form.FormController.save(javax.servlet.http.HttpServletRequest,com.example.models.form.FormInfo) | ||
232 | [ INFO ] [2017-02-17 12:41:19] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
233 | [ INFO ] [2017-02-17 12:41:19] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
234 | [ INFO ] [2017-02-17 12:41:19] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
235 | [ INFO ] [2017-02-17 12:41:19] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
236 | [ INFO ] [2017-02-17 12:41:19] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
237 | [ INFO ] [2017-02-17 12:41:20] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] - Registering beans for JMX exposure on startup | ||
238 | [ INFO ] [2017-02-17 12:41:20] application [2052] - Initializing Spring FrameworkServlet 'dispatcherServlet' | ||
239 | [ INFO ] [2017-02-17 12:41:20] org.springframework.web.servlet.DispatcherServlet [488] - FrameworkServlet 'dispatcherServlet': initialization started | ||
240 | [ INFO ] [2017-02-17 12:41:20] org.springframework.web.servlet.DispatcherServlet [507] - FrameworkServlet 'dispatcherServlet': initialization completed in 14 ms | ||
241 | [ INFO ] [2017-02-17 12:41:20] org.eclipse.jetty.server.ServerConnector [266] - Started ServerConnector@48dfec8b{HTTP/1.1}{0.0.0.0:8080} | ||
242 | [ INFO ] [2017-02-17 12:41:20] org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainer [121] - Jetty started on port(s) 8080 (http/1.1) | ||
243 | [ INFO ] [2017-02-17 12:41:20] com.example.DemoApplication [57] - Started DemoApplication in 9.138 seconds (JVM running for 9.808) | ||
244 | [ WARN ] [2017-02-17 12:41:23] org.apache.tomcat.jdbc.pool.interceptor.SlowQueryReport [180] - Slow Query Report SQL=INSERT INTO t_qianggou_yuyue ( | ||
245 | package_name, | ||
246 | |||
247 | phone_number, | ||
248 | |||
249 | email, | ||
250 | |||
251 | buying_time, | ||
252 | |||
253 | create_at, | ||
254 | |||
255 | qudao | ||
256 | ) | ||
257 | VALUES ( | ||
258 | ?, | ||
259 | |||
260 | ?, | ||
261 | |||
262 | ?, | ||
263 | |||
264 | ?, | ||
265 | |||
266 | ?, | ||
267 | |||
268 | ? | ||
269 | ); time=2 ms; | ||
270 | [ INFO ] [2017-02-17 12:41:58] org.springframework.test.context.support.AbstractContextLoader [242] - Could not detect default resource locations for test class [com.example.DemoApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}. | ||
271 | [ INFO ] [2017-02-17 12:41:58] org.springframework.test.context.web.WebTestContextBootstrapper [259] - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] | ||
272 | [ INFO ] [2017-02-17 12:41:58] org.springframework.test.context.web.WebTestContextBootstrapper [185] - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@67e9b7b2, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@211b3c6a, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@31b6421, org.springframework.test.context.support.DirtiesContextTestExecutionListener@7b4ab41e, org.springframework.test.context.transaction.TransactionalTestExecutionListener@65775cce, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@7f6e0c6c] | ||
273 | [ INFO ] [2017-02-17 12:41:58] org.springframework.test.context.support.AbstractContextLoader [242] - Could not detect default resource locations for test class [com.example.DemoApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}. | ||
274 | [ INFO ] [2017-02-17 12:41:58] org.springframework.test.context.web.WebTestContextBootstrapper [259] - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] | ||
275 | [ INFO ] [2017-02-17 12:41:58] org.springframework.test.context.web.WebTestContextBootstrapper [185] - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@62dfb098, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@4bc2fdde, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@6ea920ad, org.springframework.test.context.support.DirtiesContextTestExecutionListener@21a0769d, org.springframework.test.context.transaction.TransactionalTestExecutionListener@2dcb4eaa, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@7e999262] | ||
276 | [ INFO ] [2017-02-17 12:41:58] com.example.DemoApplicationTests [48] - Starting DemoApplicationTests on qujiehuideMacBook-Pro.local with PID 13992 (/Users/JA/Downloads/csair_dp_HDP/target/test-classes started by JA in /Users/JA/Downloads/csair_dp_HDP) | ||
277 | [ INFO ] [2017-02-17 12:41:58] com.example.DemoApplicationTests [666] - No active profile set, falling back to default profiles: default | ||
278 | [ INFO ] [2017-02-17 12:41:58] org.springframework.web.context.support.GenericWebApplicationContext [578] - Refreshing org.springframework.web.context.support.GenericWebApplicationContext@54de7dad: startup date [Fri Feb 17 12:41:58 CST 2017]; root of context hierarchy | ||
279 | [ INFO ] [2017-02-17 12:41:59] org.hibernate.validator.internal.util.Version [30] - HV000001: Hibernate Validator 5.2.4.Final | ||
280 | [ INFO ] [2017-02-17 12:42:00] org.springframework.beans.factory.support.DefaultListableBeanFactory [839] - Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]] | ||
281 | [ INFO ] [2017-02-17 12:42:00] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mybatis.CONFIGURATION_PROPERTIES' of type [class org.mybatis.spring.boot.autoconfigure.MybatisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
282 | [ INFO ] [2017-02-17 12:42:00] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.data.mongodb.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.mongo.MongoProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
283 | [ INFO ] [2017-02-17 12:42:00] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration' of type [class org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration$$EnhancerBySpringCGLIB$$14345909] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
284 | [ INFO ] [2017-02-17 12:42:00] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration' of type [class org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration$$EnhancerBySpringCGLIB$$3b648a67] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
285 | [ INFO ] [2017-02-17 12:42:00] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongo' of type [class com.mongodb.MongoClient] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
286 | [ INFO ] [2017-02-17 12:42:00] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoDbFactory' of type [class org.springframework.data.mongodb.core.SimpleMongoDbFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
287 | [ INFO ] [2017-02-17 12:42:00] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoMappingContext' of type [class org.springframework.data.mongodb.core.mapping.MongoMappingContext] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
288 | [ INFO ] [2017-02-17 12:42:01] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mappingMongoConverter' of type [class org.springframework.data.mongodb.core.convert.MappingMongoConverter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
289 | [ INFO ] [2017-02-17 12:42:01] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoTemplate' of type [class org.springframework.data.mongodb.core.MongoTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
290 | [ INFO ] [2017-02-17 12:42:01] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'gridFsTemplate' of type [class org.springframework.data.mongodb.gridfs.GridFsTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
291 | [ INFO ] [2017-02-17 12:42:01] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration' of type [class org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration$$EnhancerBySpringCGLIB$$b3ca27f9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
292 | [ INFO ] [2017-02-17 12:42:01] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.datasource.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
293 | [ INFO ] [2017-02-17 12:42:01] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
294 | [ INFO ] [2017-02-17 12:42:01] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'dataSource' of type [class org.apache.tomcat.jdbc.pool.DataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
295 | [ INFO ] [2017-02-17 12:42:01] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionFactory' of type [class org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
296 | [ INFO ] [2017-02-17 12:42:01] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionTemplate' of type [class org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
297 | [ INFO ] [2017-02-17 12:42:01] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'formInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
298 | [ INFO ] [2017-02-17 12:42:01] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$5d683cc9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
299 | [ INFO ] [2017-02-17 12:42:02] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [532] - Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@54de7dad: startup date [Fri Feb 17 12:41:58 CST 2017]; root of context hierarchy | ||
300 | [ INFO ] [2017-02-17 12:42:02] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/yuyue/save]}" onto public com.example.support.model.MessageEntity com.example.controller.form.FormController.save(javax.servlet.http.HttpServletRequest,com.example.models.form.FormInfo) | ||
301 | [ INFO ] [2017-02-17 12:42:02] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
302 | [ INFO ] [2017-02-17 12:42:02] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
303 | [ INFO ] [2017-02-17 12:42:02] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
304 | [ INFO ] [2017-02-17 12:42:02] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
305 | [ INFO ] [2017-02-17 12:42:02] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
306 | [ INFO ] [2017-02-17 12:42:02] org.eclipse.jetty.util.log [186] - Logging initialized @4862ms | ||
307 | [ INFO ] [2017-02-17 12:42:02] com.example.DemoApplicationTests [57] - Started DemoApplicationTests in 4.221 seconds (JVM running for 5.238) | ||
308 | [ INFO ] [2017-02-17 12:42:02] org.springframework.web.context.support.GenericWebApplicationContext [960] - Closing org.springframework.web.context.support.GenericWebApplicationContext@54de7dad: startup date [Fri Feb 17 12:41:58 CST 2017]; root of context hierarchy | ||
309 | [ WARN ] [2017-02-17 12:42:02] org.springframework.beans.factory.support.DisposableBeanAdapter [364] - Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate': java.lang.UnsupportedOperationException: Manual close is not allowed over a Spring managed SqlSession | ||
310 | [ INFO ] [2017-02-17 12:42:29] org.springframework.test.context.support.AbstractContextLoader [242] - Could not detect default resource locations for test class [com.example.DemoApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}. | ||
311 | [ INFO ] [2017-02-17 12:42:29] org.springframework.test.context.web.WebTestContextBootstrapper [259] - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] | ||
312 | [ INFO ] [2017-02-17 12:42:29] org.springframework.test.context.web.WebTestContextBootstrapper [185] - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@31b6421, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@7b4ab41e, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@65775cce, org.springframework.test.context.support.DirtiesContextTestExecutionListener@7f6e0c6c, org.springframework.test.context.transaction.TransactionalTestExecutionListener@11f1c7d0, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@187531e4] | ||
313 | [ INFO ] [2017-02-17 12:42:29] org.springframework.test.context.support.AbstractContextLoader [242] - Could not detect default resource locations for test class [com.example.DemoApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}. | ||
314 | [ INFO ] [2017-02-17 12:42:29] org.springframework.test.context.web.WebTestContextBootstrapper [259] - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] | ||
315 | [ INFO ] [2017-02-17 12:42:29] org.springframework.test.context.web.WebTestContextBootstrapper [185] - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@6ea920ad, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@21a0769d, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@2dcb4eaa, org.springframework.test.context.support.DirtiesContextTestExecutionListener@7e999262, org.springframework.test.context.transaction.TransactionalTestExecutionListener@1459a0dd, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@850179b] | ||
316 | [ INFO ] [2017-02-17 12:42:29] com.example.DemoApplicationTests [48] - Starting DemoApplicationTests on qujiehuideMacBook-Pro.local with PID 13997 (/Users/JA/Downloads/csair_dp_HDP/target/test-classes started by JA in /Users/JA/Downloads/csair_dp_HDP) | ||
317 | [ INFO ] [2017-02-17 12:42:29] com.example.DemoApplicationTests [666] - No active profile set, falling back to default profiles: default | ||
318 | [ INFO ] [2017-02-17 12:42:29] org.springframework.web.context.support.GenericWebApplicationContext [578] - Refreshing org.springframework.web.context.support.GenericWebApplicationContext@1cf270d4: startup date [Fri Feb 17 12:42:29 CST 2017]; root of context hierarchy | ||
319 | [ INFO ] [2017-02-17 12:42:29] org.hibernate.validator.internal.util.Version [30] - HV000001: Hibernate Validator 5.2.4.Final | ||
320 | [ INFO ] [2017-02-17 12:42:30] org.springframework.beans.factory.support.DefaultListableBeanFactory [839] - Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]] | ||
321 | [ INFO ] [2017-02-17 12:42:31] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mybatis.CONFIGURATION_PROPERTIES' of type [class org.mybatis.spring.boot.autoconfigure.MybatisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
322 | [ INFO ] [2017-02-17 12:42:31] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.data.mongodb.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.mongo.MongoProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
323 | [ INFO ] [2017-02-17 12:42:31] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration' of type [class org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration$$EnhancerBySpringCGLIB$$2771845c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
324 | [ INFO ] [2017-02-17 12:42:31] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration' of type [class org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration$$EnhancerBySpringCGLIB$$4ea1b5ba] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
325 | [ INFO ] [2017-02-17 12:42:31] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongo' of type [class com.mongodb.MongoClient] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
326 | [ INFO ] [2017-02-17 12:42:31] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoDbFactory' of type [class org.springframework.data.mongodb.core.SimpleMongoDbFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
327 | [ INFO ] [2017-02-17 12:42:31] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoMappingContext' of type [class org.springframework.data.mongodb.core.mapping.MongoMappingContext] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
328 | [ INFO ] [2017-02-17 12:42:31] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mappingMongoConverter' of type [class org.springframework.data.mongodb.core.convert.MappingMongoConverter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
329 | [ INFO ] [2017-02-17 12:42:31] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mongoTemplate' of type [class org.springframework.data.mongodb.core.MongoTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
330 | [ INFO ] [2017-02-17 12:42:31] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'gridFsTemplate' of type [class org.springframework.data.mongodb.gridfs.GridFsTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
331 | [ INFO ] [2017-02-17 12:42:31] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration' of type [class org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration$$EnhancerBySpringCGLIB$$c707534c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
332 | [ INFO ] [2017-02-17 12:42:31] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.datasource.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
333 | [ INFO ] [2017-02-17 12:42:31] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
334 | [ INFO ] [2017-02-17 12:42:31] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'dataSource' of type [class org.apache.tomcat.jdbc.pool.DataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
335 | [ INFO ] [2017-02-17 12:42:32] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionFactory' of type [class org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
336 | [ INFO ] [2017-02-17 12:42:32] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionTemplate' of type [class org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
337 | [ INFO ] [2017-02-17 12:42:32] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'formInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
338 | [ INFO ] [2017-02-17 12:42:32] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$70a5681c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
339 | [ INFO ] [2017-02-17 12:42:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [532] - Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@1cf270d4: startup date [Fri Feb 17 12:42:29 CST 2017]; root of context hierarchy | ||
340 | [ INFO ] [2017-02-17 12:42:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/yuyue/save]}" onto public com.example.support.model.MessageEntity com.example.controller.form.FormController.save(javax.servlet.http.HttpServletRequest,com.example.models.form.FormInfo) | ||
341 | [ INFO ] [2017-02-17 12:42:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
342 | [ INFO ] [2017-02-17 12:42:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
343 | [ INFO ] [2017-02-17 12:42:32] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
344 | [ INFO ] [2017-02-17 12:42:32] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
345 | [ INFO ] [2017-02-17 12:42:32] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
346 | [ INFO ] [2017-02-17 12:42:32] org.eclipse.jetty.util.log [186] - Logging initialized @4368ms | ||
347 | [ INFO ] [2017-02-17 12:42:33] com.example.DemoApplicationTests [57] - Started DemoApplicationTests in 3.991 seconds (JVM running for 4.77) | ||
348 | [ INFO ] [2017-02-17 12:42:33] org.springframework.web.context.support.GenericWebApplicationContext [960] - Closing org.springframework.web.context.support.GenericWebApplicationContext@1cf270d4: startup date [Fri Feb 17 12:42:29 CST 2017]; root of context hierarchy | ||
349 | [ WARN ] [2017-02-17 12:42:33] org.springframework.beans.factory.support.DisposableBeanAdapter [364] - Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate': java.lang.UnsupportedOperationException: Manual close is not allowed over a Spring managed SqlSession |
yry_dp/logs/catalina-2017-03-09.0.log
0 → 100644
1 | [ WARN ] [2017-03-09 18:40:10] org.apache.axis.utils.JavaUtils [1308] - Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled. | ||
2 | [ WARN ] [2017-03-09 18:44:02] org.apache.axis.utils.JavaUtils [1308] - Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled. | ||
3 | [ WARN ] [2017-03-09 18:48:57] org.apache.axis.utils.JavaUtils [1308] - Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled. | ||
4 | [ WARN ] [2017-03-09 18:52:40] org.apache.axis.utils.JavaUtils [1308] - Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled. | ||
5 | [ WARN ] [2017-03-09 18:53:00] org.apache.axis.utils.JavaUtils [1308] - Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled. | ||
6 | [ WARN ] [2017-03-09 18:53:46] org.apache.axis.utils.JavaUtils [1308] - Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled. | ||
7 | [ WARN ] [2017-03-09 18:54:53] org.apache.axis.utils.JavaUtils [1308] - Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled. | ||
8 | [ WARN ] [2017-03-09 18:55:03] org.apache.axis.utils.JavaUtils [1308] - Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled. | ||
9 | [ WARN ] [2017-03-09 18:57:12] org.apache.axis.utils.JavaUtils [1308] - Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled. | ||
10 | [ WARN ] [2017-03-09 18:57:29] org.apache.axis.utils.JavaUtils [1308] - Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled. | ||
11 | [ WARN ] [2017-03-09 18:57:53] org.apache.axis.utils.JavaUtils [1308] - Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled. | ||
12 | [ ERROR] [2017-03-09 18:57:54] org.apache.axis.client.Call [2418] - No returnType was specified to the Call object! You must call setReturnType() if you have called addParameter(). | ||
13 | [ WARN ] [2017-03-09 18:58:08] org.apache.axis.utils.JavaUtils [1308] - Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled. | ||
14 | [ WARN ] [2017-03-09 18:59:20] org.apache.axis.utils.JavaUtils [1308] - Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled. |
yry_dp/logs/catalina-2017-03-10.0.log
0 → 100644
This diff could not be displayed because it is too large.
yry_dp/logs/catalina-2017-03-15.0.log
0 → 100644
This diff could not be displayed because it is too large.
yry_dp/logs/catalina-2017-03-20.0.log
0 → 100644
This diff could not be displayed because it is too large.
yry_dp/logs/catalina-2017-03-21.0.log
0 → 100644
1 | [ INFO ] [2017-03-21 11:01:16] com.example.DemoApplication [48] - Starting DemoApplication on qujiehuideMacBook-Pro.local with PID 46932 (/Users/JA/csair_dp_hdp/java/csair_dp_HDP/target/classes started by JA in /Users/JA/csair_dp_hdp/java/csair_dp_HDP) | ||
2 | [ INFO ] [2017-03-21 11:01:16] com.example.DemoApplication [666] - No active profile set, falling back to default profiles: default | ||
3 | [ INFO ] [2017-03-21 11:01:16] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [578] - Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@6bbc81dc: startup date [Tue Mar 21 11:01:16 CST 2017]; root of context hierarchy | ||
4 | [ INFO ] [2017-03-21 11:01:17] org.springframework.beans.factory.support.DefaultListableBeanFactory [839] - Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]] | ||
5 | [ INFO ] [2017-03-21 11:01:18] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.datasource.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
6 | [ INFO ] [2017-03-21 11:01:18] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
7 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'dataSource' of type [class org.apache.tomcat.jdbc.pool.DataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
8 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mybatisPageableInterceptor' of type [class com.example.utils.mybatis.pageable.MybatisPageableInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
9 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'myBatisConfig' of type [class com.example.utils.mybatis.MyBatisConfig$$EnhancerBySpringCGLIB$$317c2183] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
10 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionFactory' of type [class org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
11 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionTemplate' of type [class org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
12 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sessionInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
13 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'phoneRequestTimeMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
14 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'rankingListMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
15 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'likeTerminalInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
16 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'likeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
17 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeLogMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
18 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeCenterMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
19 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5ApplicationsMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
20 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5ApplicationPrizesMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
21 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'httpLogMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
22 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'formInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
23 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'enrollInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
24 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'backupTableMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
25 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'annotationDrivenTransactionManager' of type [class org.springframework.jdbc.datasource.DataSourceTransactionManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
26 | [ INFO ] [2017-03-21 11:01:19] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$69677ad2] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
27 | [ INFO ] [2017-03-21 11:01:19] org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainerFactory [149] - Server initialized with port: 8080 | ||
28 | [ INFO ] [2017-03-21 11:01:19] org.eclipse.jetty.server.Server [327] - jetty-9.2.15.v20160210 | ||
29 | [ INFO ] [2017-03-21 11:01:19] application [2052] - Initializing Spring embedded WebApplicationContext | ||
30 | [ INFO ] [2017-03-21 11:01:19] org.springframework.web.context.ContextLoader [272] - Root WebApplicationContext: initialization completed in 3497 ms | ||
31 | [ INFO ] [2017-03-21 11:01:20] org.springframework.boot.context.embedded.ServletRegistrationBean [189] - Mapping servlet: 'dispatcherServlet' to [/] | ||
32 | [ INFO ] [2017-03-21 11:01:20] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'characterEncodingFilter' to: [/*] | ||
33 | [ INFO ] [2017-03-21 11:01:20] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'hiddenHttpMethodFilter' to: [/*] | ||
34 | [ INFO ] [2017-03-21 11:01:20] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'httpPutFormContentFilter' to: [/*] | ||
35 | [ INFO ] [2017-03-21 11:01:20] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'requestContextFilter' to: [/*] | ||
36 | [ INFO ] [2017-03-21 11:01:20] org.eclipse.jetty.server.handler.ContextHandler [744] - Started o.s.b.c.e.j.JettyEmbeddedWebAppContext@530925e3{/,file:/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/jetty-docbase.7149092672983204167.8080/,AVAILABLE} | ||
37 | [ INFO ] [2017-03-21 11:01:20] org.eclipse.jetty.server.Server [379] - Started @5817ms | ||
38 | [ INFO ] [2017-03-21 11:01:20] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [532] - Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@6bbc81dc: startup date [Tue Mar 21 11:01:16 CST 2017]; root of context hierarchy | ||
39 | [ INFO ] [2017-03-21 11:01:20] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/budrlji/{ssidKey}/backup/h/dek]}" onto public void com.example.controller.backup.BackUpApiController.backup(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String) | ||
40 | [ INFO ] [2017-03-21 11:01:20] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/enroll/save]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.EnrollController.save(javax.servlet.http.HttpServletRequest,com.example.models.enroll.EnrollInfo,java.lang.String,java.lang.String) | ||
41 | [ INFO ] [2017-03-21 11:01:20] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/enroll/save/phone_number]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.EnrollController.save(javax.servlet.http.HttpServletRequest,com.example.models.enroll.EnrollInfo,java.lang.String) | ||
42 | [ INFO ] [2017-03-21 11:01:20] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/get]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.get(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
43 | [ INFO ] [2017-03-21 11:01:20] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/send]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.send(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
44 | [ INFO ] [2017-03-21 11:01:20] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.validate(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
45 | [ INFO ] [2017-03-21 11:01:20] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/yuyue/save]}" onto public com.example.support.model.MessageEntity com.example.controller.form.FormController.save(javax.servlet.http.HttpServletRequest,com.example.models.form.FormInfo) | ||
46 | [ INFO ] [2017-03-21 11:01:20] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/prize/lottery]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.lottery(javax.servlet.http.HttpServletRequest,com.example.models.user.OAuthUser) | ||
47 | [ INFO ] [2017-03-21 11:01:20] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/like]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.like(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Long,java.lang.String) | ||
48 | [ INFO ] [2017-03-21 11:01:20] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/mylike]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.mylike(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
49 | [ INFO ] [2017-03-21 11:01:20] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/terminal/like]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.terminallike(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Long,java.lang.String) | ||
50 | [ INFO ] [2017-03-21 11:01:20] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/rankinglist]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.rankinglist(javax.servlet.http.HttpServletRequest,java.lang.Long,java.lang.String) | ||
51 | [ INFO ] [2017-03-21 11:01:20] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/terminal/mylike]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.terminalMylike(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
52 | [ INFO ] [2017-03-21 11:01:20] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
53 | [ INFO ] [2017-03-21 11:01:20] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
54 | [ INFO ] [2017-03-21 11:01:20] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
55 | [ INFO ] [2017-03-21 11:01:20] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
56 | [ INFO ] [2017-03-21 11:01:21] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
57 | [ INFO ] [2017-03-21 11:01:21] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] - Registering beans for JMX exposure on startup | ||
58 | [ INFO ] [2017-03-21 11:01:21] application [2052] - Initializing Spring FrameworkServlet 'dispatcherServlet' | ||
59 | [ INFO ] [2017-03-21 11:01:21] org.springframework.web.servlet.DispatcherServlet [488] - FrameworkServlet 'dispatcherServlet': initialization started | ||
60 | [ INFO ] [2017-03-21 11:01:21] org.springframework.web.servlet.DispatcherServlet [507] - FrameworkServlet 'dispatcherServlet': initialization completed in 16 ms | ||
61 | [ INFO ] [2017-03-21 11:01:21] org.eclipse.jetty.server.ServerConnector [266] - Started ServerConnector@46a7ccc6{HTTP/1.1}{0.0.0.0:8080} | ||
62 | [ INFO ] [2017-03-21 11:01:21] org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainer [121] - Jetty started on port(s) 8080 (http/1.1) | ||
63 | [ INFO ] [2017-03-21 11:01:21] com.example.DemoApplication [57] - Started DemoApplication in 6.163 seconds (JVM running for 7.026) | ||
64 | [ INFO ] [2017-03-21 14:46:21] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [960] - Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@6bbc81dc: startup date [Tue Mar 21 11:01:16 CST 2017]; root of context hierarchy | ||
65 | [ INFO ] [2017-03-21 14:46:21] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [449] - Unregistering JMX-exposed beans on shutdown | ||
66 | [ WARN ] [2017-03-21 14:46:21] org.springframework.beans.factory.support.DisposableBeanAdapter [364] - Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate': java.lang.UnsupportedOperationException: Manual close is not allowed over a Spring managed SqlSession | ||
67 | [ INFO ] [2017-03-21 14:46:21] org.eclipse.jetty.server.ServerConnector [306] - Stopped ServerConnector@46a7ccc6{HTTP/1.1}{0.0.0.0:8080} | ||
68 | [ INFO ] [2017-03-21 14:46:21] application [2052] - Destroying Spring FrameworkServlet 'dispatcherServlet' | ||
69 | [ INFO ] [2017-03-21 14:46:21] org.eclipse.jetty.server.handler.ContextHandler [865] - Stopped o.s.b.c.e.j.JettyEmbeddedWebAppContext@530925e3{/,file:/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/jetty-docbase.7149092672983204167.8080/,UNAVAILABLE} |
yry_dp/logs/catalina-2017-04-05.0.log
0 → 100644
This diff could not be displayed because it is too large.
yry_dp/logs/catalina-2017-04-06.0.log
0 → 100644
This diff could not be displayed because it is too large.
yry_dp/logs/catalina-2017-04-07.0.log
0 → 100644
This diff could not be displayed because it is too large.
yry_dp/logs/catalina-2017-04-13.0.log
0 → 100644
1 | [ INFO ] [2017-04-13 15:01:50] com.example.DemoApplication [48] - Starting DemoApplication on qujiehuideMacBook-Pro.local with PID 7069 (/Users/JA/csair_dp_hdp/java/csair_dp_HDP/target/classes started by JA in /Users/JA/csair_dp_hdp/java/csair_dp_HDP) | ||
2 | [ INFO ] [2017-04-13 15:01:50] com.example.DemoApplication [666] - No active profile set, falling back to default profiles: default | ||
3 | [ INFO ] [2017-04-13 15:01:50] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [578] - Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@280206: startup date [Thu Apr 13 15:01:50 CST 2017]; root of context hierarchy | ||
4 | [ INFO ] [2017-04-13 15:01:51] org.springframework.beans.factory.support.DefaultListableBeanFactory [839] - Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]] | ||
5 | [ INFO ] [2017-04-13 15:01:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.datasource.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
6 | [ INFO ] [2017-04-13 15:01:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
7 | [ INFO ] [2017-04-13 15:01:53] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'dataSource' of type [class org.apache.tomcat.jdbc.pool.DataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
8 | [ INFO ] [2017-04-13 15:01:53] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mybatisPageableInterceptor' of type [class com.example.utils.mybatis.pageable.MybatisPageableInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
9 | [ INFO ] [2017-04-13 15:01:53] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'myBatisConfig' of type [class com.example.utils.mybatis.MyBatisConfig$$EnhancerBySpringCGLIB$$d8291bf5] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
10 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionFactory' of type [class org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
11 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionTemplate' of type [class org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
12 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'winnerInformationInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
13 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sessionInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
14 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'phoneRequestTimeMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
15 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'rankingListMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
16 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'likeTerminalInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
17 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'likeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
18 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'noticeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
19 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeWinningStickTopRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
20 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeWinningRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
21 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeWhiteInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
22 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeUserInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
23 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizePoolMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
24 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeLotteryRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
25 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
26 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'httpLogMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
27 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'externalRequestLogMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
28 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'formInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
29 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'enrollInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
30 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'endAtInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
31 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5CsairConfigMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
32 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'backupTableMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
33 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'annotationDrivenTransactionManager' of type [class org.springframework.jdbc.datasource.DataSourceTransactionManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
34 | [ INFO ] [2017-04-13 15:01:54] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$10147544] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
35 | [ INFO ] [2017-04-13 15:01:54] org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainerFactory [149] - Server initialized with port: 8080 | ||
36 | [ INFO ] [2017-04-13 15:01:54] org.eclipse.jetty.server.Server [327] - jetty-9.2.15.v20160210 | ||
37 | [ INFO ] [2017-04-13 15:01:54] application [2052] - Initializing Spring embedded WebApplicationContext | ||
38 | [ INFO ] [2017-04-13 15:01:54] org.springframework.web.context.ContextLoader [272] - Root WebApplicationContext: initialization completed in 4328 ms | ||
39 | [ INFO ] [2017-04-13 15:01:55] org.springframework.boot.context.embedded.ServletRegistrationBean [189] - Mapping servlet: 'dispatcherServlet' to [/] | ||
40 | [ INFO ] [2017-04-13 15:01:55] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'characterEncodingFilter' to: [/*] | ||
41 | [ INFO ] [2017-04-13 15:01:55] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'hiddenHttpMethodFilter' to: [/*] | ||
42 | [ INFO ] [2017-04-13 15:01:55] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'httpPutFormContentFilter' to: [/*] | ||
43 | [ INFO ] [2017-04-13 15:01:55] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'requestContextFilter' to: [/*] | ||
44 | [ INFO ] [2017-04-13 15:01:55] org.eclipse.jetty.server.handler.ContextHandler [744] - Started o.s.b.c.e.j.JettyEmbeddedWebAppContext@6d53bd0d{/,file:/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/jetty-docbase.86746084722310602.8080/,AVAILABLE} | ||
45 | [ INFO ] [2017-04-13 15:01:55] org.eclipse.jetty.server.Server [379] - Started @7159ms | ||
46 | [ WARN ] [2017-04-13 15:01:55] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [546] - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'noticeInfoController': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.example.service.notice.NoticeInfoService com.example.controller.notice.NoticeInfoController.noticeInfoService; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'noticeInfoServiceImpl': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.example.service.notice.NoticeInfoService com.example.service.notice.NoticeInfoServiceImpl.noticeInfoService; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [com.example.service.notice.NoticeInfoService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)} | ||
47 | [ WARN ] [2017-04-13 15:01:55] org.springframework.beans.factory.support.DisposableBeanAdapter [364] - Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate': java.lang.UnsupportedOperationException: Manual close is not allowed over a Spring managed SqlSession | ||
48 | [ INFO ] [2017-04-13 15:01:55] org.eclipse.jetty.server.handler.ContextHandler [865] - Stopped o.s.b.c.e.j.JettyEmbeddedWebAppContext@6d53bd0d{/,file:/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/jetty-docbase.86746084722310602.8080/,UNAVAILABLE} | ||
49 | [ ERROR] [2017-04-13 15:01:55] org.springframework.boot.SpringApplication [827] - Application startup failed | ||
50 | org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'noticeInfoController': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.example.service.notice.NoticeInfoService com.example.controller.notice.NoticeInfoController.noticeInfoService; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'noticeInfoServiceImpl': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.example.service.notice.NoticeInfoService com.example.service.notice.NoticeInfoServiceImpl.noticeInfoService; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [com.example.service.notice.NoticeInfoService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)} | ||
51 | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:334) | ||
52 | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1214) | ||
53 | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:543) | ||
54 | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:482) | ||
55 | at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306) | ||
56 | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230) | ||
57 | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302) | ||
58 | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197) | ||
59 | at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:772) | ||
60 | at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:839) | ||
61 | at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:538) | ||
62 | at org.springframework.boot.context.embedded.EmbeddedWebApplicationContext.refresh(EmbeddedWebApplicationContext.java:118) | ||
63 | at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:766) | ||
64 | at org.springframework.boot.SpringApplication.createAndRefreshContext(SpringApplication.java:361) | ||
65 | at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) | ||
66 | at org.springframework.boot.SpringApplication.run(SpringApplication.java:1191) | ||
67 | at org.springframework.boot.SpringApplication.run(SpringApplication.java:1180) | ||
68 | at com.example.DemoApplication.main(DemoApplication.java:33) | ||
69 | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | ||
70 | at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) | ||
71 | at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) | ||
72 | at java.lang.reflect.Method.invoke(Method.java:606) | ||
73 | at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140) | ||
74 | Caused by: org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.example.service.notice.NoticeInfoService com.example.controller.notice.NoticeInfoController.noticeInfoService; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'noticeInfoServiceImpl': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.example.service.notice.NoticeInfoService com.example.service.notice.NoticeInfoServiceImpl.noticeInfoService; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [com.example.service.notice.NoticeInfoService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)} | ||
75 | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:573) | ||
76 | at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:88) | ||
77 | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:331) | ||
78 | ... 22 common frames omitted | ||
79 | Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'noticeInfoServiceImpl': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.example.service.notice.NoticeInfoService com.example.service.notice.NoticeInfoServiceImpl.noticeInfoService; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [com.example.service.notice.NoticeInfoService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)} | ||
80 | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:334) | ||
81 | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1214) | ||
82 | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:543) | ||
83 | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:482) | ||
84 | at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306) | ||
85 | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230) | ||
86 | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302) | ||
87 | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197) | ||
88 | at org.springframework.beans.factory.support.DefaultListableBeanFactory.findAutowireCandidates(DefaultListableBeanFactory.java:1192) | ||
89 | at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1116) | ||
90 | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1014) | ||
91 | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:545) | ||
92 | ... 24 common frames omitted | ||
93 | Caused by: org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.example.service.notice.NoticeInfoService com.example.service.notice.NoticeInfoServiceImpl.noticeInfoService; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [com.example.service.notice.NoticeInfoService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)} | ||
94 | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:573) | ||
95 | at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:88) | ||
96 | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:331) | ||
97 | ... 35 common frames omitted | ||
98 | Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [com.example.service.notice.NoticeInfoService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)} | ||
99 | at org.springframework.beans.factory.support.DefaultListableBeanFactory.raiseNoSuchBeanDefinitionException(DefaultListableBeanFactory.java:1373) | ||
100 | at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1119) | ||
101 | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1014) | ||
102 | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:545) | ||
103 | ... 37 common frames omitted | ||
104 | [ INFO ] [2017-04-13 15:01:55] org.springframework.boot.logging.ClasspathLoggingApplicationListener [57] - Application failed to start with classpath: [file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/lib/ant-javafx.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/lib/dt.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/lib/javafx-doclet.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/lib/javafx-mx.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/lib/jconsole.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/lib/sa-jdi.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/lib/tools.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/charsets.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/deploy.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/htmlconverter.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/javaws.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/jce.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/jfr.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/jfxrt.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/jsse.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/management-agent.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/plugin.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/resources.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/rt.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/ext/dnsns.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/ext/localedata.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/ext/sunec.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/ext/sunjce_provider.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/ext/sunpkcs11.jar, file:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/ext/zipfs.jar, file:/Users/JA/csair_dp_hdp/java/csair_dp_HDP/target/classes/, file:/Users/JA/.m2/repository/org/springframework/boot/spring-boot-starter-data-mongodb/1.3.3.RELEASE/spring-boot-starter-data-mongodb-1.3.3.RELEASE.jar, file:/Users/JA/.m2/repository/org/springframework/boot/spring-boot-starter/1.3.3.RELEASE/spring-boot-starter-1.3.3.RELEASE.jar, file:/Users/JA/.m2/repository/org/springframework/boot/spring-boot/1.3.3.RELEASE/spring-boot-1.3.3.RELEASE.jar, file:/Users/JA/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.3.3.RELEASE/spring-boot-autoconfigure-1.3.3.RELEASE.jar, file:/Users/JA/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.3.3.RELEASE/spring-boot-starter-logging-1.3.3.RELEASE.jar, file:/Users/JA/.m2/repository/ch/qos/logback/logback-classic/1.1.5/logback-classic-1.1.5.jar, file:/Users/JA/.m2/repository/ch/qos/logback/logback-core/1.1.5/logback-core-1.1.5.jar, file:/Users/JA/.m2/repository/org/slf4j/jul-to-slf4j/1.7.16/jul-to-slf4j-1.7.16.jar, file:/Users/JA/.m2/repository/org/slf4j/log4j-over-slf4j/1.7.16/log4j-over-slf4j-1.7.16.jar, file:/Users/JA/.m2/repository/org/yaml/snakeyaml/1.16/snakeyaml-1.16.jar, file:/Users/JA/.m2/repository/org/mongodb/mongo-java-driver/2.13.3/mongo-java-driver-2.13.3.jar, file:/Users/JA/.m2/repository/org/springframework/data/spring-data-mongodb/1.8.4.RELEASE/spring-data-mongodb-1.8.4.RELEASE.jar, file:/Users/JA/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar, file:/Users/JA/.m2/repository/org/springframework/data/spring-data-commons/1.11.4.RELEASE/spring-data-commons-1.11.4.RELEASE.jar, file:/Users/JA/.m2/repository/org/slf4j/jcl-over-slf4j/1.7.16/jcl-over-slf4j-1.7.16.jar, file:/Users/JA/.m2/repository/org/springframework/boot/spring-boot-starter-redis/1.3.3.RELEASE/spring-boot-starter-redis-1.3.3.RELEASE.jar, file:/Users/JA/.m2/repository/redis/clients/jedis/2.7.3/jedis-2.7.3.jar, file:/Users/JA/.m2/repository/org/apache/commons/commons-pool2/2.4.2/commons-pool2-2.4.2.jar, file:/Users/JA/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.3.3.RELEASE/spring-boot-starter-web-1.3.3.RELEASE.jar, file:/Users/JA/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.3.3.RELEASE/spring-boot-starter-tomcat-1.3.3.RELEASE.jar, file:/Users/JA/.m2/repository/org/apache/tomcat/embed/tomcat-embed-logging-juli/8.0.32/tomcat-embed-logging-juli-8.0.32.jar, file:/Users/JA/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/8.0.32/tomcat-embed-websocket-8.0.32.jar, file:/Users/JA/.m2/repository/org/springframework/boot/spring-boot-starter-validation/1.3.3.RELEASE/spring-boot-starter-validation-1.3.3.RELEASE.jar, file:/Users/JA/.m2/repository/org/hibernate/hibernate-validator/5.2.4.Final/hibernate-validator-5.2.4.Final.jar, file:/Users/JA/.m2/repository/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar, file:/Users/JA/.m2/repository/org/jboss/logging/jboss-logging/3.3.0.Final/jboss-logging-3.3.0.Final.jar, file:/Users/JA/.m2/repository/com/fasterxml/classmate/1.1.0/classmate-1.1.0.jar, file:/Users/JA/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.6.5/jackson-databind-2.6.5.jar, file:/Users/JA/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.6.5/jackson-annotations-2.6.5.jar, file:/Users/JA/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.6.5/jackson-core-2.6.5.jar, file:/Users/JA/.m2/repository/org/springframework/spring-web/4.2.5.RELEASE/spring-web-4.2.5.RELEASE.jar, file:/Users/JA/.m2/repository/org/springframework/spring-webmvc/4.2.5.RELEASE/spring-webmvc-4.2.5.RELEASE.jar, file:/Users/JA/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar, file:/Users/JA/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar, file:/Users/JA/.m2/repository/mysql/mysql-connector-java/5.1.38/mysql-connector-java-5.1.38.jar, file:/Users/JA/.m2/repository/org/springframework/spring-core/4.2.5.RELEASE/spring-core-4.2.5.RELEASE.jar, file:/Users/JA/.m2/repository/org/json/json/20140107/json-20140107.jar, file:/Users/JA/.m2/repository/wsdl4j/wsdl4j/1.6.3/wsdl4j-1.6.3.jar, file:/Users/JA/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/8.0.32/tomcat-embed-core-8.0.32.jar, file:/Users/JA/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/8.0.32/tomcat-embed-el-8.0.32.jar, file:/Users/JA/.m2/repository/javax/servlet/jstl/1.2/jstl-1.2.jar, file:/Users/JA/.m2/repository/org/mybatis/spring/boot/mybatis-spring-boot-starter/1.0.0/mybatis-spring-boot-starter-1.0.0.jar, file:/Users/JA/.m2/repository/org/springframework/boot/spring-boot-starter-jdbc/1.3.3.RELEASE/spring-boot-starter-jdbc-1.3.3.RELEASE.jar, file:/Users/JA/.m2/repository/org/apache/tomcat/tomcat-jdbc/8.0.32/tomcat-jdbc-8.0.32.jar, file:/Users/JA/.m2/repository/org/apache/tomcat/tomcat-juli/8.0.32/tomcat-juli-8.0.32.jar, file:/Users/JA/.m2/repository/org/springframework/spring-jdbc/4.2.5.RELEASE/spring-jdbc-4.2.5.RELEASE.jar, file:/Users/JA/.m2/repository/org/mybatis/spring/boot/mybatis-spring-boot-autoconfigure/1.0.0/mybatis-spring-boot-autoconfigure-1.0.0.jar, file:/Users/JA/.m2/repository/org/mybatis/mybatis/3.3.0/mybatis-3.3.0.jar, file:/Users/JA/.m2/repository/org/mybatis/mybatis-spring/1.2.3/mybatis-spring-1.2.3.jar, file:/Users/JA/.m2/repository/com/h2database/h2/1.4.191/h2-1.4.191.jar, file:/Users/JA/.m2/repository/org/springframework/data/spring-data-redis/1.5.0.RELEASE/spring-data-redis-1.5.0.RELEASE.jar, file:/Users/JA/.m2/repository/org/springframework/spring-context/4.2.5.RELEASE/spring-context-4.2.5.RELEASE.jar, file:/Users/JA/.m2/repository/org/springframework/spring-context-support/4.2.5.RELEASE/spring-context-support-4.2.5.RELEASE.jar, file:/Users/JA/.m2/repository/org/springframework/spring-tx/4.2.5.RELEASE/spring-tx-4.2.5.RELEASE.jar, file:/Users/JA/.m2/repository/org/springframework/spring-aop/4.2.5.RELEASE/spring-aop-4.2.5.RELEASE.jar, file:/Users/JA/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar, file:/Users/JA/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar, file:/Users/JA/.m2/repository/org/springframework/spring-webmvc-portlet/4.2.5.RELEASE/spring-webmvc-portlet-4.2.5.RELEASE.jar, file:/Users/JA/.m2/repository/org/springframework/spring-beans/4.2.5.RELEASE/spring-beans-4.2.5.RELEASE.jar, file:/Users/JA/.m2/repository/org/tuckey/urlrewritefilter/4.0.3/urlrewritefilter-4.0.3.jar, file:/Users/JA/.m2/repository/tk/mybatis/mapper/3.3.4/mapper-3.3.4.jar, file:/Users/JA/.m2/repository/javax/persistence/persistence-api/1.0/persistence-api-1.0.jar, file:/Users/JA/.m2/repository/org/apache/commons/commons-lang3/3.3.2/commons-lang3-3.3.2.jar, file:/Users/JA/.m2/repository/commons-io/commons-io/2.1/commons-io-2.1.jar, file:/Users/JA/.m2/repository/org/apache/wink/wink-client/1.3.0/wink-client-1.3.0.jar, file:/Users/JA/.m2/repository/org/apache/wink/wink-common/1.3.0/wink-common-1.3.0.jar, file:/Users/JA/.m2/repository/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar, file:/Users/JA/.m2/repository/org/apache/geronimo/specs/geronimo-annotation_1.1_spec/1.0/geronimo-annotation_1.1_spec-1.0.jar, file:/Users/JA/.m2/repository/javax/xml/bind/jaxb-api/2.2/jaxb-api-2.2.jar, file:/Users/JA/.m2/repository/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.jar, file:/Users/JA/.m2/repository/com/sun/xml/bind/jaxb-impl/2.2.1.1/jaxb-impl-2.2.1.1.jar, file:/Users/JA/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar, file:/Users/JA/.m2/repository/org/apache/poi/poi/3.15/poi-3.15.jar, file:/Users/JA/.m2/repository/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.jar, file:/Users/JA/.m2/repository/org/apache/poi/poi-ooxml/3.15/poi-ooxml-3.15.jar, file:/Users/JA/.m2/repository/org/apache/poi/poi-ooxml-schemas/3.15/poi-ooxml-schemas-3.15.jar, file:/Users/JA/.m2/repository/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.jar, file:/Users/JA/.m2/repository/stax/stax-api/1.0.1/stax-api-1.0.1.jar, file:/Users/JA/.m2/repository/com/github/virtuald/curvesapi/1.04/curvesapi-1.04.jar, file:/Users/JA/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar, file:/Users/JA/.m2/repository/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar, file:/Users/JA/.m2/repository/commons-codec/commons-codec/1.9/commons-codec-1.9.jar, file:/Users/JA/.m2/repository/commons-fileupload/commons-fileupload/1.2.2/commons-fileupload-1.2.2.jar, file:/Users/JA/.m2/repository/org/springframework/boot/spring-boot-starter-jetty/1.3.3.RELEASE/spring-boot-starter-jetty-1.3.3.RELEASE.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/jetty-servlets/9.2.15.v20160210/jetty-servlets-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/jetty-continuation/9.2.15.v20160210/jetty-continuation-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/jetty-http/9.2.15.v20160210/jetty-http-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/jetty-util/9.2.15.v20160210/jetty-util-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/jetty-io/9.2.15.v20160210/jetty-io-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/jetty-webapp/9.2.15.v20160210/jetty-webapp-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/jetty-xml/9.2.15.v20160210/jetty-xml-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/jetty-servlet/9.2.15.v20160210/jetty-servlet-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/jetty-security/9.2.15.v20160210/jetty-security-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/jetty-server/9.2.15.v20160210/jetty-server-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/websocket/websocket-server/9.2.15.v20160210/websocket-server-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/websocket/websocket-common/9.2.15.v20160210/websocket-common-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/websocket/websocket-api/9.2.15.v20160210/websocket-api-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/websocket/websocket-client/9.2.15.v20160210/websocket-client-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/websocket/websocket-servlet/9.2.15.v20160210/websocket-servlet-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.2.15.v20160210/javax-websocket-server-impl-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/jetty-annotations/9.2.15.v20160210/jetty-annotations-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/jetty-plus/9.2.15.v20160210/jetty-plus-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/jetty-jndi/9.2.15.v20160210/jetty-jndi-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar, file:/Users/JA/.m2/repository/org/ow2/asm/asm/5.0.1/asm-5.0.1.jar, file:/Users/JA/.m2/repository/org/ow2/asm/asm-commons/5.0.1/asm-commons-5.0.1.jar, file:/Users/JA/.m2/repository/org/ow2/asm/asm-tree/5.0.1/asm-tree-5.0.1.jar, file:/Users/JA/.m2/repository/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.2.15.v20160210/javax-websocket-client-impl-9.2.15.v20160210.jar, file:/Users/JA/.m2/repository/javax/websocket/javax.websocket-api/1.0/javax.websocket-api-1.0.jar, file:/Users/JA/.m2/repository/org/apache/httpcomponents/httpclient/4.4.1/httpclient-4.4.1.jar, file:/Users/JA/.m2/repository/org/apache/httpcomponents/httpcore/4.4.4/httpcore-4.4.4.jar, file:/Users/JA/.m2/repository/net/sf/json-lib/json-lib/2.2.3/json-lib-2.2.3-jdk15.jar, file:/Users/JA/.m2/repository/commons-beanutils/commons-beanutils/1.9.2/commons-beanutils-1.9.2.jar, file:/Users/JA/.m2/repository/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar, file:/Users/JA/.m2/repository/commons-lang/commons-lang/2.4/commons-lang-2.4.jar, file:/Users/JA/.m2/repository/net/sf/ezmorph/ezmorph/1.0.6/ezmorph-1.0.6.jar, file:/Applications/IntelliJ%20IDEA%2014.app/Contents/lib/idea_rt.jar, file:/Users/JA/Library/Caches/IntelliJIdea14/coverageJars/coverage-agent.jar] |
yry_dp/logs/catalina-2017-04-19.0.log
0 → 100644
1 | [ INFO ] [2017-04-19 16:31:46] com.example.DemoApplication [48] - Starting DemoApplication on qujiehuideMacBook-Pro.local with PID 22562 (/Users/JA/csair_dp_hdp/java/csair_dp_HDP/target/classes started by JA in /Users/JA/csair_dp_hdp/java/csair_dp_HDP) | ||
2 | [ INFO ] [2017-04-19 16:31:46] com.example.DemoApplication [666] - No active profile set, falling back to default profiles: default | ||
3 | [ INFO ] [2017-04-19 16:31:47] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [578] - Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@bb8b79b: startup date [Wed Apr 19 16:31:47 CST 2017]; root of context hierarchy | ||
4 | [ INFO ] [2017-04-19 16:31:49] org.springframework.beans.factory.support.DefaultListableBeanFactory [839] - Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]] | ||
5 | [ INFO ] [2017-04-19 16:31:50] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.datasource.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
6 | [ INFO ] [2017-04-19 16:31:50] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
7 | [ INFO ] [2017-04-19 16:31:51] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'dataSource' of type [class org.apache.tomcat.jdbc.pool.DataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
8 | [ INFO ] [2017-04-19 16:31:51] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mybatisPageableInterceptor' of type [class com.example.utils.mybatis.pageable.MybatisPageableInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
9 | [ INFO ] [2017-04-19 16:31:51] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'myBatisConfig' of type [class com.example.utils.mybatis.MyBatisConfig$$EnhancerBySpringCGLIB$$db191793] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
10 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionFactory' of type [class org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
11 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionTemplate' of type [class org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
12 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'winnerInformationInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
13 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sessionInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
14 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'phoneRequestTimeMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
15 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'rankingListMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
16 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'likeTerminalInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
17 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'likeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
18 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'noticeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
19 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeWinningStickTopRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
20 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeWinningRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
21 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeWhiteInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
22 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeUserInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
23 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizePoolMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
24 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeLotteryRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
25 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
26 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'httpLogMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
27 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'externalRequestLogMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
28 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'formInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
29 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'enrollInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
30 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'endAtInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
31 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5CsairConfigMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
32 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'backupTableMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
33 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'annotationDrivenTransactionManager' of type [class org.springframework.jdbc.datasource.DataSourceTransactionManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
34 | [ INFO ] [2017-04-19 16:31:52] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$130470e2] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
35 | [ INFO ] [2017-04-19 16:31:53] org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainerFactory [149] - Server initialized with port: 8080 | ||
36 | [ INFO ] [2017-04-19 16:31:53] org.eclipse.jetty.server.Server [327] - jetty-9.2.15.v20160210 | ||
37 | [ INFO ] [2017-04-19 16:31:53] application [2052] - Initializing Spring embedded WebApplicationContext | ||
38 | [ INFO ] [2017-04-19 16:31:53] org.springframework.web.context.ContextLoader [272] - Root WebApplicationContext: initialization completed in 6122 ms | ||
39 | [ INFO ] [2017-04-19 16:31:54] org.springframework.boot.context.embedded.ServletRegistrationBean [189] - Mapping servlet: 'dispatcherServlet' to [/] | ||
40 | [ INFO ] [2017-04-19 16:31:54] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'characterEncodingFilter' to: [/*] | ||
41 | [ INFO ] [2017-04-19 16:31:54] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'hiddenHttpMethodFilter' to: [/*] | ||
42 | [ INFO ] [2017-04-19 16:31:54] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'httpPutFormContentFilter' to: [/*] | ||
43 | [ INFO ] [2017-04-19 16:31:54] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'requestContextFilter' to: [/*] | ||
44 | [ INFO ] [2017-04-19 16:31:54] org.eclipse.jetty.server.handler.ContextHandler [744] - Started o.s.b.c.e.j.JettyEmbeddedWebAppContext@3d97cc2{/,file:/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/jetty-docbase.4221648312121710993.8080/,AVAILABLE} | ||
45 | [ INFO ] [2017-04-19 16:31:54] org.eclipse.jetty.server.Server [379] - Started @9744ms | ||
46 | [ INFO ] [2017-04-19 16:31:54] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [532] - Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@bb8b79b: startup date [Wed Apr 19 16:31:47 CST 2017]; root of context hierarchy | ||
47 | [ INFO ] [2017-04-19 16:31:54] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/test/test]}" onto public java.lang.String com.example.DemoApplication.now() | ||
48 | [ INFO ] [2017-04-19 16:31:54] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/budrlji/{ssidKey}/backup/h/dek]}" onto public void com.example.controller.backup.BackUpApiController.backup(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String) | ||
49 | [ INFO ] [2017-04-19 16:31:54] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/budrlji/{ssidKey}/backup/h/dek/tsqlhandle]}" onto public void com.example.controller.backup.BackUpApiController.tsqlhandle(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String) | ||
50 | [ INFO ] [2017-04-19 16:31:54] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/enroll/save]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.EnrollController.save(javax.servlet.http.HttpServletRequest,com.example.models.enroll.EnrollInfo,java.lang.String,java.lang.String) | ||
51 | [ INFO ] [2017-04-19 16:31:54] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/enroll/save/phone_number]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.EnrollController.save(javax.servlet.http.HttpServletRequest,com.example.models.enroll.EnrollInfo,java.lang.String) | ||
52 | [ INFO ] [2017-04-19 16:31:54] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/get]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.get(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
53 | [ INFO ] [2017-04-19 16:31:54] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/send]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.send(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
54 | [ INFO ] [2017-04-19 16:31:54] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/captcha/sendsms]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.sendsms(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
55 | [ INFO ] [2017-04-19 16:31:54] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/captcha/img]}" onto public void com.example.controller.enroll.ValidateController.validateCode(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.lang.Exception | ||
56 | [ INFO ] [2017-04-19 16:31:54] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.validate(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
57 | [ INFO ] [2017-04-19 16:31:54] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/yuyue/save]}" onto public com.example.support.model.MessageEntity com.example.controller.form.FormController.save(javax.servlet.http.HttpServletRequest,com.example.models.form.FormInfo) | ||
58 | [ INFO ] [2017-04-19 16:31:54] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/lottery]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.lottery(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
59 | [ INFO ] [2017-04-19 16:31:54] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/userResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.userResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
60 | [ INFO ] [2017-04-19 16:31:55] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/lotteryResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.lotteryResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
61 | [ INFO ] [2017-04-19 16:31:55] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/lotteryTopResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.lotteryTopResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
62 | [ INFO ] [2017-04-19 16:31:55] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/prizeLotteryResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.prizeLotteryResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
63 | [ INFO ] [2017-04-19 16:31:55] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/user/getList]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.PrizeUserController.getUserInfo(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
64 | [ INFO ] [2017-04-19 16:31:55] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/user/save]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.PrizeUserController.saveUserInfo(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
65 | [ INFO ] [2017-04-19 16:31:55] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/notice/list]}" onto public com.example.support.model.MessageEntity com.example.controller.notice.NoticeInfoController.list(javax.servlet.http.HttpServletRequest,java.lang.String) | ||
66 | [ INFO ] [2017-04-19 16:31:55] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/like]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.like(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Long,java.lang.String) | ||
67 | [ INFO ] [2017-04-19 16:31:55] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/terminal/like]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.terminallike(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Long,java.lang.String) | ||
68 | [ INFO ] [2017-04-19 16:31:55] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/rankinglist]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.rankinglist(javax.servlet.http.HttpServletRequest,java.lang.Long,java.lang.String) | ||
69 | [ INFO ] [2017-04-19 16:31:55] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/mylike]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.mylike(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
70 | [ INFO ] [2017-04-19 16:31:55] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/terminal/mylike]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.terminalMylike(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
71 | [ INFO ] [2017-04-19 16:31:55] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/winner/save]}" onto public com.example.support.model.MessageEntity com.example.controller.winner.WinnerInformationInfoController.save(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
72 | [ INFO ] [2017-04-19 16:31:55] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
73 | [ INFO ] [2017-04-19 16:31:55] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
74 | [ INFO ] [2017-04-19 16:31:55] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
75 | [ INFO ] [2017-04-19 16:31:55] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
76 | [ INFO ] [2017-04-19 16:31:55] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
77 | [ INFO ] [2017-04-19 16:31:56] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] - Registering beans for JMX exposure on startup | ||
78 | [ INFO ] [2017-04-19 16:31:56] application [2052] - Initializing Spring FrameworkServlet 'dispatcherServlet' | ||
79 | [ INFO ] [2017-04-19 16:31:56] org.springframework.web.servlet.DispatcherServlet [488] - FrameworkServlet 'dispatcherServlet': initialization started | ||
80 | [ INFO ] [2017-04-19 16:31:56] org.springframework.web.servlet.DispatcherServlet [507] - FrameworkServlet 'dispatcherServlet': initialization completed in 16 ms | ||
81 | [ INFO ] [2017-04-19 16:31:56] org.eclipse.jetty.server.ServerConnector [266] - Started ServerConnector@5bb2abbc{HTTP/1.1}{0.0.0.0:8080} | ||
82 | [ INFO ] [2017-04-19 16:31:56] org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainer [121] - Jetty started on port(s) 8080 (http/1.1) | ||
83 | [ INFO ] [2017-04-19 16:31:56] com.example.DemoApplication [57] - Started DemoApplication in 10.835 seconds (JVM running for 11.844) | ||
84 | [ WARN ] [2017-04-19 16:34:52] org.apache.tomcat.jdbc.pool.interceptor.SlowQueryReport [180] - Slow Query Report SQL=select * from t_phone_request_time where phone_number = ? and app_id = ?; time=22 ms; | ||
85 | [ WARN ] [2017-04-19 16:34:53] org.apache.tomcat.jdbc.pool.interceptor.SlowQueryReport [180] - Slow Query Report SQL=update t_phone_request_time set create_at = now() where id = ?; time=7 ms; | ||
86 | [ WARN ] [2017-04-19 16:34:53] org.apache.tomcat.jdbc.pool.interceptor.SlowQueryReport [180] - Slow Query Report SQL=INSERT INTO t_http_log ( | ||
87 | url, | ||
88 | param, | ||
89 | app_id, | ||
90 | create_at | ||
91 | ) | ||
92 | VALUES ( | ||
93 | |||
94 | ?, | ||
95 | |||
96 | ?, | ||
97 | ?, | ||
98 | ? | ||
99 | |||
100 | ); time=12 ms; | ||
101 | [ WARN ] [2017-04-19 16:34:53] org.apache.tomcat.jdbc.pool.interceptor.SlowQueryReport [180] - Slow Query Report SQL=update t_http_log set restful = ? where id = ?; time=1 ms; | ||
102 | [ WARN ] [2017-04-19 16:34:53] org.apache.tomcat.jdbc.pool.interceptor.SlowQueryReport [180] - Slow Query Report SQL=INSERT INTO t_session_info ( | ||
103 | session_id, | ||
104 | phone_number, | ||
105 | create_at, | ||
106 | code, | ||
107 | app_id, | ||
108 | status | ||
109 | ) | ||
110 | VALUES ( | ||
111 | ?, | ||
112 | ?, | ||
113 | ?, | ||
114 | ?, | ||
115 | ?, | ||
116 | ? | ||
117 | ); time=5 ms; | ||
118 | [ INFO ] [2017-04-19 16:35:12] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [960] - Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@bb8b79b: startup date [Wed Apr 19 16:31:47 CST 2017]; root of context hierarchy | ||
119 | [ INFO ] [2017-04-19 16:35:12] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [449] - Unregistering JMX-exposed beans on shutdown | ||
120 | [ WARN ] [2017-04-19 16:35:12] org.springframework.beans.factory.support.DisposableBeanAdapter [364] - Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate': java.lang.UnsupportedOperationException: Manual close is not allowed over a Spring managed SqlSession | ||
121 | [ INFO ] [2017-04-19 16:35:12] org.eclipse.jetty.server.ServerConnector [306] - Stopped ServerConnector@5bb2abbc{HTTP/1.1}{0.0.0.0:8080} | ||
122 | [ INFO ] [2017-04-19 16:35:12] application [2052] - Destroying Spring FrameworkServlet 'dispatcherServlet' | ||
123 | [ INFO ] [2017-04-19 16:35:12] org.eclipse.jetty.server.handler.ContextHandler [865] - Stopped o.s.b.c.e.j.JettyEmbeddedWebAppContext@3d97cc2{/,file:/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/jetty-docbase.4221648312121710993.8080/,UNAVAILABLE} | ||
124 | [ INFO ] [2017-04-19 16:35:17] com.example.DemoApplication [48] - Starting DemoApplication on qujiehuideMacBook-Pro.local with PID 22581 (/Users/JA/csair_dp_hdp/java/csair_dp_HDP/target/classes started by JA in /Users/JA/csair_dp_hdp/java/csair_dp_HDP) | ||
125 | [ INFO ] [2017-04-19 16:35:17] com.example.DemoApplication [666] - No active profile set, falling back to default profiles: default | ||
126 | [ INFO ] [2017-04-19 16:35:17] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [578] - Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@67a009d4: startup date [Wed Apr 19 16:35:17 CST 2017]; root of context hierarchy | ||
127 | [ INFO ] [2017-04-19 16:35:19] org.springframework.beans.factory.support.DefaultListableBeanFactory [839] - Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]] | ||
128 | [ INFO ] [2017-04-19 16:35:20] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.datasource.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
129 | [ INFO ] [2017-04-19 16:35:20] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
130 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'dataSource' of type [class org.apache.tomcat.jdbc.pool.DataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
131 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mybatisPageableInterceptor' of type [class com.example.utils.mybatis.pageable.MybatisPageableInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
132 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'myBatisConfig' of type [class com.example.utils.mybatis.MyBatisConfig$$EnhancerBySpringCGLIB$$70230909] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
133 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionFactory' of type [class org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
134 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionTemplate' of type [class org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
135 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'winnerInformationInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
136 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sessionInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
137 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'phoneRequestTimeMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
138 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'rankingListMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
139 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'likeTerminalInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
140 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'likeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
141 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'noticeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
142 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeWinningStickTopRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
143 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeWinningRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
144 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeWhiteInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
145 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeUserInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
146 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizePoolMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
147 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeLotteryRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
148 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
149 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'httpLogMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
150 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'externalRequestLogMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
151 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'formInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
152 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'enrollInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
153 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'endAtInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
154 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5CsairConfigMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
155 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'backupTableMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
156 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'annotationDrivenTransactionManager' of type [class org.springframework.jdbc.datasource.DataSourceTransactionManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
157 | [ INFO ] [2017-04-19 16:35:22] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$a80e6258] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
158 | [ INFO ] [2017-04-19 16:35:23] org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainerFactory [149] - Server initialized with port: 8080 | ||
159 | [ INFO ] [2017-04-19 16:35:23] org.eclipse.jetty.server.Server [327] - jetty-9.2.15.v20160210 | ||
160 | [ INFO ] [2017-04-19 16:35:23] application [2052] - Initializing Spring embedded WebApplicationContext | ||
161 | [ INFO ] [2017-04-19 16:35:23] org.springframework.web.context.ContextLoader [272] - Root WebApplicationContext: initialization completed in 5950 ms | ||
162 | [ INFO ] [2017-04-19 16:35:24] org.springframework.boot.context.embedded.ServletRegistrationBean [189] - Mapping servlet: 'dispatcherServlet' to [/] | ||
163 | [ INFO ] [2017-04-19 16:35:24] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'characterEncodingFilter' to: [/*] | ||
164 | [ INFO ] [2017-04-19 16:35:24] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'hiddenHttpMethodFilter' to: [/*] | ||
165 | [ INFO ] [2017-04-19 16:35:24] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'httpPutFormContentFilter' to: [/*] | ||
166 | [ INFO ] [2017-04-19 16:35:24] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'requestContextFilter' to: [/*] | ||
167 | [ INFO ] [2017-04-19 16:35:24] org.eclipse.jetty.server.handler.ContextHandler [744] - Started o.s.b.c.e.j.JettyEmbeddedWebAppContext@786a65b1{/,file:/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/jetty-docbase.8680525845463706084.8080/,AVAILABLE} | ||
168 | [ INFO ] [2017-04-19 16:35:24] org.eclipse.jetty.server.Server [379] - Started @9685ms | ||
169 | [ INFO ] [2017-04-19 16:35:24] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [532] - Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@67a009d4: startup date [Wed Apr 19 16:35:17 CST 2017]; root of context hierarchy | ||
170 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/test/test]}" onto public java.lang.String com.example.DemoApplication.now() | ||
171 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/budrlji/{ssidKey}/backup/h/dek]}" onto public void com.example.controller.backup.BackUpApiController.backup(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String) | ||
172 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/budrlji/{ssidKey}/backup/h/dek/tsqlhandle]}" onto public void com.example.controller.backup.BackUpApiController.tsqlhandle(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String) | ||
173 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/enroll/save]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.EnrollController.save(javax.servlet.http.HttpServletRequest,com.example.models.enroll.EnrollInfo,java.lang.String,java.lang.String) | ||
174 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/enroll/save/phone_number]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.EnrollController.save(javax.servlet.http.HttpServletRequest,com.example.models.enroll.EnrollInfo,java.lang.String) | ||
175 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/get]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.get(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
176 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/send]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.send(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
177 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/captcha/sendsms]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.sendsms(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
178 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/captcha/img.png]}" onto public void com.example.controller.enroll.ValidateController.validateCode(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.lang.Exception | ||
179 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.validate(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
180 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/yuyue/save]}" onto public com.example.support.model.MessageEntity com.example.controller.form.FormController.save(javax.servlet.http.HttpServletRequest,com.example.models.form.FormInfo) | ||
181 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/lottery]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.lottery(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
182 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/userResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.userResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
183 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/lotteryResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.lotteryResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
184 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/lotteryTopResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.lotteryTopResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
185 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/prizeLotteryResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.prizeLotteryResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
186 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/user/getList]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.PrizeUserController.getUserInfo(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
187 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/user/save]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.PrizeUserController.saveUserInfo(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
188 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/notice/list]}" onto public com.example.support.model.MessageEntity com.example.controller.notice.NoticeInfoController.list(javax.servlet.http.HttpServletRequest,java.lang.String) | ||
189 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/like]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.like(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Long,java.lang.String) | ||
190 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/terminal/like]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.terminallike(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Long,java.lang.String) | ||
191 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/rankinglist]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.rankinglist(javax.servlet.http.HttpServletRequest,java.lang.Long,java.lang.String) | ||
192 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/mylike]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.mylike(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
193 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/terminal/mylike]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.terminalMylike(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
194 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/winner/save]}" onto public com.example.support.model.MessageEntity com.example.controller.winner.WinnerInformationInfoController.save(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
195 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
196 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
197 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
198 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
199 | [ INFO ] [2017-04-19 16:35:25] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
200 | [ INFO ] [2017-04-19 16:35:30] com.example.DemoApplication [48] - Starting DemoApplication on qujiehuideMacBook-Pro.local with PID 22586 (/Users/JA/csair_dp_hdp/java/csair_dp_HDP/target/classes started by JA in /Users/JA/csair_dp_hdp/java/csair_dp_HDP) | ||
201 | [ INFO ] [2017-04-19 16:35:30] com.example.DemoApplication [666] - No active profile set, falling back to default profiles: default | ||
202 | [ INFO ] [2017-04-19 16:35:30] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [578] - Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@f9aac17: startup date [Wed Apr 19 16:35:30 CST 2017]; root of context hierarchy | ||
203 | [ INFO ] [2017-04-19 16:35:32] org.springframework.beans.factory.support.DefaultListableBeanFactory [839] - Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]] | ||
204 | [ INFO ] [2017-04-19 16:35:34] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.datasource.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
205 | [ INFO ] [2017-04-19 16:35:34] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
206 | [ INFO ] [2017-04-19 16:35:35] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'dataSource' of type [class org.apache.tomcat.jdbc.pool.DataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
207 | [ INFO ] [2017-04-19 16:35:35] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mybatisPageableInterceptor' of type [class com.example.utils.mybatis.pageable.MybatisPageableInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
208 | [ INFO ] [2017-04-19 16:35:35] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'myBatisConfig' of type [class com.example.utils.mybatis.MyBatisConfig$$EnhancerBySpringCGLIB$$abee015d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
209 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionFactory' of type [class org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
210 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionTemplate' of type [class org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
211 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'winnerInformationInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
212 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sessionInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
213 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'phoneRequestTimeMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
214 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'rankingListMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
215 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'likeTerminalInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
216 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'likeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
217 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'noticeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
218 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeWinningStickTopRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
219 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeWinningRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
220 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeWhiteInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
221 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeUserInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
222 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizePoolMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
223 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeLotteryRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
224 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
225 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'httpLogMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
226 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'externalRequestLogMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
227 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'formInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
228 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'enrollInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
229 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'endAtInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
230 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5CsairConfigMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
231 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'backupTableMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
232 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'annotationDrivenTransactionManager' of type [class org.springframework.jdbc.datasource.DataSourceTransactionManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
233 | [ INFO ] [2017-04-19 16:35:36] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$e3d95aac] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
234 | [ INFO ] [2017-04-19 16:35:36] org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainerFactory [149] - Server initialized with port: 8080 | ||
235 | [ INFO ] [2017-04-19 16:35:36] org.eclipse.jetty.server.Server [327] - jetty-9.2.15.v20160210 | ||
236 | [ INFO ] [2017-04-19 16:35:37] application [2052] - Initializing Spring embedded WebApplicationContext | ||
237 | [ INFO ] [2017-04-19 16:35:37] org.springframework.web.context.ContextLoader [272] - Root WebApplicationContext: initialization completed in 6306 ms | ||
238 | [ INFO ] [2017-04-19 16:35:37] org.springframework.boot.context.embedded.ServletRegistrationBean [189] - Mapping servlet: 'dispatcherServlet' to [/] | ||
239 | [ INFO ] [2017-04-19 16:35:37] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'characterEncodingFilter' to: [/*] | ||
240 | [ INFO ] [2017-04-19 16:35:37] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'hiddenHttpMethodFilter' to: [/*] | ||
241 | [ INFO ] [2017-04-19 16:35:37] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'httpPutFormContentFilter' to: [/*] | ||
242 | [ INFO ] [2017-04-19 16:35:37] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'requestContextFilter' to: [/*] | ||
243 | [ INFO ] [2017-04-19 16:35:38] org.eclipse.jetty.server.handler.ContextHandler [744] - Started o.s.b.c.e.j.JettyEmbeddedWebAppContext@2a98defd{/,file:/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/jetty-docbase.5307596220147814310.8080/,AVAILABLE} | ||
244 | [ INFO ] [2017-04-19 16:35:38] org.eclipse.jetty.server.Server [379] - Started @9488ms | ||
245 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [532] - Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@f9aac17: startup date [Wed Apr 19 16:35:30 CST 2017]; root of context hierarchy | ||
246 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/test/test]}" onto public java.lang.String com.example.DemoApplication.now() | ||
247 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/budrlji/{ssidKey}/backup/h/dek/tsqlhandle]}" onto public void com.example.controller.backup.BackUpApiController.tsqlhandle(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String) | ||
248 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/budrlji/{ssidKey}/backup/h/dek]}" onto public void com.example.controller.backup.BackUpApiController.backup(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String) | ||
249 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/enroll/save]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.EnrollController.save(javax.servlet.http.HttpServletRequest,com.example.models.enroll.EnrollInfo,java.lang.String,java.lang.String) | ||
250 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/enroll/save/phone_number]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.EnrollController.save(javax.servlet.http.HttpServletRequest,com.example.models.enroll.EnrollInfo,java.lang.String) | ||
251 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/get]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.get(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
252 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/send]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.send(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
253 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/captcha/sendsms]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.sendsms(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
254 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/captcha.png]}" onto public void com.example.controller.enroll.ValidateController.validateCode(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.lang.Exception | ||
255 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.validate(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
256 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/yuyue/save]}" onto public com.example.support.model.MessageEntity com.example.controller.form.FormController.save(javax.servlet.http.HttpServletRequest,com.example.models.form.FormInfo) | ||
257 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/lottery]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.lottery(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
258 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/userResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.userResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
259 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/lotteryResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.lotteryResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
260 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/lotteryTopResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.lotteryTopResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
261 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/prizeLotteryResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.prizeLotteryResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
262 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/user/getList]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.PrizeUserController.getUserInfo(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
263 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/user/save]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.PrizeUserController.saveUserInfo(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
264 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/notice/list]}" onto public com.example.support.model.MessageEntity com.example.controller.notice.NoticeInfoController.list(javax.servlet.http.HttpServletRequest,java.lang.String) | ||
265 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/like]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.like(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Long,java.lang.String) | ||
266 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/terminal/like]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.terminallike(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Long,java.lang.String) | ||
267 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/rankinglist]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.rankinglist(javax.servlet.http.HttpServletRequest,java.lang.Long,java.lang.String) | ||
268 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/mylike]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.mylike(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
269 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/terminal/mylike]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.terminalMylike(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
270 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/winner/save]}" onto public com.example.support.model.MessageEntity com.example.controller.winner.WinnerInformationInfoController.save(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
271 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
272 | [ INFO ] [2017-04-19 16:35:38] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
273 | [ INFO ] [2017-04-19 16:35:39] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
274 | [ INFO ] [2017-04-19 16:35:39] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
275 | [ INFO ] [2017-04-19 16:35:39] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
276 | [ INFO ] [2017-04-19 16:35:40] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] - Registering beans for JMX exposure on startup | ||
277 | [ INFO ] [2017-04-19 16:35:40] application [2052] - Initializing Spring FrameworkServlet 'dispatcherServlet' | ||
278 | [ INFO ] [2017-04-19 16:35:40] org.springframework.web.servlet.DispatcherServlet [488] - FrameworkServlet 'dispatcherServlet': initialization started | ||
279 | [ INFO ] [2017-04-19 16:35:40] org.springframework.web.servlet.DispatcherServlet [507] - FrameworkServlet 'dispatcherServlet': initialization completed in 15 ms | ||
280 | [ INFO ] [2017-04-19 16:35:40] org.eclipse.jetty.server.ServerConnector [266] - Started ServerConnector@b039b55{HTTP/1.1}{0.0.0.0:8080} | ||
281 | [ INFO ] [2017-04-19 16:35:40] org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainer [121] - Jetty started on port(s) 8080 (http/1.1) | ||
282 | [ INFO ] [2017-04-19 16:35:40] com.example.DemoApplication [57] - Started DemoApplication in 10.729 seconds (JVM running for 11.589) | ||
283 | [ INFO ] [2017-04-19 16:37:15] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [960] - Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@f9aac17: startup date [Wed Apr 19 16:35:30 CST 2017]; root of context hierarchy | ||
284 | [ INFO ] [2017-04-19 16:37:15] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [449] - Unregistering JMX-exposed beans on shutdown | ||
285 | [ WARN ] [2017-04-19 16:37:15] org.springframework.beans.factory.support.DisposableBeanAdapter [364] - Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate': java.lang.UnsupportedOperationException: Manual close is not allowed over a Spring managed SqlSession | ||
286 | [ INFO ] [2017-04-19 16:37:15] org.eclipse.jetty.server.ServerConnector [306] - Stopped ServerConnector@b039b55{HTTP/1.1}{0.0.0.0:8080} | ||
287 | [ INFO ] [2017-04-19 16:37:15] application [2052] - Destroying Spring FrameworkServlet 'dispatcherServlet' | ||
288 | [ INFO ] [2017-04-19 16:37:15] org.eclipse.jetty.server.handler.ContextHandler [865] - Stopped o.s.b.c.e.j.JettyEmbeddedWebAppContext@2a98defd{/,file:/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/jetty-docbase.5307596220147814310.8080/,UNAVAILABLE} |
yry_dp/logs/catalina-2017-05-03.0.log
0 → 100644
1 | [ INFO ] [2017-05-03 18:36:26] org.hibernate.validator.internal.util.Version [30] - HV000001: Hibernate Validator 5.2.4.Final | ||
2 | [ INFO ] [2017-05-03 18:36:26] com.example.DemoApplication [48] - Starting DemoApplication on qujiehuideMacBook-Pro.local with PID 3161 (/Users/JA/csair_dp_hdp/java/csair_dp_HDP/target/classes started by JA in /Users/JA/csair_dp_hdp/java/csair_dp_HDP) | ||
3 | [ INFO ] [2017-05-03 18:36:26] com.example.DemoApplication [666] - No active profile set, falling back to default profiles: default | ||
4 | [ INFO ] [2017-05-03 18:36:26] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [578] - Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@7bec57ce: startup date [Wed May 03 18:36:26 CST 2017]; root of context hierarchy | ||
5 | [ INFO ] [2017-05-03 18:36:28] org.springframework.beans.factory.support.DefaultListableBeanFactory [839] - Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]] | ||
6 | [ INFO ] [2017-05-03 18:36:29] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.datasource.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
7 | [ INFO ] [2017-05-03 18:36:29] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
8 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'dataSource' of type [class org.apache.tomcat.jdbc.pool.DataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
9 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mybatisPageableInterceptor' of type [class com.example.utils.mybatis.pageable.MybatisPageableInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
10 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'myBatisConfig' of type [class com.example.utils.mybatis.MyBatisConfig$$EnhancerBySpringCGLIB$$df4a0e9c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
11 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionFactory' of type [class org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
12 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionTemplate' of type [class org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
13 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxSubscribeLogsMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
14 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'winnerInformationInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
15 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sessionInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
16 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'phoneRequestTimeMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
17 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'rankingListMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
18 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'likeTerminalInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
19 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'likeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
20 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'randWinningStickTopRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
21 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'randWinningRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
22 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'randWhiteInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
23 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'randUserInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
24 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'randRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
25 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'randPrizePoolMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
26 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'randPrizeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
27 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'randMetaInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
28 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'randApplicationMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
29 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'noticeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
30 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeWinningStickTopRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
31 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeWinningRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
32 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeWhiteInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
33 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeUserInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
34 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizePoolMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
35 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeLotteryRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
36 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
37 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'httpLogMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
38 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'externalRequestLogMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
39 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'formInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
40 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'enrollInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
41 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'endAtInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
42 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5CsairConfigMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
43 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'backupTableMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
44 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'annotationDrivenTransactionManager' of type [class org.springframework.jdbc.datasource.DataSourceTransactionManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
45 | [ INFO ] [2017-05-03 18:36:30] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$173567eb] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
46 | [ INFO ] [2017-05-03 18:36:31] org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainerFactory [149] - Server initialized with port: 8080 | ||
47 | [ INFO ] [2017-05-03 18:36:31] org.eclipse.jetty.server.Server [327] - jetty-9.2.15.v20160210 | ||
48 | [ INFO ] [2017-05-03 18:36:31] application [2052] - Initializing Spring embedded WebApplicationContext | ||
49 | [ INFO ] [2017-05-03 18:36:31] org.springframework.web.context.ContextLoader [272] - Root WebApplicationContext: initialization completed in 4201 ms | ||
50 | [ INFO ] [2017-05-03 18:36:31] org.springframework.boot.context.embedded.ServletRegistrationBean [189] - Mapping servlet: 'dispatcherServlet' to [/] | ||
51 | [ INFO ] [2017-05-03 18:36:31] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'characterEncodingFilter' to: [/*] | ||
52 | [ INFO ] [2017-05-03 18:36:31] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'hiddenHttpMethodFilter' to: [/*] | ||
53 | [ INFO ] [2017-05-03 18:36:31] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'httpPutFormContentFilter' to: [/*] | ||
54 | [ INFO ] [2017-05-03 18:36:31] org.springframework.boot.context.embedded.FilterRegistrationBean [258] - Mapping filter: 'requestContextFilter' to: [/*] | ||
55 | [ INFO ] [2017-05-03 18:36:31] org.eclipse.jetty.server.handler.ContextHandler [744] - Started o.s.b.c.e.j.JettyEmbeddedWebAppContext@592a8822{/,file:/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/jetty-docbase.2536196399658731688.8080/,AVAILABLE} | ||
56 | [ INFO ] [2017-05-03 18:36:31] org.eclipse.jetty.server.Server [379] - Started @6741ms | ||
57 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [532] - Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@7bec57ce: startup date [Wed May 03 18:36:26 CST 2017]; root of context hierarchy | ||
58 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/test/test]}" onto public java.lang.String com.example.DemoApplication.now() | ||
59 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/budrlji/{ssidKey}/backup/h/dek]}" onto public void com.example.controller.backup.BackUpApiController.backup(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String) | ||
60 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/budrlji/{ssidKey}/backup/h/dek/tsqlhandle]}" onto public void com.example.controller.backup.BackUpApiController.tsqlhandle(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String) | ||
61 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/enroll/save]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.EnrollController.save(javax.servlet.http.HttpServletRequest,com.example.models.enroll.EnrollInfo,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
62 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/enroll/save/phone_number]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.EnrollController.save(javax.servlet.http.HttpServletRequest,com.example.models.enroll.EnrollInfo,java.lang.String) | ||
63 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/get]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.get(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
64 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/send]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.send(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
65 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/captcha/sendsms]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.sendsms(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
66 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/captcha]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.validateCode(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.lang.Exception | ||
67 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.validate(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
68 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/yuyue/save]}" onto public com.example.support.model.MessageEntity com.example.controller.form.FormController.save(javax.servlet.http.HttpServletRequest,com.example.models.form.FormInfo) | ||
69 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/lottery]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.lottery(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
70 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/userResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.userResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
71 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/lotteryResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.lotteryResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
72 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/lotteryTopResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.lotteryTopResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
73 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/prizeLotteryResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.prizeLotteryResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
74 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/user/getList]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.PrizeUserController.getUserInfo(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
75 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/user/save]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.PrizeUserController.saveUserInfo(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
76 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/notice/list]}" onto public com.example.support.model.MessageEntity com.example.controller.notice.NoticeInfoController.list(javax.servlet.http.HttpServletRequest,java.lang.String) | ||
77 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/randapp/save]}" onto public com.example.support.model.MessageEntity com.example.controller.rand.ApplicationController.save(javax.servlet.http.HttpServletRequest,java.lang.String,java.util.Date,java.lang.String,java.lang.String,java.lang.String) | ||
78 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rand/lottery]}" onto public com.example.support.model.MessageEntity com.example.controller.rand.RandController.lottery(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
79 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rand/userResult]}" onto public com.example.support.model.MessageEntity com.example.controller.rand.RandController.userResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
80 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rand/lotteryResult]}" onto public com.example.support.model.MessageEntity com.example.controller.rand.RandController.lotteryResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer) | ||
81 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rand/lotteryTopResult]}" onto public com.example.support.model.MessageEntity com.example.controller.rand.RandController.lotteryTopResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer) | ||
82 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rand/prizeLotteryResult]}" onto public com.example.support.model.MessageEntity com.example.controller.rand.RandController.prizeLotteryResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer) | ||
83 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rand/saveUser]}" onto public com.example.support.model.MessageEntity com.example.controller.rand.RandController.saveUserInfo(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
84 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/like]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.like(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Long,java.lang.String) | ||
85 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/terminal/like]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.terminallike(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Long,java.lang.String) | ||
86 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/rankinglist]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.rankinglist(javax.servlet.http.HttpServletRequest,java.lang.Long,java.lang.String) | ||
87 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/mylike]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.mylike(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
88 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/terminal/mylike]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.terminalMylike(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
89 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/winner/save]}" onto public com.example.support.model.MessageEntity com.example.controller.winner.WinnerInformationInfoController.save(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
90 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/subscribe/event/{appId}]}" onto public void com.example.controller.wx.WxSubscribeEventController.subscribeevent(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String) throws java.io.IOException | ||
91 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
92 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
93 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
94 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
95 | [ INFO ] [2017-05-03 18:36:32] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
96 | [ INFO ] [2017-05-03 18:36:33] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] - Registering beans for JMX exposure on startup | ||
97 | [ INFO ] [2017-05-03 18:36:33] application [2052] - Initializing Spring FrameworkServlet 'dispatcherServlet' | ||
98 | [ INFO ] [2017-05-03 18:36:33] org.springframework.web.servlet.DispatcherServlet [488] - FrameworkServlet 'dispatcherServlet': initialization started | ||
99 | [ INFO ] [2017-05-03 18:36:33] org.springframework.web.servlet.DispatcherServlet [507] - FrameworkServlet 'dispatcherServlet': initialization completed in 13 ms | ||
100 | [ INFO ] [2017-05-03 18:36:33] org.eclipse.jetty.server.ServerConnector [266] - Started ServerConnector@220e3cec{HTTP/1.1}{0.0.0.0:8080} | ||
101 | [ INFO ] [2017-05-03 18:36:33] org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainer [121] - Jetty started on port(s) 8080 (http/1.1) | ||
102 | [ INFO ] [2017-05-03 18:36:33] com.example.DemoApplication [57] - Started DemoApplication in 7.217 seconds (JVM running for 8.109) | ||
103 | [ WARN ] [2017-05-03 18:37:05] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03[\x17?\xA9g\x16[...\x00\x08\x1a\x1a\x00\x1d\x00\x17\x00\x18\xAa\xAa\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
104 | [ WARN ] [2017-05-03 18:37:05] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@44af6c9b{r=0,c=false,a=IDLE,uri=} | ||
105 | [ WARN ] [2017-05-03 18:37:09] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03Vw\xBcPb\x8d3...\x00\x08zz\x00\x1d\x00\x17\x00\x18ZZ\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
106 | [ WARN ] [2017-05-03 18:37:09] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@4d275e5b{r=0,c=false,a=IDLE,uri=} | ||
107 | [ WARN ] [2017-05-03 18:37:17] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03\x1e\xC8}\xBa\xCb(\xAa...\x00\x08\xCa\xCa\x00\x1d\x00\x17\x00\x18\xBa\xBa\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
108 | [ WARN ] [2017-05-03 18:37:17] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@426a6f70{r=0,c=false,a=IDLE,uri=} | ||
109 | [ WARN ] [2017-05-03 18:37:18] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03\x8f\x1c\xF4J\x84\x08\xDc...\x00\x08\x1a\x1a\x00\x1d\x00\x17\x00\x18JJ\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
110 | [ WARN ] [2017-05-03 18:37:18] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@be6bc5{r=0,c=false,a=IDLE,uri=} | ||
111 | [ WARN ] [2017-05-03 18:37:18] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03\xB3\xC4\x9aU\x81\xD1z...\x00\x08\xCa\xCa\x00\x1d\x00\x17\x00\x18ZZ\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
112 | [ WARN ] [2017-05-03 18:37:18] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@221fb9be{r=0,c=false,a=IDLE,uri=} | ||
113 | [ WARN ] [2017-05-03 18:37:18] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03G\xB0M\x90\xA3\xE0l...\x00\x08\xBa\xBa\x00\x1d\x00\x17\x00\x18\x9a\x9a\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
114 | [ WARN ] [2017-05-03 18:37:18] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@7a1d1456{r=0,c=false,a=IDLE,uri=} | ||
115 | [ WARN ] [2017-05-03 18:37:19] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x031\xB4\x1b\xA9\t\x1eS...\x00\x08\xBa\xBa\x00\x1d\x00\x17\x00\x18\xAa\xAa\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
116 | [ WARN ] [2017-05-03 18:37:19] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@193d86ed{r=0,c=false,a=IDLE,uri=} | ||
117 | [ WARN ] [2017-05-03 18:37:19] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03;\xE3\xA7a\xC6\xD76...\x00\x08\xEa\xEa\x00\x1d\x00\x17\x00\x18jj\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
118 | [ WARN ] [2017-05-03 18:37:19] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@1e9248dd{r=0,c=false,a=IDLE,uri=} | ||
119 | [ WARN ] [2017-05-03 18:37:19] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03~qL\x90\x86\x98%...\x00\x08zz\x00\x1d\x00\x17\x00\x18\x9a\x9a\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
120 | [ WARN ] [2017-05-03 18:37:19] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@b993fb7{r=0,c=false,a=IDLE,uri=} | ||
121 | [ WARN ] [2017-05-03 18:37:19] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03\xE7Gv8\x1c\x8cP...\x00\x08JJ\x00\x1d\x00\x17\x00\x18::\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
122 | [ WARN ] [2017-05-03 18:37:19] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@44931712{r=0,c=false,a=IDLE,uri=} | ||
123 | [ WARN ] [2017-05-03 18:37:19] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03\xCd\xBc(\xE0\x13\xCeM...\x00\x08\xBa\xBa\x00\x1d\x00\x17\x00\x18\xEa\xEa\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
124 | [ WARN ] [2017-05-03 18:37:19] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@65dd5e74{r=0,c=false,a=IDLE,uri=} | ||
125 | [ WARN ] [2017-05-03 18:37:19] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x030f\xEf#\xAfFe...\x00\x08jj\x00\x1d\x00\x17\x00\x18**\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
126 | [ WARN ] [2017-05-03 18:37:19] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@65ff3336{r=0,c=false,a=IDLE,uri=} | ||
127 | [ WARN ] [2017-05-03 18:37:20] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03\x1c\x1f\x9b\xD1\xD2\xFb\x0c...\x00\x08\x1a\x1a\x00\x1d\x00\x17\x00\x18\xDa\xDa\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
128 | [ WARN ] [2017-05-03 18:37:20] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@146673c6{r=0,c=false,a=IDLE,uri=} | ||
129 | [ WARN ] [2017-05-03 18:37:20] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03\x1bU\x14\x19\xF9\xB0\xB4...\x00\x08ZZ\x00\x1d\x00\x17\x00\x18\n\n\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
130 | [ WARN ] [2017-05-03 18:37:20] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@329547b0{r=0,c=false,a=IDLE,uri=} | ||
131 | [ WARN ] [2017-05-03 18:37:20] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03\x87(\xDa\x12\r\x1f\xB0...\x00\x08**\x00\x1d\x00\x17\x00\x18\x1a\x1a\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
132 | [ WARN ] [2017-05-03 18:37:20] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@11bc8faf{r=0,c=false,a=IDLE,uri=} | ||
133 | [ WARN ] [2017-05-03 18:37:24] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03\x00V\x86jB\x02\xC7...\x00\x08ZZ\x00\x1d\x00\x17\x00\x18jj\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
134 | [ WARN ] [2017-05-03 18:37:24] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@1cdf3ea3{r=0,c=false,a=IDLE,uri=} | ||
135 | [ WARN ] [2017-05-03 18:37:25] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03t\xCa\x0e\x13Yi\xFe...\x00\x08\xCa\xCa\x00\x1d\x00\x17\x00\x18\x1a\x1a\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
136 | [ WARN ] [2017-05-03 18:37:25] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@73a7794d{r=0,c=false,a=IDLE,uri=} | ||
137 | [ WARN ] [2017-05-03 18:37:29] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03\x0e\xEa\xFe<\x99Bb...\x00\x08\xEa\xEa\x00\x1d\x00\x17\x00\x18::\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
138 | [ WARN ] [2017-05-03 18:37:29] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@7be41edb{r=0,c=false,a=IDLE,uri=} | ||
139 | [ WARN ] [2017-05-03 18:37:30] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03\x1e\xE2\xEd'\xEb\x9b\x00...\x00\x08\xEa\xEa\x00\x1d\x00\x17\x00\x18**\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
140 | [ WARN ] [2017-05-03 18:37:30] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@55432a38{r=0,c=false,a=IDLE,uri=} | ||
141 | [ WARN ] [2017-05-03 18:37:30] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03\xB4\xC9\x02\\j\x0b\xAc...\x00\x08\xCa\xCa\x00\x1d\x00\x17\x00\x18ZZ\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
142 | [ WARN ] [2017-05-03 18:37:30] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@54c1224b{r=0,c=false,a=IDLE,uri=} | ||
143 | [ WARN ] [2017-05-03 18:37:30] org.eclipse.jetty.http.HttpParser [1719] - Illegal character 0x16 in state=START for buffer HeapByteBuffer@1ffa7f44[p=1,l=183,c=16384,r=182]={\x16<<<\x03\x01\x00\xB2\x01\x00\x00\xAe\x03\x03\xDc\x1b\xFf;\xF1t)...\x00\x08\x1a\x1a\x00\x1d\x00\x17\x00\x18::\x00\x01\x00>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} | ||
144 | [ WARN ] [2017-05-03 18:37:30] org.eclipse.jetty.http.HttpParser [1344] - badMessage: 400 Illegal character 0x16 for HttpChannelOverHttp@7e67eddd{r=0,c=false,a=IDLE,uri=} | ||
145 | [ INFO ] [2017-05-03 18:37:34] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [960] - Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@7bec57ce: startup date [Wed May 03 18:36:26 CST 2017]; root of context hierarchy | ||
146 | [ INFO ] [2017-05-03 18:37:34] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [449] - Unregistering JMX-exposed beans on shutdown | ||
147 | [ WARN ] [2017-05-03 18:37:34] org.springframework.beans.factory.support.DisposableBeanAdapter [364] - Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate': java.lang.UnsupportedOperationException: Manual close is not allowed over a Spring managed SqlSession | ||
148 | [ INFO ] [2017-05-03 18:37:34] org.eclipse.jetty.server.ServerConnector [306] - Stopped ServerConnector@220e3cec{HTTP/1.1}{0.0.0.0:8080} | ||
149 | [ INFO ] [2017-05-03 18:37:34] application [2052] - Destroying Spring FrameworkServlet 'dispatcherServlet' | ||
150 | [ INFO ] [2017-05-03 18:37:34] org.eclipse.jetty.server.handler.ContextHandler [865] - Stopped o.s.b.c.e.j.JettyEmbeddedWebAppContext@592a8822{/,file:/private/var/folders/gr/vnj7fqcx3779xx9gq56x1dd80000gn/T/jetty-docbase.2536196399658731688.8080/,UNAVAILABLE} |
yry_dp/logs/catalina-2017-05-04.0.log
0 → 100644
This diff could not be displayed because it is too large.
yry_dp/logs/catalina-2017-06-23.0.log
0 → 100644
This diff could not be displayed because it is too large.
yry_dp/logs/catalina-2017-07-07.0.log
0 → 100644
This diff could not be displayed because it is too large.
yry_dp/logs/catalina-2017-09-16.0.log
0 → 100644
1 | [ INFO ] [2017-09-16 17:31:37] org.springframework.test.context.support.AbstractContextLoader [242] - Could not detect default resource locations for test class [com.example.DemoApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}. | ||
2 | [ INFO ] [2017-09-16 17:31:37] org.springframework.test.context.web.WebTestContextBootstrapper [259] - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] | ||
3 | [ INFO ] [2017-09-16 17:31:37] org.springframework.test.context.web.WebTestContextBootstrapper [185] - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@4f230afa, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@5a5cbad, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@47decdc0, org.springframework.test.context.support.DirtiesContextTestExecutionListener@74961d1c, org.springframework.test.context.transaction.TransactionalTestExecutionListener@2b515510, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@68a7a3a7] | ||
4 | [ INFO ] [2017-09-16 17:31:37] org.springframework.test.context.support.AbstractContextLoader [242] - Could not detect default resource locations for test class [com.example.DemoApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}. | ||
5 | [ INFO ] [2017-09-16 17:31:37] org.springframework.test.context.web.WebTestContextBootstrapper [259] - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] | ||
6 | [ INFO ] [2017-09-16 17:31:37] org.springframework.test.context.web.WebTestContextBootstrapper [185] - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@379a6d19, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@7b70a0d3, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@1f4ebbf5, org.springframework.test.context.support.DirtiesContextTestExecutionListener@6a15e1e1, org.springframework.test.context.transaction.TransactionalTestExecutionListener@42a0b130, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@43d0e87c] | ||
7 | [ INFO ] [2017-09-16 17:31:37] com.example.DemoApplicationTests [48] - Starting DemoApplicationTests on qujiehuideMacBook-Pro.local with PID 1837 (/Users/JA/csair_dp_hdp/java/csair_dp_HDP/target/test-classes started by JA in /Users/JA/csair_dp_hdp/java/csair_dp_HDP) | ||
8 | [ INFO ] [2017-09-16 17:31:37] com.example.DemoApplicationTests [666] - No active profile set, falling back to default profiles: default | ||
9 | [ INFO ] [2017-09-16 17:31:37] org.springframework.web.context.support.GenericWebApplicationContext [578] - Refreshing org.springframework.web.context.support.GenericWebApplicationContext@27af9da2: startup date [Sat Sep 16 17:31:37 CST 2017]; root of context hierarchy | ||
10 | [ INFO ] [2017-09-16 17:31:37] org.hibernate.validator.internal.util.Version [30] - HV000001: Hibernate Validator 5.2.4.Final | ||
11 | [ INFO ] [2017-09-16 17:31:39] org.springframework.beans.factory.support.DefaultListableBeanFactory [839] - Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]] | ||
12 | [ INFO ] [2017-09-16 17:31:40] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'spring.datasource.CONFIGURATION_PROPERTIES' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
13 | [ INFO ] [2017-09-16 17:31:40] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration' of type [class org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$NonEmbeddedConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
14 | [ INFO ] [2017-09-16 17:31:40] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'dataSource' of type [class org.apache.tomcat.jdbc.pool.DataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
15 | [ INFO ] [2017-09-16 17:31:40] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'mybatisPageableInterceptor' of type [class com.example.utils.mybatis.pageable.MybatisPageableInterceptor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
16 | [ INFO ] [2017-09-16 17:31:40] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'myBatisConfig' of type [class com.example.utils.mybatis.MyBatisConfig$$EnhancerBySpringCGLIB$$8fc924ec] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
17 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionFactory' of type [class org.apache.ibatis.session.defaults.DefaultSqlSessionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
18 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sqlSessionTemplate' of type [class org.mybatis.spring.SqlSessionTemplate] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
19 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'wxSubscribeLogsMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
20 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sceneQrCodeMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
21 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'winnerInformationInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
22 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'uppOrderInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
23 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'productInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
24 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'plateInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
25 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'tourismFormInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
26 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'signRandLogMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
27 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'signLogMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
28 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'signInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
29 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'signConfigMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
30 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'sessionInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
31 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'phoneRequestTimeMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
32 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'seatSelectionMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
33 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'noSeatAvailableMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
34 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'alreadyTicketMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
35 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'rankingListMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
36 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'likeTerminalInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
37 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'likeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
38 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'randWinningStickTopRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
39 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'randWinningRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
40 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'randWhiteInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
41 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'randUserInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
42 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'randRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
43 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'randPrizePoolMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
44 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'randPrizeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
45 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'randMetaInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
46 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'randApplicationMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
47 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'noticeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
48 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'lotteryShareMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
49 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeWinningStickTopRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
50 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeWinningRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
51 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeWhiteInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
52 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeUserInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
53 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizePoolMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
54 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeLotteryRecordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
55 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
56 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5PrizeBlackInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
57 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'concernLotteryMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
58 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'httpLogMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
59 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'externalRequestLogMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
60 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'integralInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
61 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'experienceInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
62 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'gddzInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
63 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'formInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
64 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'fansInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
65 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'fansCodeWordMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
66 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'enrollInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
67 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'endAtInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
68 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5CsairCouponParamMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
69 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'h5CsairConfigMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
70 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'captchaInfoMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
71 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'backupTableMapper' of type [class org.mybatis.spring.mapper.MapperFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
72 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'annotationDrivenTransactionManager' of type [class org.springframework.jdbc.datasource.DataSourceTransactionManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
73 | [ INFO ] [2017-09-16 17:31:41] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [328] - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$c7b47e3b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) | ||
74 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [532] - Looking for @ControllerAdvice: org.springframework.web.context.support.GenericWebApplicationContext@27af9da2: startup date [Sat Sep 16 17:31:37 CST 2017]; root of context hierarchy | ||
75 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/test/test]}" onto public java.lang.String com.example.DemoApplication.now() | ||
76 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/budrlji/{ssidKey}/backup/h/dek]}" onto public void com.example.controller.backup.BackUpApiController.backup(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String) | ||
77 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/budrlji/{ssidKey}/backup/h/dek/tsqlhandle]}" onto public void com.example.controller.backup.BackUpApiController.tsqlhandle(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String) | ||
78 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/cb/dir/{dir}]}" onto public void com.example.controller.callback.CallBackController.callback(javax.servlet.http.HttpServletResponse,java.lang.String) | ||
79 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/api/getPhone]}" onto public com.example.support.model.MessageEntity com.example.controller.csairapi.CsairApiController.getPhone(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
80 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/coupon/send],methods=[POST]}" onto public java.util.Map<java.lang.String, java.lang.Object> com.example.controller.csairapi.PrizeCsairCouponController.sendCoupon(java.lang.String) | ||
81 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/enroll/get]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.EnrollController.get(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
82 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/enroll/save/phone_number]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.EnrollController.save(javax.servlet.http.HttpServletRequest,com.example.models.enroll.EnrollInfo,java.lang.String) | ||
83 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/enroll/save]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.EnrollController.save(javax.servlet.http.HttpServletRequest,com.example.models.enroll.EnrollInfo,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
84 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/enroll/getUserInfo]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.EnrollController.getUserInfo(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
85 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/enroll/update]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.EnrollController.update(javax.servlet.http.HttpServletRequest,com.example.models.enroll.EnrollInfo,java.lang.String) | ||
86 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/enroll/getbysid]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.EnrollController.getbysid(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
87 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/enroll/findByTalent]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.EnrollController.findByTalent(javax.servlet.http.HttpServletRequest,java.lang.String,int,int,java.lang.String) | ||
88 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/enroll/saveUserInfo]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.EnrollController.saveUserInfo(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,com.example.models.enroll.EnrollInfo) | ||
89 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/get]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.get(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
90 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.validate(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
91 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/validatecaptcha]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.validatecaptcha(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
92 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/send]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.send(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
93 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/captcha/sendsms]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.sendsms(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
94 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/validate/captcha]}" onto public com.example.support.model.MessageEntity com.example.controller.enroll.ValidateController.validateCode(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String) throws java.lang.Exception | ||
95 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/fanscodeword/get]}" onto public com.example.support.model.MessageEntity com.example.controller.fans.FansCodeWordController.get(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
96 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/fanscodeword/create]}" onto public com.example.support.model.MessageEntity com.example.controller.fans.FansCodeWordController.create(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
97 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/fanscodeword/exchange]}" onto public com.example.support.model.MessageEntity com.example.controller.fans.FansCodeWordController.exchange(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
98 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/yuyue/save]}" onto public com.example.support.model.MessageEntity com.example.controller.form.FormController.save(javax.servlet.http.HttpServletRequest,com.example.models.form.FormInfo) | ||
99 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/gddz/save]}" onto public com.example.support.model.MessageEntity com.example.controller.gddz.GddzController.save(javax.servlet.http.HttpServletRequest,com.example.models.gddz.GddzInfo,java.lang.String,java.lang.String) | ||
100 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/gddz/test]}" onto public java.lang.String com.example.controller.gddz.GddzController.test() | ||
101 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/concern/get]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.ConcernLotteryController.get(javax.servlet.http.HttpServletRequest,java.lang.String) | ||
102 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/concern/save]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.ConcernLotteryController.save(javax.servlet.http.HttpServletRequest,java.lang.String,com.example.models.lottery.ConcernLottery) | ||
103 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/dun]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.DunController.saveUserInfo(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
104 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/lottery]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.lottery(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
105 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/dun/lottery]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.dunlottery(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
106 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/lotteryPrize]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.lotteryPrize(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
107 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/userResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.userResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
108 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/lotteryResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.lotteryResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
109 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/lotteryTopResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.lotteryTopResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
110 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/prizeLotteryResult]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.prizeLotteryResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
111 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/integralInfo/rank]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.integralInforank(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
112 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/integralInfo/get]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.integralInfoget(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
113 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/integralInfo/history]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.integralInfohistory(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
114 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/experience/history]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.experiencehistory(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
115 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/experience/crontab]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.experiencerank(javax.servlet.http.HttpServletRequest,java.lang.String) | ||
116 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/experience/rank]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryController.experiencerank(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) | ||
117 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/share]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryShareControler.share(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
118 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/share/istodayshare]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.LotteryShareControler.istodayshare(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
119 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/user/getList]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.PrizeUserController.getUserInfo(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
120 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/prize/user/save]}" onto public com.example.support.model.MessageEntity com.example.controller.lottery.PrizeUserController.saveUserInfo(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
121 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/notice/list]}" onto public com.example.support.model.MessageEntity com.example.controller.notice.NoticeInfoController.list(javax.servlet.http.HttpServletRequest,java.lang.String) | ||
122 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/notice/phone/list]}" onto public com.example.support.model.MessageEntity com.example.controller.notice.NoticeInfoController.phonelist(javax.servlet.http.HttpServletRequest,java.lang.String) | ||
123 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/randapp/save]}" onto public com.example.support.model.MessageEntity com.example.controller.rand.ApplicationController.save(javax.servlet.http.HttpServletRequest,java.lang.String,java.util.Date,java.lang.String,java.lang.String,java.lang.String) | ||
124 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rand/saveUser]}" onto public com.example.support.model.MessageEntity com.example.controller.rand.RandController.saveUserInfo(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
125 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rand/lottery]}" onto public com.example.support.model.MessageEntity com.example.controller.rand.RandController.lottery(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
126 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rand/userResult]}" onto public com.example.support.model.MessageEntity com.example.controller.rand.RandController.userResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
127 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rand/lotteryResult]}" onto public com.example.support.model.MessageEntity com.example.controller.rand.RandController.lotteryResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer) | ||
128 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rand/lotteryTopResult]}" onto public com.example.support.model.MessageEntity com.example.controller.rand.RandController.lotteryTopResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer) | ||
129 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rand/prizeLotteryResult]}" onto public com.example.support.model.MessageEntity com.example.controller.rand.RandController.prizeLotteryResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer) | ||
130 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/like]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.like(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Long,java.lang.String) | ||
131 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/terminal/like]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.terminallike(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Long,java.lang.String) | ||
132 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/rankinglist]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.rankinglist(javax.servlet.http.HttpServletRequest,java.lang.Long,java.lang.String) | ||
133 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/mylike]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.mylike(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
134 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/rank/terminal/mylike]}" onto public com.example.support.model.MessageEntity com.example.controller.rank.RankController.terminalMylike(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
135 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/seat/list]}" onto public com.example.support.model.MessageEntity com.example.controller.seat.SeatController.list(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
136 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/seat/save]}" onto public com.example.support.model.MessageEntity com.example.controller.seat.SeatController.save(javax.servlet.http.HttpServletRequest,com.example.models.seat.SeatSelection,java.lang.String,java.lang.String) | ||
137 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/seat/init]}" onto public com.example.support.model.MessageEntity com.example.controller.seat.SeatController.getalreadyticketbyphone(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
138 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/seat/select]}" onto public com.example.support.model.MessageEntity com.example.controller.seat.SeatController.select(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Long,java.lang.String,java.lang.String) | ||
139 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/seat/newseat]}" onto public com.example.support.model.MessageEntity com.example.controller.seat.SeatController.newseat(javax.servlet.http.HttpServletRequest,java.lang.String,int,java.lang.String) | ||
140 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/sign/saveUser]}" onto public com.example.support.model.MessageEntity com.example.controller.sign.SignController.saveUserInfo(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
141 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/sign/lottery]}" onto public com.example.support.model.MessageEntity com.example.controller.sign.SignController.lottery(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,int) | ||
142 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/sign/userResult]}" onto public com.example.support.model.MessageEntity com.example.controller.sign.SignController.userResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
143 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/sign/lotteryResult]}" onto public com.example.support.model.MessageEntity com.example.controller.sign.SignController.lotteryResult(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
144 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/sign/gameInit]}" onto public com.example.support.model.MessageEntity com.example.controller.sign.SignController.gameInit(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
145 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/sign/userSign]}" onto public com.example.support.model.MessageEntity com.example.controller.sign.SignController.userSign(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
146 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/sign/drawPrize]}" onto public com.example.support.model.MessageEntity com.example.controller.sign.SignController.drawPrize(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String) | ||
147 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/tourism/get]}" onto public com.example.support.model.MessageEntity com.example.controller.tourism.TourismController.get(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String) | ||
148 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/tourism/save]}" onto public com.example.support.model.MessageEntity com.example.controller.tourism.TourismController.save(javax.servlet.http.HttpServletRequest,com.example.models.tourism.TourismFormInfo) | ||
149 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/upp/file/upload],methods=[POST]}" onto public com.example.support.model.MessageEntity com.example.controller.upp.FileController.upload(javax.servlet.http.HttpServletRequest,org.springframework.web.multipart.MultipartFile) | ||
150 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/upp/file/uploadbase64],methods=[POST]}" onto public com.example.support.model.MessageEntity com.example.controller.upp.FileController.uploadbase64(javax.servlet.http.HttpServletRequest,java.lang.String) | ||
151 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/upp/plate/list]}" onto public com.example.support.model.MessageEntity com.example.controller.upp.PlateInfoController.list(javax.servlet.http.HttpServletResponse,javax.servlet.http.HttpServletRequest,java.lang.String) | ||
152 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/upp/plate/update]}" onto public com.example.support.model.MessageEntity com.example.controller.upp.PlateInfoController.update(javax.servlet.http.HttpServletResponse,javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.Long) | ||
153 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/upp/product/create]}" onto public com.example.support.model.MessageEntity com.example.controller.upp.ProductInfoController.create(javax.servlet.http.HttpServletResponse,javax.servlet.http.HttpServletRequest,java.lang.String,com.example.models.upp.ProductInfo) | ||
154 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/upp/product/list]}" onto public com.example.support.model.MessageEntity com.example.controller.upp.ProductInfoController.list(javax.servlet.http.HttpServletResponse,javax.servlet.http.HttpServletRequest,java.lang.String,int,int,int,java.lang.String) | ||
155 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/upp/product/online]}" onto public com.example.support.model.MessageEntity com.example.controller.upp.ProductInfoController.list(javax.servlet.http.HttpServletResponse,javax.servlet.http.HttpServletRequest,java.lang.String) | ||
156 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/upp/product/get]}" onto public com.example.support.model.MessageEntity com.example.controller.upp.ProductInfoController.list(javax.servlet.http.HttpServletResponse,javax.servlet.http.HttpServletRequest,java.lang.Long,java.lang.String) | ||
157 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/upp/product/update]}" onto public com.example.support.model.MessageEntity com.example.controller.upp.ProductInfoController.update(javax.servlet.http.HttpServletResponse,javax.servlet.http.HttpServletRequest,java.lang.String,com.example.models.upp.ProductInfo) | ||
158 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/upp/product/afterb/online]}" onto public com.example.support.model.MessageEntity com.example.controller.upp.ProductInfoController.afterbonline(javax.servlet.http.HttpServletResponse,javax.servlet.http.HttpServletRequest,java.lang.String) | ||
159 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/upp/product/update/total]}" onto public com.example.support.model.MessageEntity com.example.controller.upp.ProductInfoController.updatetotal(javax.servlet.http.HttpServletResponse,javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Long,java.lang.Long) | ||
160 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/upp/product/onsale]}" onto public com.example.support.model.MessageEntity com.example.controller.upp.ProductInfoController.onsale(javax.servlet.http.HttpServletResponse,javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Long) | ||
161 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/upp/product/offsale]}" onto public com.example.support.model.MessageEntity com.example.controller.upp.ProductInfoController.offsale(javax.servlet.http.HttpServletResponse,javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Long) | ||
162 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/upp/callback]}" onto public java.lang.String com.example.controller.upp.UppCallbackController.callback(java.lang.String) | ||
163 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/upp/list]}" onto public com.example.support.model.MessageEntity com.example.controller.upp.UppController.list(javax.servlet.http.HttpServletResponse,javax.servlet.http.HttpServletRequest,java.lang.String,int,int,int,java.lang.String,java.lang.String,java.lang.String) | ||
164 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/upp/release]}" onto public com.example.support.model.MessageEntity com.example.controller.upp.UppController.release(javax.servlet.http.HttpServletResponse,javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.Long) | ||
165 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/upp/buy]}" onto public com.example.support.model.MessageEntity com.example.controller.upp.UppController.buy(javax.servlet.http.HttpServletResponse,javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.Long,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
166 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/upp/downLoad]}" onto public void com.example.controller.upp.UppController.downLoad(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,int,java.lang.String,java.lang.String,java.lang.String) | ||
167 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/marketing/winner/save]}" onto public com.example.support.model.MessageEntity com.example.controller.winner.WinnerInformationInfoController.save(javax.servlet.http.HttpServletRequest,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) | ||
168 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - Mapped "{[/wx/subscribe/event/{appId}]}" onto public void com.example.controller.wx.WxSubscribeEventController.subscribeevent(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String) throws java.io.IOException | ||
169 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
170 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [534] - 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) | ||
171 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
172 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
173 | [ INFO ] [2017-09-16 17:31:42] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [341] - Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler] | ||
174 | [ INFO ] [2017-09-16 17:31:42] org.eclipse.jetty.util.log [186] - Logging initialized @6221ms | ||
175 | [ INFO ] [2017-09-16 17:31:43] com.example.DemoApplicationTests [57] - Started DemoApplicationTests in 6.286 seconds (JVM running for 6.985) | ||
176 | [ INFO ] [2017-09-16 17:31:43] org.springframework.web.context.support.GenericWebApplicationContext [960] - Closing org.springframework.web.context.support.GenericWebApplicationContext@27af9da2: startup date [Sat Sep 16 17:31:37 CST 2017]; root of context hierarchy | ||
177 | [ WARN ] [2017-09-16 17:31:43] org.springframework.beans.factory.support.DisposableBeanAdapter [364] - Invocation of destroy method 'close' failed on bean with name 'sqlSessionTemplate': java.lang.UnsupportedOperationException: Manual close is not allowed over a Spring managed SqlSession |
yry_dp/logs/catalina-2017-12-26.0.log
0 → 100644
This diff could not be displayed because it is too large.
yry_dp/logs/catalina-2017-12-27.0.log
0 → 100644
This diff could not be displayed because it is too large.
yry_dp/logs/catalina-2017-12-29.0.log
0 → 100644
This diff could not be displayed because it is too large.
yry_dp/mvnw
0 → 100755
1 | #!/bin/sh | ||
2 | # ---------------------------------------------------------------------------- | ||
3 | # Licensed to the Apache Software Foundation (ASF) under one | ||
4 | # or more contributor license agreements. See the NOTICE file | ||
5 | # distributed with this work for additional information | ||
6 | # regarding copyright ownership. The ASF licenses this file | ||
7 | # to you under the Apache License, Version 2.0 (the | ||
8 | # "License"); you may not use this file except in compliance | ||
9 | # with the License. You may obtain a copy of the License at | ||
10 | # | ||
11 | # http://www.apache.org/licenses/LICENSE-2.0 | ||
12 | # | ||
13 | # Unless required by applicable law or agreed to in writing, | ||
14 | # software distributed under the License is distributed on an | ||
15 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
16 | # KIND, either express or implied. See the License for the | ||
17 | # specific language governing permissions and limitations | ||
18 | # under the License. | ||
19 | # ---------------------------------------------------------------------------- | ||
20 | |||
21 | # ---------------------------------------------------------------------------- | ||
22 | # Maven2 Start Up Batch script | ||
23 | # | ||
24 | # Required ENV vars: | ||
25 | # ------------------ | ||
26 | # JAVA_HOME - location of a JDK home dir | ||
27 | # | ||
28 | # Optional ENV vars | ||
29 | # ----------------- | ||
30 | # M2_HOME - location of maven2's installed home dir | ||
31 | # MAVEN_OPTS - parameters passed to the Java VM when running Maven | ||
32 | # e.g. to debug Maven itself, use | ||
33 | # set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 | ||
34 | # MAVEN_SKIP_RC - flag to disable loading of mavenrc files | ||
35 | # ---------------------------------------------------------------------------- | ||
36 | |||
37 | if [ -z "$MAVEN_SKIP_RC" ] ; then | ||
38 | |||
39 | if [ -f /etc/mavenrc ] ; then | ||
40 | . /etc/mavenrc | ||
41 | fi | ||
42 | |||
43 | if [ -f "$HOME/.mavenrc" ] ; then | ||
44 | . "$HOME/.mavenrc" | ||
45 | fi | ||
46 | |||
47 | fi | ||
48 | |||
49 | # OS specific support. $var _must_ be set to either true or false. | ||
50 | cygwin=false; | ||
51 | darwin=false; | ||
52 | mingw=false | ||
53 | case "`uname`" in | ||
54 | CYGWIN*) cygwin=true ;; | ||
55 | MINGW*) mingw=true;; | ||
56 | Darwin*) darwin=true | ||
57 | # | ||
58 | # Look for the Apple JDKs first to preserve the existing behaviour, and then look | ||
59 | # for the new JDKs provided by Oracle. | ||
60 | # | ||
61 | if [ -z "$JAVA_HOME" ] && [ -L /System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK ] ; then | ||
62 | # | ||
63 | # Apple JDKs | ||
64 | # | ||
65 | export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Home | ||
66 | fi | ||
67 | |||
68 | if [ -z "$JAVA_HOME" ] && [ -L /System/Library/Java/JavaVirtualMachines/CurrentJDK ] ; then | ||
69 | # | ||
70 | # Apple JDKs | ||
71 | # | ||
72 | export JAVA_HOME=/System/Library/Java/JavaVirtualMachines/CurrentJDK/Contents/Home | ||
73 | fi | ||
74 | |||
75 | if [ -z "$JAVA_HOME" ] && [ -L "/Library/Java/JavaVirtualMachines/CurrentJDK" ] ; then | ||
76 | # | ||
77 | # Oracle JDKs | ||
78 | # | ||
79 | export JAVA_HOME=/Library/Java/JavaVirtualMachines/CurrentJDK/Contents/Home | ||
80 | fi | ||
81 | |||
82 | if [ -z "$JAVA_HOME" ] && [ -x "/usr/libexec/java_home" ]; then | ||
83 | # | ||
84 | # Apple JDKs | ||
85 | # | ||
86 | export JAVA_HOME=`/usr/libexec/java_home` | ||
87 | fi | ||
88 | ;; | ||
89 | esac | ||
90 | |||
91 | if [ -z "$JAVA_HOME" ] ; then | ||
92 | if [ -r /etc/gentoo-release ] ; then | ||
93 | JAVA_HOME=`java-config --jre-home` | ||
94 | fi | ||
95 | fi | ||
96 | |||
97 | if [ -z "$M2_HOME" ] ; then | ||
98 | ## resolve links - $0 may be a link to maven's home | ||
99 | PRG="$0" | ||
100 | |||
101 | # need this for relative symlinks | ||
102 | while [ -h "$PRG" ] ; do | ||
103 | ls=`ls -ld "$PRG"` | ||
104 | link=`expr "$ls" : '.*-> \(.*\)$'` | ||
105 | if expr "$link" : '/.*' > /dev/null; then | ||
106 | PRG="$link" | ||
107 | else | ||
108 | PRG="`dirname "$PRG"`/$link" | ||
109 | fi | ||
110 | done | ||
111 | |||
112 | saveddir=`pwd` | ||
113 | |||
114 | M2_HOME=`dirname "$PRG"`/.. | ||
115 | |||
116 | # make it fully qualified | ||
117 | M2_HOME=`cd "$M2_HOME" && pwd` | ||
118 | |||
119 | cd "$saveddir" | ||
120 | # echo Using m2 at $M2_HOME | ||
121 | fi | ||
122 | |||
123 | # For Cygwin, ensure paths are in UNIX format before anything is touched | ||
124 | if $cygwin ; then | ||
125 | [ -n "$M2_HOME" ] && | ||
126 | M2_HOME=`cygpath --unix "$M2_HOME"` | ||
127 | [ -n "$JAVA_HOME" ] && | ||
128 | JAVA_HOME=`cygpath --unix "$JAVA_HOME"` | ||
129 | [ -n "$CLASSPATH" ] && | ||
130 | CLASSPATH=`cygpath --path --unix "$CLASSPATH"` | ||
131 | fi | ||
132 | |||
133 | # For Migwn, ensure paths are in UNIX format before anything is touched | ||
134 | if $mingw ; then | ||
135 | [ -n "$M2_HOME" ] && | ||
136 | M2_HOME="`(cd "$M2_HOME"; pwd)`" | ||
137 | [ -n "$JAVA_HOME" ] && | ||
138 | JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`" | ||
139 | # TODO classpath? | ||
140 | fi | ||
141 | |||
142 | if [ -z "$JAVA_HOME" ]; then | ||
143 | javaExecutable="`which javac`" | ||
144 | if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then | ||
145 | # readlink(1) is not available as standard on Solaris 10. | ||
146 | readLink=`which readlink` | ||
147 | if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then | ||
148 | if $darwin ; then | ||
149 | javaHome="`dirname \"$javaExecutable\"`" | ||
150 | javaExecutable="`cd \"$javaHome\" && pwd -P`/javac" | ||
151 | else | ||
152 | javaExecutable="`readlink -f \"$javaExecutable\"`" | ||
153 | fi | ||
154 | javaHome="`dirname \"$javaExecutable\"`" | ||
155 | javaHome=`expr "$javaHome" : '\(.*\)/bin'` | ||
156 | JAVA_HOME="$javaHome" | ||
157 | export JAVA_HOME | ||
158 | fi | ||
159 | fi | ||
160 | fi | ||
161 | |||
162 | if [ -z "$JAVACMD" ] ; then | ||
163 | if [ -n "$JAVA_HOME" ] ; then | ||
164 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then | ||
165 | # IBM's JDK on AIX uses strange locations for the executables | ||
166 | JAVACMD="$JAVA_HOME/jre/sh/java" | ||
167 | else | ||
168 | JAVACMD="$JAVA_HOME/bin/java" | ||
169 | fi | ||
170 | else | ||
171 | JAVACMD="`which java`" | ||
172 | fi | ||
173 | fi | ||
174 | |||
175 | if [ ! -x "$JAVACMD" ] ; then | ||
176 | echo "Error: JAVA_HOME is not defined correctly." >&2 | ||
177 | echo " We cannot execute $JAVACMD" >&2 | ||
178 | exit 1 | ||
179 | fi | ||
180 | |||
181 | if [ -z "$JAVA_HOME" ] ; then | ||
182 | echo "Warning: JAVA_HOME environment variable is not set." | ||
183 | fi | ||
184 | |||
185 | CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher | ||
186 | |||
187 | # For Cygwin, switch paths to Windows format before running java | ||
188 | if $cygwin; then | ||
189 | [ -n "$M2_HOME" ] && | ||
190 | M2_HOME=`cygpath --path --windows "$M2_HOME"` | ||
191 | [ -n "$JAVA_HOME" ] && | ||
192 | JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"` | ||
193 | [ -n "$CLASSPATH" ] && | ||
194 | CLASSPATH=`cygpath --path --windows "$CLASSPATH"` | ||
195 | fi | ||
196 | |||
197 | # traverses directory structure from process work directory to filesystem root | ||
198 | # first directory with .mvn subdirectory is considered project base directory | ||
199 | find_maven_basedir() { | ||
200 | local basedir=$(pwd) | ||
201 | local wdir=$(pwd) | ||
202 | while [ "$wdir" != '/' ] ; do | ||
203 | if [ -d "$wdir"/.mvn ] ; then | ||
204 | basedir=$wdir | ||
205 | break | ||
206 | fi | ||
207 | wdir=$(cd "$wdir/.."; pwd) | ||
208 | done | ||
209 | echo "${basedir}" | ||
210 | } | ||
211 | |||
212 | # concatenates all lines of a file | ||
213 | concat_lines() { | ||
214 | if [ -f "$1" ]; then | ||
215 | echo "$(tr -s '\n' ' ' < "$1")" | ||
216 | fi | ||
217 | } | ||
218 | |||
219 | export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-$(find_maven_basedir)} | ||
220 | MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" | ||
221 | |||
222 | # Provide a "standardized" way to retrieve the CLI args that will | ||
223 | # work with both Windows and non-Windows executions. | ||
224 | MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@" | ||
225 | export MAVEN_CMD_LINE_ARGS | ||
226 | |||
227 | WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain | ||
228 | |||
229 | exec "$JAVACMD" \ | ||
230 | $MAVEN_OPTS \ | ||
231 | -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ | ||
232 | "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ | ||
233 | ${WRAPPER_LAUNCHER} "$@" |
yry_dp/mvnw.cmd
0 → 100644
1 | @REM ---------------------------------------------------------------------------- | ||
2 | @REM Licensed to the Apache Software Foundation (ASF) under one | ||
3 | @REM or more contributor license agreements. See the NOTICE file | ||
4 | @REM distributed with this work for additional information | ||
5 | @REM regarding copyright ownership. The ASF licenses this file | ||
6 | @REM to you under the Apache License, Version 2.0 (the | ||
7 | @REM "License"); you may not use this file except in compliance | ||
8 | @REM with the License. You may obtain a copy of the License at | ||
9 | @REM | ||
10 | @REM http://www.apache.org/licenses/LICENSE-2.0 | ||
11 | @REM | ||
12 | @REM Unless required by applicable law or agreed to in writing, | ||
13 | @REM software distributed under the License is distributed on an | ||
14 | @REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
15 | @REM KIND, either express or implied. See the License for the | ||
16 | @REM specific language governing permissions and limitations | ||
17 | @REM under the License. | ||
18 | @REM ---------------------------------------------------------------------------- | ||
19 | |||
20 | @REM ---------------------------------------------------------------------------- | ||
21 | @REM Maven2 Start Up Batch script | ||
22 | @REM | ||
23 | @REM Required ENV vars: | ||
24 | @REM JAVA_HOME - location of a JDK home dir | ||
25 | @REM | ||
26 | @REM Optional ENV vars | ||
27 | @REM M2_HOME - location of maven2's installed home dir | ||
28 | @REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands | ||
29 | @REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a key stroke before ending | ||
30 | @REM MAVEN_OPTS - parameters passed to the Java VM when running Maven | ||
31 | @REM e.g. to debug Maven itself, use | ||
32 | @REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 | ||
33 | @REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files | ||
34 | @REM ---------------------------------------------------------------------------- | ||
35 | |||
36 | @REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' | ||
37 | @echo off | ||
38 | @REM enable echoing my setting MAVEN_BATCH_ECHO to 'on' | ||
39 | @if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% | ||
40 | |||
41 | @REM set %HOME% to equivalent of $HOME | ||
42 | if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") | ||
43 | |||
44 | @REM Execute a user defined script before this one | ||
45 | if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre | ||
46 | @REM check for pre script, once with legacy .bat ending and once with .cmd ending | ||
47 | if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat" | ||
48 | if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd" | ||
49 | :skipRcPre | ||
50 | |||
51 | @setlocal | ||
52 | |||
53 | set ERROR_CODE=0 | ||
54 | |||
55 | @REM To isolate internal variables from possible post scripts, we use another setlocal | ||
56 | @setlocal | ||
57 | |||
58 | @REM ==== START VALIDATION ==== | ||
59 | if not "%JAVA_HOME%" == "" goto OkJHome | ||
60 | |||
61 | echo. | ||
62 | echo Error: JAVA_HOME not found in your environment. >&2 | ||
63 | echo Please set the JAVA_HOME variable in your environment to match the >&2 | ||
64 | echo location of your Java installation. >&2 | ||
65 | echo. | ||
66 | goto error | ||
67 | |||
68 | :OkJHome | ||
69 | if exist "%JAVA_HOME%\bin\java.exe" goto init | ||
70 | |||
71 | echo. | ||
72 | echo Error: JAVA_HOME is set to an invalid directory. >&2 | ||
73 | echo JAVA_HOME = "%JAVA_HOME%" >&2 | ||
74 | echo Please set the JAVA_HOME variable in your environment to match the >&2 | ||
75 | echo location of your Java installation. >&2 | ||
76 | echo. | ||
77 | goto error | ||
78 | |||
79 | @REM ==== END VALIDATION ==== | ||
80 | |||
81 | :init | ||
82 | |||
83 | set MAVEN_CMD_LINE_ARGS=%* | ||
84 | |||
85 | @REM Find the project base dir, i.e. the directory that contains the folder ".mvn". | ||
86 | @REM Fallback to current working directory if not found. | ||
87 | |||
88 | set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% | ||
89 | IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir | ||
90 | |||
91 | set EXEC_DIR=%CD% | ||
92 | set WDIR=%EXEC_DIR% | ||
93 | :findBaseDir | ||
94 | IF EXIST "%WDIR%"\.mvn goto baseDirFound | ||
95 | cd .. | ||
96 | IF "%WDIR%"=="%CD%" goto baseDirNotFound | ||
97 | set WDIR=%CD% | ||
98 | goto findBaseDir | ||
99 | |||
100 | :baseDirFound | ||
101 | set MAVEN_PROJECTBASEDIR=%WDIR% | ||
102 | cd "%EXEC_DIR%" | ||
103 | goto endDetectBaseDir | ||
104 | |||
105 | :baseDirNotFound | ||
106 | set MAVEN_PROJECTBASEDIR=%EXEC_DIR% | ||
107 | cd "%EXEC_DIR%" | ||
108 | |||
109 | :endDetectBaseDir | ||
110 | |||
111 | IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig | ||
112 | |||
113 | @setlocal EnableExtensions EnableDelayedExpansion | ||
114 | for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a | ||
115 | @endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% | ||
116 | |||
117 | :endReadAdditionalConfig | ||
118 | |||
119 | SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" | ||
120 | |||
121 | set WRAPPER_JAR="".\.mvn\wrapper\maven-wrapper.jar"" | ||
122 | set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain | ||
123 | |||
124 | %MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CMD_LINE_ARGS% | ||
125 | if ERRORLEVEL 1 goto error | ||
126 | goto end | ||
127 | |||
128 | :error | ||
129 | set ERROR_CODE=1 | ||
130 | |||
131 | :end | ||
132 | @endlocal & set ERROR_CODE=%ERROR_CODE% | ||
133 | |||
134 | if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost | ||
135 | @REM check for post script, once with legacy .bat ending and once with .cmd ending | ||
136 | if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat" | ||
137 | if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd" | ||
138 | :skipRcPost | ||
139 | |||
140 | @REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' | ||
141 | if "%MAVEN_BATCH_PAUSE%" == "on" pause | ||
142 | |||
143 | if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE% | ||
144 | |||
145 | exit /B %ERROR_CODE% | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
yry_dp/pom.xml
0 → 100644
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
4 | <modelVersion>4.0.0</modelVersion> | ||
5 | |||
6 | <groupId>com.example</groupId> | ||
7 | <artifactId>csair_dp_HDP</artifactId> | ||
8 | <version>0.0.1-SNAPSHOT</version> | ||
9 | <packaging>jar</packaging> | ||
10 | |||
11 | <name>csair_dp_HDP</name> | ||
12 | <description>Demo project for Spring Boot</description> | ||
13 | |||
14 | <parent> | ||
15 | <groupId>org.springframework.boot</groupId> | ||
16 | <artifactId>spring-boot-starter-parent</artifactId> | ||
17 | <version>1.3.3.RELEASE</version> | ||
18 | <relativePath/> <!-- lookup parent from repository --> | ||
19 | </parent> | ||
20 | |||
21 | <properties> | ||
22 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
23 | <java.version>1.7</java.version> | ||
24 | </properties> | ||
25 | |||
26 | <dependencies> | ||
27 | <dependency> | ||
28 | <groupId>org.springframework.boot</groupId> | ||
29 | <artifactId>spring-boot-starter-data-mongodb</artifactId> | ||
30 | </dependency> | ||
31 | <dependency> | ||
32 | <groupId>org.springframework.boot</groupId> | ||
33 | <artifactId>spring-boot-starter-redis</artifactId> | ||
34 | </dependency> | ||
35 | <dependency> | ||
36 | <groupId>org.springframework.boot</groupId> | ||
37 | <artifactId>spring-boot-starter-web</artifactId> | ||
38 | </dependency> | ||
39 | |||
40 | <dependency> | ||
41 | <groupId>commons-httpclient</groupId> | ||
42 | <artifactId>commons-httpclient</artifactId> | ||
43 | <version>3.1</version> | ||
44 | </dependency> | ||
45 | |||
46 | |||
47 | <dependency> | ||
48 | <groupId>mysql</groupId> | ||
49 | <artifactId>mysql-connector-java</artifactId> | ||
50 | <scope>runtime</scope> | ||
51 | </dependency> | ||
52 | <dependency> | ||
53 | <groupId>org.springframework.boot</groupId> | ||
54 | <artifactId>spring-boot-starter-test</artifactId> | ||
55 | <scope>test</scope> | ||
56 | </dependency> | ||
57 | |||
58 | <dependency> | ||
59 | <groupId>org.json</groupId> | ||
60 | <artifactId>json</artifactId> | ||
61 | <version>20140107</version> | ||
62 | </dependency> | ||
63 | |||
64 | <!-- https://mvnrepository.com/artifact/wsdl4j/wsdl4j --> | ||
65 | <dependency> | ||
66 | <groupId>wsdl4j</groupId> | ||
67 | <artifactId>wsdl4j</artifactId> | ||
68 | <version>1.6.3</version> | ||
69 | </dependency> | ||
70 | |||
71 | |||
72 | <dependency> | ||
73 | <groupId>org.apache.tomcat.embed</groupId> | ||
74 | <artifactId>tomcat-embed-jasper</artifactId> | ||
75 | <scope>provided</scope> | ||
76 | </dependency> | ||
77 | <dependency> | ||
78 | <groupId>javax.servlet</groupId> | ||
79 | <artifactId>jstl</artifactId> | ||
80 | </dependency> | ||
81 | |||
82 | |||
83 | <dependency> | ||
84 | <groupId>org.mybatis.spring.boot</groupId> | ||
85 | <artifactId>mybatis-spring-boot-starter</artifactId> | ||
86 | <version>1.0.0</version> | ||
87 | </dependency> | ||
88 | |||
89 | <dependency> | ||
90 | <groupId>org.springframework.data</groupId> | ||
91 | <artifactId>spring-data-redis</artifactId> | ||
92 | <version>1.5.0.RELEASE</version> | ||
93 | </dependency> | ||
94 | |||
95 | <dependency> | ||
96 | <groupId>org.springframework</groupId> | ||
97 | <artifactId>spring-webmvc-portlet</artifactId> | ||
98 | </dependency> | ||
99 | |||
100 | <dependency> | ||
101 | <groupId>org.tuckey</groupId> | ||
102 | <artifactId>urlrewritefilter</artifactId> | ||
103 | <version>4.0.3</version> | ||
104 | </dependency> | ||
105 | |||
106 | <!--通用Mapper插件--> | ||
107 | <dependency> | ||
108 | <groupId>tk.mybatis</groupId> | ||
109 | <artifactId>mapper</artifactId> | ||
110 | <version>3.3.4</version> | ||
111 | </dependency> | ||
112 | |||
113 | <dependency> | ||
114 | <groupId>org.apache.commons</groupId> | ||
115 | <artifactId>commons-lang3</artifactId> | ||
116 | <version>3.3.2</version> | ||
117 | </dependency> | ||
118 | |||
119 | <dependency> | ||
120 | <groupId>commons-io</groupId> | ||
121 | <artifactId>commons-io</artifactId> | ||
122 | <version>2.1</version> | ||
123 | </dependency> | ||
124 | |||
125 | <dependency> | ||
126 | <groupId>org.apache.wink</groupId> | ||
127 | <artifactId>wink-client</artifactId> | ||
128 | <version>1.3.0</version> | ||
129 | </dependency> | ||
130 | |||
131 | <!-- https://mvnrepository.com/artifact/org.apache.poi/poi --> | ||
132 | <dependency> | ||
133 | <groupId>org.apache.poi</groupId> | ||
134 | <artifactId>poi</artifactId> | ||
135 | <version>3.15</version> | ||
136 | </dependency> | ||
137 | |||
138 | |||
139 | <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml --> | ||
140 | <dependency> | ||
141 | <groupId>org.apache.poi</groupId> | ||
142 | <artifactId>poi-ooxml</artifactId> | ||
143 | <version>3.15</version> | ||
144 | </dependency> | ||
145 | |||
146 | |||
147 | <dependency> | ||
148 | <groupId>dom4j</groupId> | ||
149 | <artifactId>dom4j</artifactId> | ||
150 | <version>1.6.1</version> | ||
151 | </dependency> | ||
152 | |||
153 | |||
154 | <dependency> | ||
155 | <groupId>commons-codec</groupId> | ||
156 | <artifactId>commons-codec</artifactId> | ||
157 | <version>1.9</version> | ||
158 | </dependency> | ||
159 | |||
160 | <dependency> | ||
161 | <groupId>commons-fileupload</groupId> | ||
162 | <artifactId>commons-fileupload</artifactId> | ||
163 | <version>1.2.2</version> | ||
164 | </dependency> | ||
165 | |||
166 | <dependency> | ||
167 | <groupId>javax.mail</groupId> | ||
168 | <artifactId>mail</artifactId> | ||
169 | <version>1.4.1</version> | ||
170 | </dependency> | ||
171 | |||
172 | |||
173 | <dependency> | ||
174 | <groupId>org.springframework.boot</groupId> | ||
175 | <artifactId>spring-boot-starter-jetty</artifactId> | ||
176 | </dependency> | ||
177 | |||
178 | <dependency> | ||
179 | <groupId>org.apache.httpcomponents</groupId> | ||
180 | <artifactId>httpclient</artifactId> | ||
181 | <version>4.4.1</version> | ||
182 | </dependency> | ||
183 | |||
184 | <dependency> | ||
185 | <groupId>net.sf.json-lib</groupId> | ||
186 | <artifactId>json-lib</artifactId> | ||
187 | <version>2.2.3</version> | ||
188 | <classifier>jdk15</classifier> | ||
189 | </dependency> | ||
190 | |||
191 | <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson --> | ||
192 | <dependency> | ||
193 | <groupId>com.google.code.gson</groupId> | ||
194 | <artifactId>gson</artifactId> | ||
195 | <version>2.8.0</version> | ||
196 | </dependency> | ||
197 | |||
198 | |||
199 | <!--<dependency>--> | ||
200 | <!--<groupId>com.csairholiday</groupId>--> | ||
201 | <!--<artifactId>csairholiday</artifactId>--> | ||
202 | <!--<scope>system</scope>--> | ||
203 | <!--<version>1.5</version>--> | ||
204 | <!--<systemPath>${project.basedir}/libs/shdupp-jdk1.5.jar</systemPath>--> | ||
205 | <!--</dependency>--> | ||
206 | |||
207 | |||
208 | |||
209 | |||
210 | |||
211 | </dependencies> | ||
212 | |||
213 | <build> | ||
214 | <plugins> | ||
215 | <plugin> | ||
216 | <groupId>org.springframework.boot</groupId> | ||
217 | <artifactId>spring-boot-maven-plugin</artifactId> | ||
218 | </plugin> | ||
219 | </plugins> | ||
220 | </build> | ||
221 | |||
222 | |||
223 | </project> |
yry_dp/src/main/java/META-INF/MANIFEST.MF
0 → 100644
1 | Manifest-Version: 1.0 | ||
2 | Class-Path: spring-tx-4.2.5.RELEASE.jar websocket-api-9.2.15.v20160210 | ||
3 | .jar spring-boot-starter-1.3.3.RELEASE.jar urlrewritefilter-4.0.3.jar | ||
4 | mybatis-spring-boot-starter-1.0.0.jar spring-boot-starter-jdbc-1.3.3 | ||
5 | .RELEASE.jar tomcat-jdbc-8.0.32.jar javax.websocket-api-1.0.jar valid | ||
6 | ation-api-1.1.0.Final.jar aopalliance-1.0.jar xml-apis-1.0.b2.jar asm | ||
7 | -commons-5.0.1.jar jaxb-impl-2.2.1.1.jar jetty-servlet-9.2.15.v201602 | ||
8 | 10.jar spring-data-mongodb-1.8.4.RELEASE.jar websocket-client-9.2.15. | ||
9 | v20160210.jar jetty-server-9.2.15.v20160210.jar jetty-xml-9.2.15.v201 | ||
10 | 60210.jar javax-websocket-server-impl-9.2.15.v20160210.jar jackson-an | ||
11 | notations-2.6.5.jar commons-codec-1.9.jar mysql-connector-java-5.1.38 | ||
12 | .jar dom4j-1.6.1.jar jetty-util-9.2.15.v20160210.jar commons-pool2-2. | ||
13 | 4.2.jar mongo-java-driver-2.13.3.jar jboss-logging-3.3.0.Final.jar co | ||
14 | mmons-logging-1.0.4.jar h2-1.4.191.jar mybatis-spring-1.2.3.jar jaxb- | ||
15 | api-2.2.jar jetty-jndi-9.2.15.v20160210.jar wink-client-1.3.0.jar hib | ||
16 | ernate-validator-5.2.4.Final.jar websocket-server-9.2.15.v20160210.ja | ||
17 | r log4j-over-slf4j-1.7.16.jar mapper-3.3.4.jar json-20140107.jar tomc | ||
18 | at-embed-core-8.0.32.jar asm-tree-5.0.1.jar spring-context-4.2.5.RELE | ||
19 | ASE.jar jsr311-api-1.1.1.jar spring-aop-4.2.5.RELEASE.jar snakeyaml-1 | ||
20 | .16.jar javax.annotation-api-1.2.jar wink-common-1.3.0.jar commons-io | ||
21 | -2.1.jar jetty-security-9.2.15.v20160210.jar asm-5.0.1.jar logback-cl | ||
22 | assic-1.1.5.jar tomcat-juli-8.0.32.jar classmate-1.1.0.jar jstl-1.2.j | ||
23 | ar spring-boot-starter-data-mongodb-1.3.3.RELEASE.jar spring-beans-4. | ||
24 | 2.5.RELEASE.jar spring-boot-autoconfigure-1.3.3.RELEASE.jar logback-c | ||
25 | ore-1.1.5.jar spring-jdbc-4.2.5.RELEASE.jar slf4j-api-1.7.16.jar comm | ||
26 | ons-lang3-3.3.2.jar jetty-http-9.2.15.v20160210.jar geronimo-annotati | ||
27 | on_1.1_spec-1.0.jar jedis-2.7.3.jar spring-core-4.2.5.RELEASE.jar jet | ||
28 | ty-io-9.2.15.v20160210.jar stax-api-1.0-2.jar spring-boot-starter-web | ||
29 | -1.3.3.RELEASE.jar spring-boot-starter-tomcat-1.3.3.RELEASE.jar jacks | ||
30 | on-databind-2.6.5.jar mybatis-3.3.0.jar commons-httpclient-3.1.jar je | ||
31 | tty-servlets-9.2.15.v20160210.jar jul-to-slf4j-1.7.16.jar javax.servl | ||
32 | et-api-3.1.0.jar jetty-annotations-9.2.15.v20160210.jar jcl-over-slf4 | ||
33 | j-1.7.16.jar activation-1.1.jar jetty-webapp-9.2.15.v20160210.jar spr | ||
34 | ing-boot-starter-validation-1.3.3.RELEASE.jar spring-boot-1.3.3.RELEA | ||
35 | SE.jar jackson-core-2.6.5.jar tomcat-embed-websocket-8.0.32.jar sprin | ||
36 | g-boot-starter-jetty-1.3.3.RELEASE.jar spring-context-support-4.2.5.R | ||
37 | ELEASE.jar spring-webmvc-4.2.5.RELEASE.jar spring-boot-starter-loggin | ||
38 | g-1.3.3.RELEASE.jar tomcat-embed-el-8.0.32.jar commons-fileupload-1.2 | ||
39 | .2.jar jetty-continuation-9.2.15.v20160210.jar spring-webmvc-portlet- | ||
40 | 4.2.5.RELEASE.jar spring-web-4.2.5.RELEASE.jar javax-websocket-client | ||
41 | -impl-9.2.15.v20160210.jar spring-boot-starter-redis-1.3.3.RELEASE.ja | ||
42 | r websocket-servlet-9.2.15.v20160210.jar persistence-api-1.0.jar tomc | ||
43 | at-embed-logging-juli-8.0.32.jar jetty-plus-9.2.15.v20160210.jar spri | ||
44 | ng-data-commons-1.11.4.RELEASE.jar spring-data-redis-1.5.0.RELEASE.ja | ||
45 | r spring-expression-4.2.5.RELEASE.jar websocket-common-9.2.15.v201602 | ||
46 | 10.jar mybatis-spring-boot-autoconfigure-1.0.0.jar | ||
47 | Main-Class: com.example.DemoApplication | ||
48 |
1 | package com.example; | ||
2 | |||
3 | import com.example.filter.CORSFilter; | ||
4 | import org.mybatis.spring.annotation.MapperScan; | ||
5 | import org.slf4j.Logger; | ||
6 | import org.slf4j.LoggerFactory; | ||
7 | import org.springframework.boot.SpringApplication; | ||
8 | import org.springframework.boot.autoconfigure.SpringBootApplication; | ||
9 | import org.springframework.web.bind.annotation.RequestMapping; | ||
10 | import org.springframework.web.bind.annotation.RestController; | ||
11 | import org.springframework.web.servlet.config.annotation.InterceptorRegistry; | ||
12 | import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; | ||
13 | |||
14 | @MapperScan(basePackages = {"com.example.mapper.*"}) | ||
15 | @SpringBootApplication | ||
16 | @RestController | ||
17 | @RequestMapping("/test") | ||
18 | public class DemoApplication extends WebMvcConfigurerAdapter{ | ||
19 | |||
20 | |||
21 | Logger logger = LoggerFactory.getLogger(getClass()); | ||
22 | |||
23 | public static void main(String[] args) { | ||
24 | SpringApplication.run(DemoApplication.class, args); | ||
25 | } | ||
26 | |||
27 | @Override | ||
28 | public void addInterceptors(InterceptorRegistry registry) { | ||
29 | registry.addInterceptor(new CORSFilter()).addPathPatterns("/**"); | ||
30 | } | ||
31 | |||
32 | |||
33 | } |
1 | package com.example.controller.api; | ||
2 | |||
3 | import com.example.service.api.HapiService; | ||
4 | import com.example.support.model.MessageEntity; | ||
5 | import org.springframework.beans.factory.annotation.Autowired; | ||
6 | import org.springframework.web.bind.annotation.RequestMapping; | ||
7 | import org.springframework.web.bind.annotation.RequestParam; | ||
8 | import org.springframework.web.bind.annotation.RestController; | ||
9 | |||
10 | /** | ||
11 | * Created by long on 2017/11/13. | ||
12 | */ | ||
13 | @RestController | ||
14 | @RequestMapping("/marketing/hapi") | ||
15 | public class HapiController { | ||
16 | |||
17 | @Autowired | ||
18 | private HapiService hapiService; | ||
19 | |||
20 | @RequestMapping("/register") | ||
21 | public MessageEntity register(@RequestParam("barcode") String barcode, | ||
22 | @RequestParam("name") String name,@RequestParam("gender") String gender,@RequestParam("birthdayStr") String birthdayStr, | ||
23 | @RequestParam("mobileNumber") String mobileNumber,@RequestParam("samplingDate") String samplingDate, | ||
24 | @RequestParam("recipients") String recipients,@RequestParam("address") String address,@RequestParam("familyDisease") String familyDisease, | ||
25 | @RequestParam("existingDisease") String existingDisease,@RequestParam("weight") Float weight, | ||
26 | @RequestParam("height") Integer height,@RequestParam(value = "remarks",required = false)String remarks){ | ||
27 | return this.hapiService.register(barcode, name, gender, birthdayStr, mobileNumber, samplingDate, recipients, address, familyDisease, existingDisease, weight, height, remarks); | ||
28 | } | ||
29 | |||
30 | @RequestMapping("/genereport") | ||
31 | public MessageEntity genereport(@RequestParam("barcode") String barcode, | ||
32 | @RequestParam("mobileNumber") String mobileNumber){ | ||
33 | return this.hapiService.genereport(barcode, mobileNumber); | ||
34 | } | ||
35 | |||
36 | @RequestMapping("/getbymobile") | ||
37 | public MessageEntity getbymobile( | ||
38 | @RequestParam("mobileNumber") String mobileNumber){ | ||
39 | return this.hapiService.getByMobileNumber(mobileNumber); | ||
40 | } | ||
41 | |||
42 | @RequestMapping("/memberlist") | ||
43 | public MessageEntity memberlist( | ||
44 | @RequestParam(value = "keyWord",required = false) String keyWord, | ||
45 | @RequestParam(value = "status",defaultValue = "0") Integer status, | ||
46 | @RequestParam(value = "page",defaultValue = "1") int page, | ||
47 | @RequestParam(value = "size",defaultValue = "10") int size){ | ||
48 | return this.hapiService.memberList(keyWord, status, page, size); | ||
49 | } | ||
50 | |||
51 | @RequestMapping("/reportbyday") | ||
52 | public MessageEntity reportbyday( | ||
53 | @RequestParam("beginTime") String beginTime,@RequestParam("endTime") String endTime){ | ||
54 | return this.hapiService.reportByDay(beginTime, endTime); | ||
55 | } | ||
56 | |||
57 | @RequestMapping("/reportbymonth") | ||
58 | public MessageEntity reportbymonth( | ||
59 | @RequestParam("beginTime") String beginTime,@RequestParam("endTime") String endTime){ | ||
60 | return this.hapiService.reportByMonth(beginTime, endTime); | ||
61 | } | ||
62 | |||
63 | } |
1 | package com.example.filter; | ||
2 | |||
3 | import org.springframework.web.servlet.handler.HandlerInterceptorAdapter; | ||
4 | |||
5 | import javax.servlet.*; | ||
6 | import javax.servlet.http.HttpServletRequest; | ||
7 | import javax.servlet.http.HttpServletResponse; | ||
8 | import java.io.IOException; | ||
9 | |||
10 | /** | ||
11 | * Created by caobug on 15/7/29. | ||
12 | */ | ||
13 | public class CORSFilter extends HandlerInterceptorAdapter { | ||
14 | |||
15 | |||
16 | @Override | ||
17 | public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) | ||
18 | throws Exception { | ||
19 | response.setHeader("Access-Control-Allow-Origin", "*"); | ||
20 | response.setHeader("Access-Control-Allow-Methods", "POST, GET, OPTIONS, DELETE, HEAD"); | ||
21 | response.setHeader("Access-Control-Max-Age", "3600"); | ||
22 | response.setHeader("Access-Control-Allow-Headers", "Content-Type,X-Requested-With,accept," + | ||
23 | "Origin,Access-Control-Request-Method,Access-Control-Request-Headers,hdp-application-id," + | ||
24 | "hdp-rest-api-key,hdp_wx_user_info_json,wxu_session"); | ||
25 | |||
26 | return super.preHandle(request, response, handler); | ||
27 | } | ||
28 | |||
29 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | package com.example.mapper.api; | ||
2 | |||
3 | import com.example.models.api.MemberInfo; | ||
4 | import com.example.utils.mybatis.pageable.Pageable; | ||
5 | import org.apache.ibatis.annotations.Param; | ||
6 | import java.util.Date; | ||
7 | import java.util.List; | ||
8 | import java.util.Map; | ||
9 | |||
10 | /** | ||
11 | * Created by JA on 17/12/26. | ||
12 | */ | ||
13 | public interface MemberInfoMapper { | ||
14 | boolean create(MemberInfo memberInfo); | ||
15 | |||
16 | MemberInfo getByMobileNumber(@Param("mobileNumber") String mobileNumber); | ||
17 | |||
18 | boolean genereport(@Param("isGenereport") Integer isGenereport, | ||
19 | @Param("genereportAt") Date genereportAt, | ||
20 | @Param("packName") String packName, | ||
21 | @Param("pdfName") String pdfName, | ||
22 | @Param("url") String url, | ||
23 | @Param("genereportName") String genereportName, | ||
24 | @Param("mobileNumber") String mobileNumber); | ||
25 | |||
26 | List<MemberInfo> list(@Param("keyWord") String keyWord,@Param("status") Integer status,@Param("pageable") Pageable pageable); | ||
27 | |||
28 | int count(@Param("keyWord") String keyWord,@Param("status") Integer status); | ||
29 | |||
30 | List<Map<String, Object>> registerByDay(@Param("startTime") String startTime,@Param("endTime") String endTime); | ||
31 | |||
32 | List<Map<String, Object>> genereportByDay(@Param("startTime") String startTime,@Param("endTime") String endTime); | ||
33 | |||
34 | List<Map<String, Object>> registerByMonth(@Param("startTime") String startTime,@Param("endTime") String endTime); | ||
35 | |||
36 | List<Map<String, Object>> genereportByMonth(@Param("startTime") String startTime,@Param("endTime") String endTime); | ||
37 | |||
38 | |||
39 | |||
40 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | package com.example.mapper.log; | ||
2 | |||
3 | import com.example.models.log.HttpLog; | ||
4 | import org.apache.ibatis.annotations.Param; | ||
5 | |||
6 | /** | ||
7 | * Created by JA on 17/3/15. | ||
8 | */ | ||
9 | public interface HttpLogMapper { | ||
10 | |||
11 | boolean create(HttpLog httpLog); | ||
12 | |||
13 | boolean update(@Param("id") Long id,@Param("restful") String restful); | ||
14 | } |
1 | package com.example.models.api; | ||
2 | |||
3 | import java.util.Date; | ||
4 | |||
5 | /** | ||
6 | * Created by long on 2017/11/13. | ||
7 | */ | ||
8 | public class AppStore { | ||
9 | |||
10 | private Long id; | ||
11 | private String app_id; | ||
12 | private String store_key; | ||
13 | private String store_value; | ||
14 | private Date create_at; | ||
15 | |||
16 | public Long getId() { | ||
17 | return id; | ||
18 | } | ||
19 | |||
20 | public void setId(Long id) { | ||
21 | this.id = id; | ||
22 | } | ||
23 | |||
24 | public String getApp_id() { | ||
25 | return app_id; | ||
26 | } | ||
27 | |||
28 | public void setApp_id(String app_id) { | ||
29 | this.app_id = app_id; | ||
30 | } | ||
31 | |||
32 | public String getStore_key() { | ||
33 | return store_key; | ||
34 | } | ||
35 | |||
36 | public void setStore_key(String store_key) { | ||
37 | this.store_key = store_key; | ||
38 | } | ||
39 | |||
40 | public String getStore_value() { | ||
41 | return store_value; | ||
42 | } | ||
43 | |||
44 | public void setStore_value(String store_value) { | ||
45 | this.store_value = store_value; | ||
46 | } | ||
47 | |||
48 | public Date getCreate_at() { | ||
49 | return create_at; | ||
50 | } | ||
51 | |||
52 | public void setCreate_at(Date create_at) { | ||
53 | this.create_at = create_at; | ||
54 | } | ||
55 | } |
1 | package com.example.models.api; | ||
2 | |||
3 | import java.util.Date; | ||
4 | |||
5 | /** | ||
6 | * Created by JA on 17/12/26. | ||
7 | */ | ||
8 | public class MemberInfo { | ||
9 | Long id; | ||
10 | Integer source; | ||
11 | Long timestamp; | ||
12 | String barcode; | ||
13 | Integer channelId; | ||
14 | Integer managerId; | ||
15 | String name; | ||
16 | String gender; | ||
17 | String birthdayStr; | ||
18 | String mobileNumber; | ||
19 | String samplingDate; | ||
20 | String recipients; | ||
21 | String address; | ||
22 | String familyDisease; | ||
23 | String existingDisease; | ||
24 | float weight; | ||
25 | Integer height; | ||
26 | String remarks; | ||
27 | String memberNumber; | ||
28 | Date createAt; | ||
29 | Integer status; | ||
30 | Integer isGenereport; | ||
31 | Date genereportAt; | ||
32 | String packName; | ||
33 | String pdfName; | ||
34 | String url; | ||
35 | String genereportName; | ||
36 | |||
37 | public Long getId() { | ||
38 | return id; | ||
39 | } | ||
40 | |||
41 | public void setId(Long id) { | ||
42 | this.id = id; | ||
43 | } | ||
44 | |||
45 | public Integer getSource() { | ||
46 | return source; | ||
47 | } | ||
48 | |||
49 | public void setSource(Integer source) { | ||
50 | this.source = source; | ||
51 | } | ||
52 | |||
53 | public Long getTimestamp() { | ||
54 | return timestamp; | ||
55 | } | ||
56 | |||
57 | public void setTimestamp(Long timestamp) { | ||
58 | this.timestamp = timestamp; | ||
59 | } | ||
60 | |||
61 | public String getBarcode() { | ||
62 | return barcode; | ||
63 | } | ||
64 | |||
65 | public void setBarcode(String barcode) { | ||
66 | this.barcode = barcode; | ||
67 | } | ||
68 | |||
69 | public Integer getChannelId() { | ||
70 | return channelId; | ||
71 | } | ||
72 | |||
73 | public void setChannelId(Integer channelId) { | ||
74 | this.channelId = channelId; | ||
75 | } | ||
76 | |||
77 | public Integer getManagerId() { | ||
78 | return managerId; | ||
79 | } | ||
80 | |||
81 | public void setManagerId(Integer managerId) { | ||
82 | this.managerId = managerId; | ||
83 | } | ||
84 | |||
85 | public String getName() { | ||
86 | return name; | ||
87 | } | ||
88 | |||
89 | public void setName(String name) { | ||
90 | this.name = name; | ||
91 | } | ||
92 | |||
93 | public String getGender() { | ||
94 | return gender; | ||
95 | } | ||
96 | |||
97 | public void setGender(String gender) { | ||
98 | this.gender = gender; | ||
99 | } | ||
100 | |||
101 | public String getBirthdayStr() { | ||
102 | return birthdayStr; | ||
103 | } | ||
104 | |||
105 | public void setBirthdayStr(String birthdayStr) { | ||
106 | this.birthdayStr = birthdayStr; | ||
107 | } | ||
108 | |||
109 | public String getMobileNumber() { | ||
110 | return mobileNumber; | ||
111 | } | ||
112 | |||
113 | public void setMobileNumber(String mobileNumber) { | ||
114 | this.mobileNumber = mobileNumber; | ||
115 | } | ||
116 | |||
117 | public String getSamplingDate() { | ||
118 | return samplingDate; | ||
119 | } | ||
120 | |||
121 | public void setSamplingDate(String samplingDate) { | ||
122 | this.samplingDate = samplingDate; | ||
123 | } | ||
124 | |||
125 | public String getRecipients() { | ||
126 | return recipients; | ||
127 | } | ||
128 | |||
129 | public void setRecipients(String recipients) { | ||
130 | this.recipients = recipients; | ||
131 | } | ||
132 | |||
133 | public String getAddress() { | ||
134 | return address; | ||
135 | } | ||
136 | |||
137 | public void setAddress(String address) { | ||
138 | this.address = address; | ||
139 | } | ||
140 | |||
141 | public String getFamilyDisease() { | ||
142 | return familyDisease; | ||
143 | } | ||
144 | |||
145 | public void setFamilyDisease(String familyDisease) { | ||
146 | this.familyDisease = familyDisease; | ||
147 | } | ||
148 | |||
149 | public String getExistingDisease() { | ||
150 | return existingDisease; | ||
151 | } | ||
152 | |||
153 | public void setExistingDisease(String existingDisease) { | ||
154 | this.existingDisease = existingDisease; | ||
155 | } | ||
156 | |||
157 | public float getWeight() { | ||
158 | return weight; | ||
159 | } | ||
160 | |||
161 | public void setWeight(float weight) { | ||
162 | this.weight = weight; | ||
163 | } | ||
164 | |||
165 | public Integer getHeight() { | ||
166 | return height; | ||
167 | } | ||
168 | |||
169 | public void setHeight(Integer height) { | ||
170 | this.height = height; | ||
171 | } | ||
172 | |||
173 | public String getRemarks() { | ||
174 | return remarks; | ||
175 | } | ||
176 | |||
177 | public void setRemarks(String remarks) { | ||
178 | this.remarks = remarks; | ||
179 | } | ||
180 | |||
181 | public Date getCreateAt() { | ||
182 | return createAt; | ||
183 | } | ||
184 | |||
185 | public void setCreateAt(Date createAt) { | ||
186 | this.createAt = createAt; | ||
187 | } | ||
188 | |||
189 | public Integer getStatus() { | ||
190 | return status; | ||
191 | } | ||
192 | |||
193 | public void setStatus(Integer status) { | ||
194 | this.status = status; | ||
195 | } | ||
196 | |||
197 | public String getMemberNumber() { | ||
198 | return memberNumber; | ||
199 | } | ||
200 | |||
201 | public void setMemberNumber(String memberNumber) { | ||
202 | this.memberNumber = memberNumber; | ||
203 | } | ||
204 | |||
205 | public Integer getIsGenereport() { | ||
206 | return isGenereport; | ||
207 | } | ||
208 | |||
209 | public void setIsGenereport(Integer isGenereport) { | ||
210 | this.isGenereport = isGenereport; | ||
211 | } | ||
212 | |||
213 | public Date getGenereportAt() { | ||
214 | return genereportAt; | ||
215 | } | ||
216 | |||
217 | public void setGenereportAt(Date genereportAt) { | ||
218 | this.genereportAt = genereportAt; | ||
219 | } | ||
220 | |||
221 | public String getPackName() { | ||
222 | return packName; | ||
223 | } | ||
224 | |||
225 | public void setPackName(String packName) { | ||
226 | this.packName = packName; | ||
227 | } | ||
228 | |||
229 | public String getPdfName() { | ||
230 | return pdfName; | ||
231 | } | ||
232 | |||
233 | public void setPdfName(String pdfName) { | ||
234 | this.pdfName = pdfName; | ||
235 | } | ||
236 | |||
237 | public String getUrl() { | ||
238 | return url; | ||
239 | } | ||
240 | |||
241 | public void setUrl(String url) { | ||
242 | this.url = url; | ||
243 | } | ||
244 | |||
245 | public String getGenereportName() { | ||
246 | return genereportName; | ||
247 | } | ||
248 | |||
249 | public void setGenereportName(String genereportName) { | ||
250 | this.genereportName = genereportName; | ||
251 | } | ||
252 | } |
1 | package com.example.models.log; | ||
2 | |||
3 | import java.util.Date; | ||
4 | |||
5 | /** | ||
6 | * Created by Administrator on 2017/4/1. | ||
7 | */ | ||
8 | public class ExternalRequestLog { | ||
9 | |||
10 | private Long id; | ||
11 | |||
12 | private String app_id; | ||
13 | |||
14 | private String request_url; | ||
15 | |||
16 | private String request_params; | ||
17 | |||
18 | private String response_data; | ||
19 | |||
20 | private Date create_time; | ||
21 | |||
22 | public Long getId() { | ||
23 | return id; | ||
24 | } | ||
25 | |||
26 | public void setId(Long id) { | ||
27 | this.id = id; | ||
28 | } | ||
29 | |||
30 | public String getApp_id() { | ||
31 | return app_id; | ||
32 | } | ||
33 | |||
34 | public void setApp_id(String app_id) { | ||
35 | this.app_id = app_id; | ||
36 | } | ||
37 | |||
38 | public String getRequest_url() { | ||
39 | return request_url; | ||
40 | } | ||
41 | |||
42 | public void setRequest_url(String request_url) { | ||
43 | this.request_url = request_url; | ||
44 | } | ||
45 | |||
46 | public String getRequest_params() { | ||
47 | return request_params; | ||
48 | } | ||
49 | |||
50 | public void setRequest_params(String request_params) { | ||
51 | this.request_params = request_params; | ||
52 | } | ||
53 | |||
54 | public String getResponse_data() { | ||
55 | return response_data; | ||
56 | } | ||
57 | |||
58 | public void setResponse_data(String response_data) { | ||
59 | this.response_data = response_data; | ||
60 | } | ||
61 | |||
62 | public Date getCreate_time() { | ||
63 | return create_time; | ||
64 | } | ||
65 | |||
66 | public void setCreate_time(Date create_time) { | ||
67 | this.create_time = create_time; | ||
68 | } | ||
69 | |||
70 | } |
1 | package com.example.models.log; | ||
2 | |||
3 | import java.util.Date; | ||
4 | |||
5 | /** | ||
6 | * Created by JA on 17/3/15. | ||
7 | */ | ||
8 | public class HttpLog { | ||
9 | private Long id; | ||
10 | |||
11 | private String app_id; | ||
12 | |||
13 | private String url; | ||
14 | |||
15 | private String param; | ||
16 | |||
17 | private String restful; | ||
18 | |||
19 | private Date create_at; | ||
20 | |||
21 | public Long getId() { | ||
22 | return id; | ||
23 | } | ||
24 | |||
25 | public void setId(Long id) { | ||
26 | this.id = id; | ||
27 | } | ||
28 | |||
29 | public String getUrl() { | ||
30 | return url; | ||
31 | } | ||
32 | |||
33 | public void setUrl(String url) { | ||
34 | this.url = url; | ||
35 | } | ||
36 | |||
37 | public String getParam() { | ||
38 | return param; | ||
39 | } | ||
40 | |||
41 | public void setParam(String param) { | ||
42 | this.param = param; | ||
43 | } | ||
44 | |||
45 | public String getRestful() { | ||
46 | return restful; | ||
47 | } | ||
48 | |||
49 | public void setRestful(String restful) { | ||
50 | this.restful = restful; | ||
51 | } | ||
52 | |||
53 | public Date getCreate_at() { | ||
54 | return create_at; | ||
55 | } | ||
56 | |||
57 | public void setCreate_at(Date create_at) { | ||
58 | this.create_at = create_at; | ||
59 | } | ||
60 | |||
61 | public String getApp_id() { | ||
62 | return app_id; | ||
63 | } | ||
64 | |||
65 | public void setApp_id(String app_id) { | ||
66 | this.app_id = app_id; | ||
67 | } | ||
68 | } |
1 | package com.example.service.api; | ||
2 | |||
3 | import com.example.models.api.MemberInfo; | ||
4 | import com.example.support.model.MessageEntity; | ||
5 | |||
6 | import java.util.List; | ||
7 | |||
8 | /** | ||
9 | * Created by long on 2017/11/13. | ||
10 | */ | ||
11 | public interface HapiService { | ||
12 | |||
13 | |||
14 | MessageEntity register(String barcode,String name,String gender,String birthdayStr,String mobileNumber,String samplingDate, | ||
15 | String recipients,String address,String familyDisease,String existingDisease,Float weight,Integer height,String remarks); | ||
16 | |||
17 | MessageEntity getByMobileNumber(String mobileNumber); | ||
18 | |||
19 | MessageEntity genereport(String barcode,String mobileNumber); | ||
20 | |||
21 | MessageEntity reportByDay(String beginTime,String endTime); | ||
22 | |||
23 | MessageEntity reportByMonth(String beginTime,String endTime); | ||
24 | |||
25 | MessageEntity memberList(String keyWord,Integer status,int page,int size); | ||
26 | |||
27 | } |
1 | package com.example.service.api; | ||
2 | |||
3 | import com.example.mapper.api.MemberInfoMapper; | ||
4 | import com.example.models.api.MemberInfo; | ||
5 | import com.example.service.http.HttpPostService; | ||
6 | import com.example.support.model.MessageEntity; | ||
7 | import com.example.utils.md5.MD5Utils; | ||
8 | import com.example.utils.mybatis.pageable.Pageable; | ||
9 | import org.springframework.beans.factory.annotation.Autowired; | ||
10 | import org.springframework.stereotype.Service; | ||
11 | |||
12 | import java.text.ParseException; | ||
13 | import java.text.SimpleDateFormat; | ||
14 | import java.util.*; | ||
15 | |||
16 | /** | ||
17 | * Created by long on 2017/11/13. | ||
18 | */ | ||
19 | @Service | ||
20 | public class HapiServiceImpl implements HapiService { | ||
21 | |||
22 | SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); | ||
23 | |||
24 | SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd"); | ||
25 | SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy-MM"); | ||
26 | |||
27 | private Integer source = 34; | ||
28 | |||
29 | private Integer channelId = 952; | ||
30 | |||
31 | private Integer managerId = 1001490786; | ||
32 | |||
33 | private String key = "HXJYUR"; | ||
34 | |||
35 | private String pgkey = "HXJYRG"; | ||
36 | |||
37 | private String reportType = "pdf"; | ||
38 | |||
39 | private Integer downFlag = 1; | ||
40 | |||
41 | @Autowired | ||
42 | private HttpPostService httpPostService; | ||
43 | |||
44 | @Autowired | ||
45 | private MemberInfoMapper memberInfoMapper; | ||
46 | |||
47 | private static String HOST = "http://www.17jiankang.com"; | ||
48 | |||
49 | private static String REGISTER_URL = "/hxgrm/hapi/v1/genedetection/geneuser/register"; | ||
50 | |||
51 | private static String GENEREPORT_GET_URL = "/hxgrm/hapi/v1/genedetection/genereport/get"; | ||
52 | |||
53 | |||
54 | @Override | ||
55 | public MessageEntity register(String barcode,String name,String gender,String birthdayStr,String mobileNumber,String samplingDate, | ||
56 | String recipients,String address,String familyDisease,String existingDisease,Float weight,Integer height,String remarks) { | ||
57 | long timestamp = new Date().getTime()/1000; | ||
58 | MessageEntity.Builder builder = new MessageEntity.Builder(); | ||
59 | Map<String,Object> paremMap = new HashMap<>(); | ||
60 | paremMap.put("source",source); | ||
61 | paremMap.put("timestamp",timestamp); | ||
62 | String validate = MD5Utils.hash(source+barcode+timestamp+key); | ||
63 | // paremMap.put("validcode",validcode); | ||
64 | // paremMap.put("validkey",validkey); | ||
65 | paremMap.put("barcode",barcode); | ||
66 | paremMap.put("channelId",channelId); | ||
67 | paremMap.put("managerId",managerId); | ||
68 | paremMap.put("name",name); | ||
69 | paremMap.put("gender",gender); | ||
70 | paremMap.put("birthdayStr",birthdayStr); | ||
71 | paremMap.put("mobileNumber",mobileNumber); | ||
72 | paremMap.put("samplingDate",samplingDate); | ||
73 | paremMap.put("recipients",recipients); | ||
74 | paremMap.put("address",address); | ||
75 | paremMap.put("familyDisease",familyDisease); | ||
76 | paremMap.put("existingDisease",existingDisease); | ||
77 | paremMap.put("weight",weight); | ||
78 | paremMap.put("height",height); | ||
79 | paremMap.put("remarks",remarks); | ||
80 | paremMap.put("validate",validate); | ||
81 | String url = HOST + REGISTER_URL; | ||
82 | Map<String, Object> map = this.httpPostService.httpPost(url, paremMap); | ||
83 | if(map.containsKey("ret") && map.get("ret").toString().equals("0") && map.containsKey("uuid")){ | ||
84 | String memberNumber = map.get("uuid") != null ? map.get("uuid").toString() : ""; | ||
85 | MemberInfo memberInfo = new MemberInfo(); | ||
86 | memberInfo.setStatus(1); | ||
87 | memberInfo.setAddress(address); | ||
88 | memberInfo.setBarcode(barcode); | ||
89 | memberInfo.setBirthdayStr(birthdayStr); | ||
90 | memberInfo.setChannelId(channelId); | ||
91 | memberInfo.setCreateAt(new Date()); | ||
92 | memberInfo.setExistingDisease(existingDisease); | ||
93 | memberInfo.setFamilyDisease(familyDisease); | ||
94 | memberInfo.setManagerId(managerId); | ||
95 | memberInfo.setTimestamp(timestamp); | ||
96 | memberInfo.setGender(gender); | ||
97 | memberInfo.setHeight(height); | ||
98 | memberInfo.setMemberNumber(memberNumber); | ||
99 | memberInfo.setMobileNumber(mobileNumber); | ||
100 | memberInfo.setName(name); | ||
101 | memberInfo.setRecipients(recipients); | ||
102 | memberInfo.setRemarks(remarks); | ||
103 | memberInfo.setSource(source); | ||
104 | memberInfo.setSamplingDate(samplingDate); | ||
105 | memberInfo.setWeight(weight); | ||
106 | this.memberInfoMapper.create(memberInfo); | ||
107 | } | ||
108 | return builder.success(true).code("2000").content(map).create(); | ||
109 | } | ||
110 | |||
111 | |||
112 | @Override | ||
113 | public MessageEntity genereport(String barcode,String mobileNumber) { | ||
114 | long timestamp = new Date().getTime()/1000; | ||
115 | MessageEntity.Builder builder = new MessageEntity.Builder(); | ||
116 | Map<String,Object> paremMap = new HashMap<>(); | ||
117 | paremMap.put("source",source); | ||
118 | paremMap.put("timestamp",timestamp); | ||
119 | String validate = MD5Utils.hash(source+barcode+timestamp+pgkey); | ||
120 | // paremMap.put("validcode",validcode); | ||
121 | // paremMap.put("validkey",validkey); | ||
122 | paremMap.put("barcode",barcode); | ||
123 | paremMap.put("channelId",channelId); | ||
124 | paremMap.put("mobileNumber",mobileNumber); | ||
125 | paremMap.put("validate",validate); | ||
126 | paremMap.put("reportType",reportType); | ||
127 | paremMap.put("downFlag",downFlag); | ||
128 | String url = HOST + GENEREPORT_GET_URL; | ||
129 | Map<String, Object> map = this.httpPostService.httpPost(url, paremMap); | ||
130 | if(map.containsKey("ret") && map.get("ret").toString().equals("0")){ | ||
131 | String pdfurl = map.get("url") != null ? map.get("url").toString() : ""; | ||
132 | String name = map.get("name") != null ? map.get("name").toString() : ""; | ||
133 | String packName = map.get("packName") != null ? map.get("packName").toString() : ""; | ||
134 | String pdfName = map.get("pdfName") != null ? map.get("pdfName").toString() : ""; | ||
135 | this.memberInfoMapper.genereport(1,new Date(),packName,pdfName,pdfurl,name,mobileNumber); | ||
136 | } | ||
137 | return builder.success(true).code("2000").content(map).create(); | ||
138 | } | ||
139 | |||
140 | public MessageEntity getByMobileNumber(String mobileNumber){ | ||
141 | MessageEntity.Builder builder = new MessageEntity.Builder(); | ||
142 | MemberInfo memberInfo = this.memberInfoMapper.getByMobileNumber(mobileNumber); | ||
143 | if(memberInfo == null || memberInfo.getId() == 0){ | ||
144 | //账号不存在 | ||
145 | Map<String,Object> map = new HashMap<>(); | ||
146 | map.put("msg","用户信息不存在"); | ||
147 | return builder.success(false).code("9001").content(map).create(); | ||
148 | }else{ | ||
149 | return builder.success(true).code("2000").content(memberInfo).create(); | ||
150 | } | ||
151 | } | ||
152 | |||
153 | public MessageEntity reportByDay(String beginTime,String endTime){ | ||
154 | MessageEntity.Builder builder = new MessageEntity.Builder(); | ||
155 | Map<String,Map<String,Integer>> returnMap = new LinkedHashMap<>(); | ||
156 | beginTime = beginTime + " 00:00:00"; | ||
157 | endTime = endTime + " 23:59:59"; | ||
158 | try { | ||
159 | Date beginDate = this.sdf.parse(beginTime); | ||
160 | Date endDate = this.sdf.parse(endTime); | ||
161 | List<Map<String, Object>> registerMap = this.memberInfoMapper.registerByDay(beginTime, endTime); | ||
162 | List<Map<String, Object>> genereportMap = this.memberInfoMapper.genereportByDay(beginTime, endTime); | ||
163 | List<Date> datesBetweenTwoDate = getDatesBetweenTwoDate(beginDate, endDate); | ||
164 | if(datesBetweenTwoDate != null){ | ||
165 | for(Date d:datesBetweenTwoDate){ | ||
166 | String format = this.sdf1.format(d); | ||
167 | int registerCount = 0; | ||
168 | if(registerMap != null){ | ||
169 | for(Map<String,Object> map:registerMap){ | ||
170 | String md = map.get("d") != null ? map.get("d").toString():""; | ||
171 | if(format.equals(md)){ | ||
172 | registerCount = map.get("c") != null ? Integer.parseInt(map.get("c").toString()):0; | ||
173 | } | ||
174 | } | ||
175 | } | ||
176 | int genereportCount = 0; | ||
177 | if(genereportMap != null){ | ||
178 | for(Map<String,Object> map:genereportMap){ | ||
179 | String md = map.get("d") != null ? map.get("d").toString():""; | ||
180 | if(format.equals(md)){ | ||
181 | genereportCount = map.get("c") != null ? Integer.parseInt(map.get("c").toString()):0; | ||
182 | } | ||
183 | } | ||
184 | } | ||
185 | Map<String,Integer> m = new HashMap<>(); | ||
186 | m.put("registerCount",registerCount); | ||
187 | m.put("genereportCount",genereportCount); | ||
188 | returnMap.put(format,m); | ||
189 | } | ||
190 | } | ||
191 | } catch (ParseException e) { | ||
192 | e.printStackTrace(); | ||
193 | } | ||
194 | return builder.success(true).code("2000").content(returnMap).create(); | ||
195 | } | ||
196 | |||
197 | public MessageEntity reportByMonth(String beginTime,String endTime){ | ||
198 | MessageEntity.Builder builder = new MessageEntity.Builder(); | ||
199 | Map<String,Map<String,Integer>> returnMap = new LinkedHashMap<>(); | ||
200 | beginTime = beginTime + " 00:00:00"; | ||
201 | endTime = endTime + " 23:59:59"; | ||
202 | try { | ||
203 | Date beginDate = this.sdf.parse(beginTime); | ||
204 | Date endDate = this.sdf.parse(endTime); | ||
205 | List<Map<String, Object>> registerMap = this.memberInfoMapper.registerByMonth(beginTime, endTime); | ||
206 | List<Map<String, Object>> genereportMap = this.memberInfoMapper.genereportByMonth(beginTime, endTime); | ||
207 | List<Date> datesBetweenTwoDate = getMonthBetweenTwoDate(beginDate, endDate); | ||
208 | if(datesBetweenTwoDate != null){ | ||
209 | for(Date d:datesBetweenTwoDate){ | ||
210 | String format = this.sdf2.format(d); | ||
211 | int registerCount = 0; | ||
212 | if(registerMap != null){ | ||
213 | for(Map<String,Object> map:registerMap){ | ||
214 | String md = map.get("d") != null ? map.get("d").toString():""; | ||
215 | if(format.equals(md)){ | ||
216 | registerCount = map.get("c") != null ? Integer.parseInt(map.get("c").toString()):0; | ||
217 | } | ||
218 | } | ||
219 | } | ||
220 | int genereportCount = 0; | ||
221 | if(genereportMap != null){ | ||
222 | for(Map<String,Object> map:genereportMap){ | ||
223 | String md = map.get("d") != null ? map.get("d").toString():""; | ||
224 | if(format.equals(md)){ | ||
225 | genereportCount = map.get("c") != null ? Integer.parseInt(map.get("c").toString()):0; | ||
226 | } | ||
227 | } | ||
228 | } | ||
229 | Map<String,Integer> m = new HashMap<>(); | ||
230 | m.put("registerCount",registerCount); | ||
231 | m.put("genereportCount",genereportCount); | ||
232 | returnMap.put(format,m); | ||
233 | } | ||
234 | } | ||
235 | } catch (ParseException e) { | ||
236 | e.printStackTrace(); | ||
237 | } | ||
238 | return builder.success(true).code("2000").content(returnMap).create(); | ||
239 | } | ||
240 | |||
241 | @Override | ||
242 | public MessageEntity memberList(String keyWord,Integer status, int page, int size) { | ||
243 | MessageEntity.Builder builder = new MessageEntity.Builder(); | ||
244 | List<MemberInfo> list = this.memberInfoMapper.list(keyWord, status, new Pageable(page, size)); | ||
245 | int count = this.memberInfoMapper.count(keyWord, status); | ||
246 | Map<String,Object> map = new HashMap<>(); | ||
247 | map.put("list",list); | ||
248 | map.put("count",count); | ||
249 | return builder.success(true).code("2000").content(map).create(); | ||
250 | } | ||
251 | |||
252 | /** | ||
253 | * 根据开始时间和结束时间返回时间段内的时间集合 | ||
254 | * | ||
255 | * @param beginDate | ||
256 | * @param endDate | ||
257 | * @return List | ||
258 | */ | ||
259 | public List<Date> getDatesBetweenTwoDate(Date beginDate, Date endDate) { | ||
260 | List<Date> lDate = new ArrayList<Date>(); | ||
261 | lDate.add(beginDate);// 把开始时间加入集合 | ||
262 | Calendar cal = Calendar.getInstance(); | ||
263 | // 使用给定的 Date 设置此 Calendar 的时间 | ||
264 | cal.setTime(beginDate); | ||
265 | boolean bContinue = true; | ||
266 | while (bContinue) { | ||
267 | // 根据日历的规则,为给定的日历字段添加或减去指定的时间量 | ||
268 | cal.add(Calendar.DAY_OF_MONTH, 1); | ||
269 | // 测试此日期是否在指定日期之后 | ||
270 | if (endDate.after(cal.getTime())) { | ||
271 | lDate.add(cal.getTime()); | ||
272 | } else { | ||
273 | break; | ||
274 | } | ||
275 | } | ||
276 | lDate.add(endDate);// 把结束时间加入集合 | ||
277 | return lDate; | ||
278 | } | ||
279 | |||
280 | /** | ||
281 | * 根据开始时间和结束时间返回时间段内的时间集合 | ||
282 | * | ||
283 | * @param beginDate | ||
284 | * @param endDate | ||
285 | * @return List | ||
286 | */ | ||
287 | public List<Date> getMonthBetweenTwoDate(Date beginDate, Date endDate) { | ||
288 | List<Date> lDate = new ArrayList<Date>(); | ||
289 | lDate.add(beginDate);// 把开始时间加入集合 | ||
290 | Calendar cal = Calendar.getInstance(); | ||
291 | // 使用给定的 Date 设置此 Calendar 的时间 | ||
292 | cal.setTime(beginDate); | ||
293 | boolean bContinue = true; | ||
294 | while (bContinue) { | ||
295 | // 根据日历的规则,为给定的日历字段添加或减去指定的时间量 | ||
296 | cal.add(Calendar.MONTH, 1); | ||
297 | // 测试此日期是否在指定日期之后 | ||
298 | if (endDate.after(cal.getTime())) { | ||
299 | lDate.add(cal.getTime()); | ||
300 | } else { | ||
301 | break; | ||
302 | } | ||
303 | } | ||
304 | lDate.add(endDate);// 把结束时间加入集合 | ||
305 | return lDate; | ||
306 | } | ||
307 | } |
1 | package com.example.service.http; | ||
2 | |||
3 | import org.apache.wink.client.ClientConfig; | ||
4 | |||
5 | import javax.net.ssl.HttpsURLConnection; | ||
6 | import javax.net.ssl.SSLContext; | ||
7 | import javax.net.ssl.TrustManager; | ||
8 | import javax.net.ssl.X509TrustManager; | ||
9 | import java.security.KeyManagementException; | ||
10 | import java.security.NoSuchAlgorithmException; | ||
11 | |||
12 | /** | ||
13 | * Created by caobug on 15/5/12. | ||
14 | */ | ||
15 | public class ClientConfigServiceImpl implements ClientConfigService { | ||
16 | |||
17 | |||
18 | public ClientConfig getClientConfig() { | ||
19 | ClientConfig myConfig = new ClientConfig(); | ||
20 | SSLContext sc; | ||
21 | try { | ||
22 | sc = SSLContext.getInstance("SSL"); | ||
23 | sc.init(null, getTrustManager(), new java.security.SecureRandom()); | ||
24 | } catch (NoSuchAlgorithmException | KeyManagementException e) { | ||
25 | return null; | ||
26 | } | ||
27 | HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory()); | ||
28 | myConfig.setBypassHostnameVerification(true); | ||
29 | myConfig.connectTimeout(100000); | ||
30 | myConfig.readTimeout(100000); | ||
31 | myConfig.followRedirects(false); | ||
32 | return myConfig; | ||
33 | } | ||
34 | |||
35 | private TrustManager[] getTrustManager() { | ||
36 | return new TrustManager[]{new X509TrustManager() { | ||
37 | @Override | ||
38 | public java.security.cert.X509Certificate[] getAcceptedIssuers() { | ||
39 | return null; | ||
40 | } | ||
41 | |||
42 | @Override | ||
43 | public void checkClientTrusted( | ||
44 | java.security.cert.X509Certificate[] certs, String authType) { | ||
45 | } | ||
46 | |||
47 | @Override | ||
48 | public void checkServerTrusted( | ||
49 | java.security.cert.X509Certificate[] certs, String authType) { | ||
50 | } | ||
51 | }}; | ||
52 | } | ||
53 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | package com.example.service.http; | ||
2 | |||
3 | import com.fasterxml.jackson.core.JsonProcessingException; | ||
4 | |||
5 | import java.io.IOException; | ||
6 | import java.util.List; | ||
7 | import java.util.Map; | ||
8 | |||
9 | /** | ||
10 | * Created by Administrator on 2015/10/10-16:56. | ||
11 | * | ||
12 | * 派加积分HTTP POST接口 | ||
13 | */ | ||
14 | public interface HttpPostService { | ||
15 | |||
16 | void httpPostAsync(String url,String app_id, Map<String, Object> postData); | ||
17 | |||
18 | Map<String, Object> httpPost(String url,String app_id, Map<String, Object> postData) throws JsonProcessingException, IOException; | ||
19 | |||
20 | Map<String, Object> httpPostList(String url,String app_id, List<Map<String, Object>> postData) throws JsonProcessingException, IOException; | ||
21 | |||
22 | String httpPostString(String url,String app_id, Map<String, Object> postData); | ||
23 | |||
24 | Map<String, Object> httpGet(String url,String app_id); | ||
25 | |||
26 | Map<String, Object> httpPostForm(String url,String app_id, Map<String, Object> postData); | ||
27 | |||
28 | Map<String, Object> httpForm(String url, Map<String, String> params); | ||
29 | |||
30 | Map<String, Object> httpPost(String url, Map<String, Object> postData); | ||
31 | |||
32 | } |
1 | package com.example.service.http; | ||
2 | |||
3 | import com.example.mapper.log.HttpLogMapper; | ||
4 | import com.example.models.log.HttpLog; | ||
5 | import com.fasterxml.jackson.core.JsonProcessingException; | ||
6 | import com.fasterxml.jackson.core.type.TypeReference; | ||
7 | import com.fasterxml.jackson.databind.ObjectMapper; | ||
8 | import org.apache.wink.client.*; | ||
9 | import org.springframework.beans.factory.annotation.Autowired; | ||
10 | import org.springframework.scheduling.annotation.Async; | ||
11 | import org.springframework.stereotype.Service; | ||
12 | |||
13 | import java.io.IOException; | ||
14 | import java.util.Date; | ||
15 | import java.util.List; | ||
16 | import java.util.Map; | ||
17 | import java.io.BufferedReader; | ||
18 | import java.io.InputStreamReader; | ||
19 | import java.io.OutputStreamWriter; | ||
20 | import java.net.HttpURLConnection; | ||
21 | import java.net.URL; | ||
22 | import java.util.Map.Entry; | ||
23 | |||
24 | /** | ||
25 | * Created by Administrator on 2015/10/10-17:00. | ||
26 | */ | ||
27 | @Service("HttpPostService") | ||
28 | public class HttpPostServiceImpl implements HttpPostService { | ||
29 | |||
30 | @Autowired | ||
31 | private HttpLogMapper httpLogMapper; | ||
32 | |||
33 | private final ClientConfig CONFIG = new ClientConfigServiceImpl().getClientConfig(); | ||
34 | |||
35 | private final ClientConfig ASYNC_CONFIG = new ClientConfigServiceImpl().getClientConfig(); | ||
36 | |||
37 | @Override | ||
38 | @Async | ||
39 | public void httpPostAsync(String url,String app_id, Map<String, Object> postData) { | ||
40 | // logger.debug("http post start [url:{}] [param:{}]", url, postData); | ||
41 | // logger.debug("http post postData:{}", postData); | ||
42 | |||
43 | ObjectMapper objectMapper = new ObjectMapper(); | ||
44 | try { | ||
45 | String postDataString = objectMapper.writeValueAsString(postData); | ||
46 | String responseEntity = post(url, postDataString, ASYNC_CONFIG); | ||
47 | } catch (JsonProcessingException e) { | ||
48 | } catch (ClientRuntimeException e) { | ||
49 | } | ||
50 | } | ||
51 | |||
52 | /** | ||
53 | * | ||
54 | * | ||
55 | * | ||
56 | * @param url 请求的url | ||
57 | * @param postData post的数据 | ||
58 | * @return 请求响应内容(解析后的结果) | ||
59 | */ | ||
60 | @Override | ||
61 | public Map<String, Object> httpPost(String url,String app_id, Map<String, Object> postData) { | ||
62 | // logger.debug("http post start url:{}", url); | ||
63 | // logger.debug("http post postData:{}", postData); | ||
64 | HttpLog httpLog = new HttpLog(); | ||
65 | httpLog.setCreate_at(new Date()); | ||
66 | httpLog.setUrl(url); | ||
67 | ObjectMapper objectMapper = new ObjectMapper(); | ||
68 | Map<String, Object> readValue = null; | ||
69 | try { | ||
70 | String postDataString = objectMapper.writeValueAsString(postData); | ||
71 | httpLog.setParam(postDataString); | ||
72 | httpLog.setApp_id(app_id); | ||
73 | // this.httpLogMapper.create(httpLog); | ||
74 | String responseEntity = post(url, postDataString, CONFIG); | ||
75 | // this.httpLogMapper.update(httpLog.getId(),responseEntity); | ||
76 | readValue = objectMapper.readValue(responseEntity, new TypeReference<Map<String, Object>>() { | ||
77 | }); | ||
78 | } catch (JsonProcessingException e) { | ||
79 | } catch (IOException e) { | ||
80 | } catch (ClientRuntimeException e) { | ||
81 | } | ||
82 | |||
83 | return readValue; | ||
84 | } | ||
85 | |||
86 | /** | ||
87 | * | ||
88 | * | ||
89 | * | ||
90 | * @param url 请求的url | ||
91 | * @param postData post的数据 | ||
92 | * @return 请求响应内容(解析后的结果) | ||
93 | */ | ||
94 | @Override | ||
95 | public Map<String, Object> httpPost(String url, Map<String, Object> postData) { | ||
96 | // logger.debug("http post start url:{}", url); | ||
97 | // logger.debug("http post postData:{}", postData); | ||
98 | HttpLog httpLog = new HttpLog(); | ||
99 | httpLog.setCreate_at(new Date()); | ||
100 | httpLog.setUrl(url); | ||
101 | ObjectMapper objectMapper = new ObjectMapper(); | ||
102 | Map<String, Object> readValue = null; | ||
103 | try { | ||
104 | String postDataString = objectMapper.writeValueAsString(postData); | ||
105 | httpLog.setParam(postDataString); | ||
106 | // this.httpLogMapper.create(httpLog); | ||
107 | String responseEntity = post(url, postData, CONFIG); | ||
108 | // this.httpLogMapper.update(httpLog.getId(),responseEntity); | ||
109 | readValue = objectMapper.readValue(responseEntity, new TypeReference<Map<String, Object>>() { | ||
110 | }); | ||
111 | } catch (JsonProcessingException e) { | ||
112 | } catch (IOException e) { | ||
113 | } catch (ClientRuntimeException e) { | ||
114 | } | ||
115 | |||
116 | return readValue; | ||
117 | } | ||
118 | |||
119 | /** | ||
120 | * | ||
121 | * | ||
122 | * | ||
123 | * @param url 请求的url | ||
124 | * @param postData post的数据 | ||
125 | * @return 请求响应内容(解析后的结果) | ||
126 | */ | ||
127 | @Override | ||
128 | public Map<String, Object> httpPostForm(String url,String app_id, Map<String, Object> postData) { | ||
129 | // logger.debug("http post start url:{}", url); | ||
130 | // logger.debug("http post postData:{}", postData); | ||
131 | HttpLog httpLog = new HttpLog(); | ||
132 | httpLog.setCreate_at(new Date()); | ||
133 | httpLog.setUrl(url); | ||
134 | ObjectMapper objectMapper = new ObjectMapper(); | ||
135 | Map<String, Object> readValue = null; | ||
136 | try { | ||
137 | String postDataString = objectMapper.writeValueAsString(postData); | ||
138 | httpLog.setParam(postDataString); | ||
139 | httpLog.setApp_id(app_id); | ||
140 | // this.httpLogMapper.create(httpLog); | ||
141 | String responseEntity = postForm(url, postDataString, CONFIG); | ||
142 | // this.httpLogMapper.update(httpLog.getId(),responseEntity); | ||
143 | readValue = objectMapper.readValue(responseEntity, new TypeReference<Map<String, Object>>() { | ||
144 | }); | ||
145 | } catch (JsonProcessingException e) { | ||
146 | } catch (IOException e) { | ||
147 | } catch (ClientRuntimeException e) { | ||
148 | } | ||
149 | |||
150 | return readValue; | ||
151 | } | ||
152 | |||
153 | |||
154 | |||
155 | /** | ||
156 | * | ||
157 | * | ||
158 | * | ||
159 | * @param url 请求的url | ||
160 | * @param postData post的数据 | ||
161 | * @return 请求响应内容(解析后的结果) | ||
162 | */ | ||
163 | @Override | ||
164 | public String httpPostString(String url,String app_id, Map<String, Object> postData) { | ||
165 | String responseEntity = null; | ||
166 | try { | ||
167 | responseEntity = postString(url, postData, CONFIG); | ||
168 | } catch (Exception e){ | ||
169 | e.printStackTrace(); | ||
170 | } | ||
171 | |||
172 | return responseEntity; | ||
173 | } | ||
174 | |||
175 | |||
176 | /** | ||
177 | * | ||
178 | * | ||
179 | * | ||
180 | * @param url 请求的url | ||
181 | * @return 请求响应内容(解析后的结果) | ||
182 | */ | ||
183 | @Override | ||
184 | public Map<String, Object> httpGet(String url,String app_id) { | ||
185 | // logger.debug("http post start url:{}", url); | ||
186 | // logger.debug("http post postData:{}", postData); | ||
187 | HttpLog httpLog = new HttpLog(); | ||
188 | httpLog.setCreate_at(new Date()); | ||
189 | httpLog.setUrl(url); | ||
190 | ObjectMapper objectMapper = new ObjectMapper(); | ||
191 | Map<String, Object> readValue = null; | ||
192 | try { | ||
193 | String responseEntity = get(url, CONFIG); | ||
194 | readValue = objectMapper.readValue(responseEntity, new TypeReference<Map<String, Object>>() { | ||
195 | }); | ||
196 | } catch (JsonProcessingException e) { | ||
197 | } catch (IOException e) { | ||
198 | } catch (ClientRuntimeException e) { | ||
199 | } | ||
200 | |||
201 | return readValue; | ||
202 | } | ||
203 | |||
204 | |||
205 | /** | ||
206 | * | ||
207 | * | ||
208 | * | ||
209 | * @param url 请求的url | ||
210 | * @param postData post的数据 | ||
211 | * @return 请求响应内容(解析后的结果) | ||
212 | */ | ||
213 | @Override | ||
214 | public Map<String, Object> httpPostList(String url,String app_id, List<Map<String, Object>> postData) { | ||
215 | // logger.debug("http post start url:{}", url); | ||
216 | // logger.debug("http post postData:{}", postData); | ||
217 | |||
218 | ObjectMapper objectMapper = new ObjectMapper(); | ||
219 | Map<String, Object> readValue = null; | ||
220 | try { | ||
221 | String postDataString = objectMapper.writeValueAsString(postData); | ||
222 | String responseEntity = post(url, postDataString, CONFIG); | ||
223 | readValue = objectMapper.readValue(responseEntity, new TypeReference<Map<String, Object>>() { | ||
224 | }); | ||
225 | } catch (JsonProcessingException e) { | ||
226 | } catch (IOException e) { | ||
227 | } catch (ClientRuntimeException e) { | ||
228 | } | ||
229 | |||
230 | return readValue; | ||
231 | } | ||
232 | |||
233 | private String post(String url, String postParams, ClientConfig config) { | ||
234 | //创建http访问 | ||
235 | Resource resource = new RestClient(config).resource(url); | ||
236 | resource.contentType("application/json;charset=UTF-8"); | ||
237 | ClientResponse response = resource.post(postParams); | ||
238 | String responseEntity = response.getEntity(String.class); | ||
239 | return responseEntity; | ||
240 | } | ||
241 | |||
242 | private String postForm(String url, String postParams, ClientConfig config) { | ||
243 | //创建http访问 | ||
244 | Resource resource = new RestClient(config).resource(url); | ||
245 | resource.contentType("application/x-www-form-urlencoded;charset=UTF-8"); | ||
246 | ClientResponse response = resource.post(postParams); | ||
247 | String responseEntity = response.getEntity(String.class); | ||
248 | return responseEntity; | ||
249 | } | ||
250 | |||
251 | private String post(String url, Map<String, Object> postParams, ClientConfig config) { | ||
252 | String paramsDataString = null; | ||
253 | try { | ||
254 | paramsDataString = new ObjectMapper().writeValueAsString(postParams); | ||
255 | } catch (JsonProcessingException e) { | ||
256 | e.printStackTrace(); | ||
257 | } | ||
258 | |||
259 | /*** 百度地图suggestion的方法之间把应用卡死,可能是这里引起的 **/ | ||
260 | // this.httpAccessLogService.transCreateAccessLog(httpAccessLog); | ||
261 | // 创建http访问 | ||
262 | Resource resource = new RestClient(config).resource(url); | ||
263 | for (String key : postParams.keySet()) { | ||
264 | if (postParams.get(key) != null) { | ||
265 | |||
266 | resource.queryParam(key, postParams.get(key)); | ||
267 | } else { | ||
268 | resource.queryParam(key, ""); | ||
269 | } | ||
270 | } | ||
271 | ClientResponse response = resource.post(null); | ||
272 | String responseEntity = response.getEntity(String.class); | ||
273 | |||
274 | |||
275 | return responseEntity; | ||
276 | } | ||
277 | |||
278 | |||
279 | private String get(String url, ClientConfig config) { | ||
280 | //创建http访问 | ||
281 | Resource resource = new RestClient(config).resource(url); | ||
282 | ClientResponse response = resource.get(); | ||
283 | String responseEntity = response.getEntity(String.class); | ||
284 | return responseEntity; | ||
285 | } | ||
286 | |||
287 | |||
288 | |||
289 | private String postString(String url, Map<String,Object> postParams, ClientConfig config) { | ||
290 | //创建http访问 | ||
291 | Resource resource = new RestClient(config).resource(url); | ||
292 | if(postParams != null){ | ||
293 | for(String key:postParams.keySet()){ | ||
294 | resource.queryParam(key,postParams.get(key)); | ||
295 | } | ||
296 | } | ||
297 | ClientResponse response = resource.post(null); | ||
298 | String responseEntity = response.getEntity(String.class); | ||
299 | return responseEntity; | ||
300 | } | ||
301 | |||
302 | |||
303 | public Map<String, Object> httpForm(String url, Map<String, String> params) { | ||
304 | URL u = null; | ||
305 | HttpURLConnection con = null; | ||
306 | // 构建请求参数 | ||
307 | StringBuffer sb = new StringBuffer(); | ||
308 | if (params != null) { | ||
309 | for (Entry<String, String> e : params.entrySet()) { | ||
310 | sb.append(e.getKey()); | ||
311 | sb.append("="); | ||
312 | sb.append(e.getValue()); | ||
313 | sb.append("&"); | ||
314 | } | ||
315 | sb.substring(0, sb.length() - 1); | ||
316 | } | ||
317 | System.out.println("send_url:" + url); | ||
318 | System.out.println("send_data:" + sb.toString()); | ||
319 | // 尝试发送请求 | ||
320 | try { | ||
321 | u = new URL(url); | ||
322 | con = (HttpURLConnection) u.openConnection(); | ||
323 | //// POST 只能为大写,严格限制,post会不识别 | ||
324 | con.setRequestMethod("POST"); | ||
325 | con.setDoOutput(true); | ||
326 | con.setDoInput(true); | ||
327 | con.setUseCaches(false); | ||
328 | con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); | ||
329 | OutputStreamWriter osw = new OutputStreamWriter(con.getOutputStream(), "UTF-8"); | ||
330 | osw.write(sb.toString()); | ||
331 | osw.flush(); | ||
332 | osw.close(); | ||
333 | } catch (Exception e) { | ||
334 | e.printStackTrace(); | ||
335 | } finally { | ||
336 | if (con != null) { | ||
337 | con.disconnect(); | ||
338 | } | ||
339 | } | ||
340 | |||
341 | // 读取返回内容 | ||
342 | StringBuffer buffer = new StringBuffer(); | ||
343 | try { | ||
344 | //一定要有返回值,否则无法把请求发送给server端。 | ||
345 | BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream(), "UTF-8")); | ||
346 | String temp; | ||
347 | while ((temp = br.readLine()) != null) { | ||
348 | buffer.append(temp); | ||
349 | buffer.append("\n"); | ||
350 | } | ||
351 | } catch (Exception e) { | ||
352 | e.printStackTrace(); | ||
353 | } | ||
354 | |||
355 | ObjectMapper objectMapper = new ObjectMapper(); | ||
356 | Map<String, Object> readValue = null; | ||
357 | try { | ||
358 | readValue = objectMapper.readValue(buffer.toString(), new TypeReference<Map<String, Object>>() { | ||
359 | }); | ||
360 | } catch (JsonProcessingException e) { | ||
361 | } catch (IOException e) { | ||
362 | } catch (ClientRuntimeException e) { | ||
363 | } | ||
364 | return readValue; | ||
365 | } | ||
366 | |||
367 | } |
1 | package com.example.support.model; | ||
2 | |||
3 | import org.apache.commons.lang3.RandomStringUtils; | ||
4 | |||
5 | import javax.servlet.http.HttpServletRequest; | ||
6 | import java.io.Serializable; | ||
7 | |||
8 | /** | ||
9 | * 响应的消息实体,使用例子如下: | ||
10 | * | ||
11 | * @FormToken(produce = true) | ||
12 | * @ResponseBody | ||
13 | * @RequestMapping(value = "/create/test", method = RequestMethod.GET) | ||
14 | * public Object test(HttpServletRequest request) throws JsonProcessingException { | ||
15 | * Object map = new HashMap<>(); | ||
16 | * map.put("redirect", "http://www.baidu.com/"); | ||
17 | * return new MessageEntity.Builder(request).code(MessageCodeEnum.ALREADY_EXISTS). | ||
18 | * msg("账户已存在").content(map).success(false).create(); | ||
19 | * } | ||
20 | * <p/> | ||
21 | * 构造对此对象时,消息不传时会默认初始化一些值。以下键值对左边表示属性,右边表示默认值:requestId=null, msg=null, seccuess=false | ||
22 | * , code=0, content=null,而resubmitToken已内置在构造器中,无需担忧默认为空。通常该值是从 SESSION 中取,为了防止TOKEN 重复提交功能生效, | ||
23 | * 请勿自定义resubmitToken值。正确的做法是传入request | ||
24 | */ | ||
25 | public class MessageEntity implements Serializable { | ||
26 | |||
27 | private static final long serialVersionUID = 5165069341805388402L; | ||
28 | |||
29 | private final String msg; // 消息 | ||
30 | private final boolean success; // 操作成功与否 | ||
31 | private final String resubmitToken; // post token | ||
32 | private final String code; // 状态码 | ||
33 | private final Object content; // 内容主体 | ||
34 | |||
35 | /** | ||
36 | * 请选构造 MessageEntity.Builder 对象 | ||
37 | * | ||
38 | * @param builder | ||
39 | */ | ||
40 | public MessageEntity(Builder builder) { | ||
41 | this.msg = builder.msg; | ||
42 | this.success = builder.success; | ||
43 | this.resubmitToken = builder.resubmitToken; | ||
44 | this.code = builder.code; | ||
45 | this.content = builder.content; | ||
46 | } | ||
47 | |||
48 | public String getMsg() { | ||
49 | return msg; | ||
50 | } | ||
51 | |||
52 | public boolean isSuccess() { | ||
53 | return success; | ||
54 | } | ||
55 | |||
56 | public String getResubmitToken() { | ||
57 | return resubmitToken; | ||
58 | } | ||
59 | |||
60 | public String getCode() { | ||
61 | return code; | ||
62 | } | ||
63 | |||
64 | public Object getContent() { | ||
65 | return content; | ||
66 | } | ||
67 | |||
68 | @Override | ||
69 | public String toString() { | ||
70 | return "MessageEntity{" + | ||
71 | ", msg='" + msg + '\'' + | ||
72 | ", success=" + success + | ||
73 | ", resubmitToken='" + resubmitToken + '\'' + | ||
74 | ", code=" + code + | ||
75 | ", content=" + content + | ||
76 | '}'; | ||
77 | } | ||
78 | |||
79 | public static class Builder { | ||
80 | private final String resubmitToken; // post token | ||
81 | private String msg; // 消息 | ||
82 | private boolean success; // 操作成功与否 | ||
83 | private String code; // 状态码 | ||
84 | private Object content; // 内容主体 | ||
85 | |||
86 | /** | ||
87 | * 新 token | ||
88 | * | ||
89 | * @param request | ||
90 | */ | ||
91 | public Builder(HttpServletRequest request) { | ||
92 | if (null != request) { | ||
93 | this.resubmitToken = getToken(); | ||
94 | // request.getSession().setAttribute(FormTokenInterceptor.TOKEN_NAME, this.resubmitToken); | ||
95 | } else { | ||
96 | this.resubmitToken = null; | ||
97 | } | ||
98 | } | ||
99 | |||
100 | /** | ||
101 | * 新 token | ||
102 | * | ||
103 | */ | ||
104 | public Builder() { | ||
105 | this.resubmitToken = null; | ||
106 | } | ||
107 | |||
108 | /** | ||
109 | * 消息,需要解决国际化问题 | ||
110 | * | ||
111 | * @param msg | ||
112 | * @return | ||
113 | */ | ||
114 | public Builder msg(String msg) { | ||
115 | this.msg = msg; | ||
116 | return this; | ||
117 | } | ||
118 | |||
119 | /** | ||
120 | * 是否成功 | ||
121 | * | ||
122 | * @param success | ||
123 | * @return | ||
124 | */ | ||
125 | public Builder success(boolean success) { | ||
126 | this.success = success; | ||
127 | return this; | ||
128 | } | ||
129 | |||
130 | public Builder code(String code) { | ||
131 | this.code = code; | ||
132 | return this; | ||
133 | } | ||
134 | |||
135 | /** | ||
136 | * 消息主体,根据前端需求构造 | ||
137 | * | ||
138 | * @param content | ||
139 | * @return | ||
140 | */ | ||
141 | public Builder content(Object content) { | ||
142 | this.content = content; | ||
143 | return this; | ||
144 | } | ||
145 | |||
146 | public MessageEntity create() { | ||
147 | return new MessageEntity(this); | ||
148 | } | ||
149 | |||
150 | public String getToken() { | ||
151 | return RandomStringUtils.random(32, 'a', 'b', 'c', 'd', 'e', 'f', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'); | ||
152 | } | ||
153 | } | ||
154 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | package com.example.support.model; | ||
2 | |||
3 | /** | ||
4 | */ | ||
5 | public class UriEntity { | ||
6 | |||
7 | private String uri; | ||
8 | |||
9 | public UriEntity(String uri) { | ||
10 | this.uri = uri; | ||
11 | } | ||
12 | |||
13 | public String getUri() { | ||
14 | return uri; | ||
15 | } | ||
16 | |||
17 | public void setUri(String uri) { | ||
18 | this.uri = uri; | ||
19 | } | ||
20 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | package com.example.utils; | ||
2 | |||
3 | import org.apache.commons.lang3.StringUtils; | ||
4 | |||
5 | import java.text.ParseException; | ||
6 | import java.text.SimpleDateFormat; | ||
7 | import java.util.ArrayList; | ||
8 | import java.util.Calendar; | ||
9 | import java.util.Date; | ||
10 | import java.util.List; | ||
11 | |||
12 | /** | ||
13 | * Created by long on 2017/8/28. | ||
14 | */ | ||
15 | public class DateFormatUtils { | ||
16 | |||
17 | //时间格式:yyyy-MM-dd HH:mm:ss | ||
18 | private static String DEFAULT_FORMAT = "yyyy-MM-dd HH:mm:ss"; | ||
19 | |||
20 | /** | ||
21 | * 将时间转换为对应格式 | ||
22 | * @param date : 时间 | ||
23 | * @param format : 格式 | ||
24 | * @return | ||
25 | */ | ||
26 | public static String getStrByFormat(Date date, String format){ | ||
27 | if(StringUtils.isBlank(format)){ | ||
28 | format = DEFAULT_FORMAT; | ||
29 | } | ||
30 | SimpleDateFormat sdf = new SimpleDateFormat(format); | ||
31 | return sdf.format(date); | ||
32 | } | ||
33 | |||
34 | /** | ||
35 | * 通过时间字符串和格式获取时间戳 | ||
36 | * @param str : 时间字符串 | ||
37 | * @param format : 格式 | ||
38 | * @return | ||
39 | */ | ||
40 | public static Long getTimeByFormat(String str, String format){ | ||
41 | try { | ||
42 | if(StringUtils.isBlank(format)){ | ||
43 | format = DEFAULT_FORMAT; | ||
44 | } | ||
45 | SimpleDateFormat sdf = new SimpleDateFormat(format); | ||
46 | Date parse = sdf.parse(str); | ||
47 | return parse.getTime(); | ||
48 | } catch (ParseException e) { | ||
49 | // e.printStackTrace(); | ||
50 | } | ||
51 | return null; | ||
52 | } | ||
53 | |||
54 | /** | ||
55 | * 通过时间字符串和格式获取时间对象 | ||
56 | * @param str : 时间字符串 | ||
57 | * @param format : 格式 | ||
58 | * @return | ||
59 | */ | ||
60 | public static Date getDateByFormat(String str, String format){ | ||
61 | try { | ||
62 | if(StringUtils.isBlank(format)){ | ||
63 | format = DEFAULT_FORMAT; | ||
64 | } | ||
65 | SimpleDateFormat sdf = new SimpleDateFormat(format); | ||
66 | return sdf.parse(str); | ||
67 | } catch (ParseException e) { | ||
68 | // e.printStackTrace(); | ||
69 | } | ||
70 | return null; | ||
71 | } | ||
72 | |||
73 | /** | ||
74 | * 获取N天内的时间 | ||
75 | * @param now | ||
76 | * @param n 正数表示在条件时间n天之后,负数表示在条件时间n天之前 | ||
77 | * @return | ||
78 | */ | ||
79 | public static Date getBelongDay(Date now, int n){ | ||
80 | Calendar calendar = Calendar.getInstance(); //得到日历 | ||
81 | calendar.setTime(now);//把当前时间赋给日历 | ||
82 | calendar.add(Calendar.DAY_OF_MONTH, n); | ||
83 | return calendar.getTime(); | ||
84 | } | ||
85 | |||
86 | /** | ||
87 | * 获取N月内的时间 | ||
88 | * @param now | ||
89 | * @param n 正数表示在条件时间n月之后,负数表示在条件时间n月之前 | ||
90 | * @return | ||
91 | */ | ||
92 | public static Date getBelongMonth(Date now, int n){ | ||
93 | Calendar calendar = Calendar.getInstance(); //得到日历 | ||
94 | calendar.setTime(now);//把当前时间赋给日历 | ||
95 | calendar.add(Calendar.MONTH, n); | ||
96 | return calendar.getTime(); | ||
97 | } | ||
98 | |||
99 | /** | ||
100 | * 根据开始时间和结束时间返回时间段内的时间集合 | ||
101 | * | ||
102 | * @param beginDate | ||
103 | * @param endDate | ||
104 | * @return List | ||
105 | */ | ||
106 | public static List<Date> getDatesBetweenTwoDate(Date beginDate, Date endDate) { | ||
107 | List<Date> lDate = new ArrayList<Date>(); | ||
108 | lDate.add(beginDate);// 把开始时间加入集合 | ||
109 | Calendar cal = Calendar.getInstance(); | ||
110 | // 使用给定的 Date 设置此 Calendar 的时间 | ||
111 | cal.setTime(beginDate); | ||
112 | boolean bContinue = true; | ||
113 | while (bContinue) { | ||
114 | // 根据日历的规则,为给定的日历字段添加或减去指定的时间量 | ||
115 | cal.add(Calendar.DAY_OF_MONTH, 1); | ||
116 | // 测试此日期是否在指定日期之后 | ||
117 | if (endDate.after(cal.getTime())) { | ||
118 | lDate.add(cal.getTime()); | ||
119 | } else { | ||
120 | break; | ||
121 | } | ||
122 | } | ||
123 | lDate.add(endDate);// 把结束时间加入集合 | ||
124 | return lDate; | ||
125 | } | ||
126 | |||
127 | //正式变负数 | ||
128 | public static int unAbs(int a) { | ||
129 | return (a > 0) ? -a : a; | ||
130 | } | ||
131 | |||
132 | } |
1 | package com.example.utils; | ||
2 | |||
3 | import java.util.UUID; | ||
4 | |||
5 | /** | ||
6 | * Created by Administrator on 2017/4/20. | ||
7 | */ | ||
8 | public class RandomStringUtils extends org.apache.commons.lang3.RandomStringUtils { | ||
9 | |||
10 | public static final String ARTICLE_KEY_ALPHABET = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; | ||
11 | |||
12 | public static String getString() { | ||
13 | return UUID.randomUUID().toString().replace("-", ""); | ||
14 | } | ||
15 | |||
16 | /** | ||
17 | * 根据字母表生成指定位数随机字符串 | ||
18 | * | ||
19 | * @param length 随机长度 | ||
20 | * @return 随机字符串 | ||
21 | */ | ||
22 | public static String getString(int length) { | ||
23 | return random(length, ARTICLE_KEY_ALPHABET); | ||
24 | } | ||
25 | |||
26 | } |
1 | package com.example.utils; | ||
2 | |||
3 | import sun.misc.BASE64Encoder; | ||
4 | |||
5 | import javax.imageio.ImageIO; | ||
6 | import java.awt.*; | ||
7 | import java.awt.image.BufferedImage; | ||
8 | import java.io.ByteArrayOutputStream; | ||
9 | import java.io.FileOutputStream; | ||
10 | import java.io.IOException; | ||
11 | import java.io.OutputStream; | ||
12 | import java.util.Random; | ||
13 | |||
14 | /** | ||
15 | * Created by JA on 17/4/19. | ||
16 | */ | ||
17 | public class ValidateCode { | ||
18 | |||
19 | // 图片的宽度。 | ||
20 | private int width = 160; | ||
21 | // 图片的高度。 | ||
22 | private int height = 40; | ||
23 | // 验证码字符个数 | ||
24 | private int codeCount = 5; | ||
25 | // 验证码干扰线数 | ||
26 | private int lineCount = 150; | ||
27 | // 验证码 | ||
28 | private String code = null; | ||
29 | // 验证码图片Buffer | ||
30 | private BufferedImage buffImg = null; | ||
31 | |||
32 | // 验证码范围,去掉0(数字)和O(拼音)容易混淆的(小写的1和L也可以去掉,大写不用了) | ||
33 | private char[] codeSequence = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', | ||
34 | 'K', 'L', 'M', 'N', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', | ||
35 | 'X', 'Y', 'Z', '1', '2', '3', '4', '5', '6', '7', '8', '9'}; | ||
36 | |||
37 | /** | ||
38 | * 默认构造函数,设置默认参数 | ||
39 | */ | ||
40 | public ValidateCode() { | ||
41 | this.createCode(); | ||
42 | } | ||
43 | |||
44 | /** | ||
45 | * @param width 图片宽 | ||
46 | * @param height 图片高 | ||
47 | */ | ||
48 | public ValidateCode(int width, int height) { | ||
49 | this.width = width; | ||
50 | this.height = height; | ||
51 | this.createCode(); | ||
52 | } | ||
53 | |||
54 | /** | ||
55 | * @param width 图片宽 | ||
56 | * @param height 图片高 | ||
57 | * @param codeCount 字符个数 | ||
58 | * @param lineCount 干扰线条数 | ||
59 | */ | ||
60 | public ValidateCode(int width, int height, int codeCount, int lineCount) { | ||
61 | this.width = width; | ||
62 | this.height = height; | ||
63 | this.codeCount = codeCount; | ||
64 | this.lineCount = lineCount; | ||
65 | this.createCode(); | ||
66 | } | ||
67 | |||
68 | public void createCode() { | ||
69 | int x = 0, fontHeight = 0, codeY = 0; | ||
70 | int red = 0, green = 0, blue = 0; | ||
71 | |||
72 | x = width / (codeCount + 2);//每个字符的宽度(左右各空出一个字符) | ||
73 | fontHeight = height - 2;//字体的高度 | ||
74 | codeY = height - 4; | ||
75 | |||
76 | // 图像buffer | ||
77 | buffImg = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); | ||
78 | Graphics2D g = buffImg.createGraphics(); | ||
79 | // 生成随机数 | ||
80 | Random random = new Random(); | ||
81 | // 将图像填充为白色 | ||
82 | g.setColor(Color.WHITE); | ||
83 | g.fillRect(0, 0, width, height); | ||
84 | // 创建字体,可以修改为其它的 | ||
85 | Font font = new Font("Fixedsys", Font.PLAIN, fontHeight); | ||
86 | // Font font = new Font("Times New Roman", Font.ROMAN_BASELINE, fontHeight); | ||
87 | g.setFont(font); | ||
88 | |||
89 | for (int i = 0; i < lineCount; i++) { | ||
90 | // 设置随机开始和结束坐标 | ||
91 | int xs = random.nextInt(width);//x坐标开始 | ||
92 | int ys = random.nextInt(height);//y坐标开始 | ||
93 | int xe = xs + random.nextInt(width / 8);//x坐标结束 | ||
94 | int ye = ys + random.nextInt(height / 8);//y坐标结束 | ||
95 | |||
96 | // 产生随机的颜色值,让输出的每个干扰线的颜色值都将不同。 | ||
97 | red = random.nextInt(255); | ||
98 | green = random.nextInt(255); | ||
99 | blue = random.nextInt(255); | ||
100 | g.setColor(new Color(red, green, blue)); | ||
101 | g.drawLine(xs, ys, xe, ye); | ||
102 | } | ||
103 | |||
104 | // randomCode记录随机产生的验证码 | ||
105 | StringBuffer randomCode = new StringBuffer(); | ||
106 | // 随机产生codeCount个字符的验证码。 | ||
107 | for (int i = 0; i < codeCount; i++) { | ||
108 | String strRand = String.valueOf(codeSequence[random.nextInt(codeSequence.length)]); | ||
109 | // 产生随机的颜色值,让输出的每个字符的颜色值都将不同。 | ||
110 | red = random.nextInt(255); | ||
111 | green = random.nextInt(255); | ||
112 | blue = random.nextInt(255); | ||
113 | g.setColor(new Color(red, green, blue)); | ||
114 | g.drawString(strRand, (i + 1) * x, codeY); | ||
115 | // 将产生的四个随机数组合在一起。 | ||
116 | randomCode.append(strRand); | ||
117 | } | ||
118 | // 将四位数字的验证码保存到Session中。 | ||
119 | code = randomCode.toString(); | ||
120 | } | ||
121 | |||
122 | // public void write(String path) throws IOException { | ||
123 | // OutputStream sos = new FileOutputStream(path); | ||
124 | // this.write(sos); | ||
125 | // } | ||
126 | |||
127 | public String getBASE64() throws IOException { | ||
128 | // ImageIO.write(buffImg, "png", sos); | ||
129 | // sos.close(); | ||
130 | String imageString = null; | ||
131 | ByteArrayOutputStream bos = new ByteArrayOutputStream(); | ||
132 | try { | ||
133 | ImageIO.write(buffImg, "png", bos); | ||
134 | byte[] imageBytes = bos.toByteArray(); | ||
135 | BASE64Encoder encoder = new BASE64Encoder(); | ||
136 | imageString = encoder.encode(imageBytes); | ||
137 | bos.close(); | ||
138 | } catch (IOException e) { | ||
139 | e.printStackTrace(); | ||
140 | } | ||
141 | return imageString; | ||
142 | } | ||
143 | |||
144 | public BufferedImage getBuffImg() { | ||
145 | return buffImg; | ||
146 | } | ||
147 | |||
148 | public String getCode() { | ||
149 | return code; | ||
150 | } | ||
151 | |||
152 | |||
153 | } |
1 | package com.example.utils.check; | ||
2 | |||
3 | import javax.servlet.http.HttpServletRequest; | ||
4 | |||
5 | /** | ||
6 | * Created by Administrator on 2017/4/1. | ||
7 | */ | ||
8 | public class CheckRefererUtils { | ||
9 | |||
10 | public static boolean checkReferer(HttpServletRequest request){ | ||
11 | return true; | ||
12 | |||
13 | // String referer = request.getHeader("REFERER"); | ||
14 | // String host = "lucky.csair.com"; | ||
15 | // | ||
16 | // System.out.println("开始校验 referer:"+referer); | ||
17 | // if(referer == null || referer.indexOf(host) < 0){ | ||
18 | // System.out.println("referer错误 referer:"+referer); | ||
19 | // return false; | ||
20 | // } | ||
21 | // return true; | ||
22 | } | ||
23 | |||
24 | } |
1 | package com.example.utils.dun; | ||
2 | |||
3 | import java.util.HashMap; | ||
4 | import java.util.Map; | ||
5 | |||
6 | import com.example.utils.dun.CheckResult; | ||
7 | import com.google.gson.JsonObject; | ||
8 | import com.google.gson.JsonParser; | ||
9 | import com.example.utils.dun.utils.HttpClient4Utils; | ||
10 | import com.example.utils.dun.utils.SignatureUtils; | ||
11 | |||
12 | public abstract class AbstProtectionChecker { | ||
13 | |||
14 | private String apiUrl; | ||
15 | |||
16 | private String secretId; | ||
17 | |||
18 | private String secretKey; | ||
19 | |||
20 | private String businessId; | ||
21 | |||
22 | protected String getApiUrl() { | ||
23 | return apiUrl; | ||
24 | } | ||
25 | |||
26 | protected String getSecretId() { | ||
27 | return secretId; | ||
28 | } | ||
29 | |||
30 | protected String getSecretKey() { | ||
31 | return secretKey; | ||
32 | } | ||
33 | |||
34 | protected String getBusinessId() { | ||
35 | return businessId; | ||
36 | } | ||
37 | |||
38 | protected AbstProtectionChecker(String apiUrl, String secretId, String secretKey, String businessId) { | ||
39 | this.apiUrl = apiUrl; | ||
40 | this.secretId = secretId; | ||
41 | this.secretKey = secretKey; | ||
42 | this.businessId = businessId; | ||
43 | } | ||
44 | |||
45 | private CheckResult check(Map<String, String> params) { | ||
46 | try { | ||
47 | String response = HttpClient4Utils.sendPost(this.apiUrl, params); | ||
48 | System.out.println(response); | ||
49 | // 解析响应 | ||
50 | JsonObject jObject = new JsonParser().parse(response).getAsJsonObject(); | ||
51 | int code = jObject.get("code").getAsInt(); | ||
52 | String msg = jObject.get("msg").getAsString(); | ||
53 | if (code == 200) { | ||
54 | // code==200说明接口正常 | ||
55 | JsonObject dataObject = jObject.getAsJsonObject("result"); | ||
56 | int action = dataObject.get("action").getAsInt(); | ||
57 | if (action == 0) { | ||
58 | return CheckResult.NORMAL; | ||
59 | } else if (action == 10) { | ||
60 | return CheckResult.SUSPECT; | ||
61 | } else if (action == 20) { | ||
62 | return CheckResult.FATAL; | ||
63 | } | ||
64 | } else { | ||
65 | // 接口调用出现错误 | ||
66 | // 请根据错误码 和 错误消息判断原因 | ||
67 | System.err.println(String.format("ERROR: code=%d, msg=%s", code, msg)); | ||
68 | } | ||
69 | } catch (Exception e) { | ||
70 | // log | ||
71 | System.out.println("接口调用异常(超时 等),当作[正常]处理"); | ||
72 | } | ||
73 | |||
74 | return CheckResult.NORMAL; | ||
75 | } | ||
76 | |||
77 | /** | ||
78 | * 通过token查询结果 | ||
79 | * | ||
80 | * @param token 前端提交的查询token | ||
81 | * @param businessParams 业务数据 | ||
82 | * @return | ||
83 | * @throws Exception | ||
84 | */ | ||
85 | public CheckResult check(String token, Map<String, String> businessParams) throws Exception { | ||
86 | Map<String, String> params = new HashMap<String, String>(); | ||
87 | |||
88 | params.put("version", "v1"); | ||
89 | params.put("secretId", getSecretId()); | ||
90 | params.put("businessId", getBusinessId()); | ||
91 | params.put("timestamp", System.currentTimeMillis() / 1000 + ""); | ||
92 | params.put("nonce", Math.random() + ""); | ||
93 | params.put("token", token); | ||
94 | |||
95 | if (businessParams != null) { | ||
96 | params.putAll(businessParams); | ||
97 | } | ||
98 | |||
99 | // 生成签名,参见签名过程的示例代码 | ||
100 | params.put("signature", SignatureUtils.genSignature(getSecretKey(), params)); | ||
101 | |||
102 | return check(params); | ||
103 | } | ||
104 | |||
105 | } |
1 | package com.example.utils.dun; | ||
2 | |||
3 | public class ActivityProtectionChecker extends AbstProtectionChecker { | ||
4 | |||
5 | /** | ||
6 | * 活动反作弊检测接口地址 | ||
7 | */ | ||
8 | private static final String API_URL = "https://ac.dun.163yun.com/v1/activity/check"; | ||
9 | |||
10 | /** | ||
11 | * | ||
12 | * @param secretId 产品密钥ID | ||
13 | * @param secretKey 产品私有密钥,服务端生成签名信息使用,请严格保管,避免泄露 | ||
14 | * @param businessId 业务ID,易盾根据产品业务特点分配 | ||
15 | */ | ||
16 | public ActivityProtectionChecker(String secretId, String secretKey, String businessId) { | ||
17 | super(API_URL, secretId, secretKey, businessId); | ||
18 | } | ||
19 | } |
1 | package com.example.utils.dun.utils; | ||
2 | |||
3 | import java.io.IOException; | ||
4 | import java.nio.charset.Charset; | ||
5 | import java.util.ArrayList; | ||
6 | import java.util.Iterator; | ||
7 | import java.util.List; | ||
8 | import java.util.Map; | ||
9 | |||
10 | import org.apache.http.NameValuePair; | ||
11 | import org.apache.http.client.HttpClient; | ||
12 | import org.apache.http.client.config.RequestConfig; | ||
13 | import org.apache.http.client.entity.UrlEncodedFormEntity; | ||
14 | import org.apache.http.client.methods.CloseableHttpResponse; | ||
15 | import org.apache.http.client.methods.HttpPost; | ||
16 | import org.apache.http.impl.client.CloseableHttpClient; | ||
17 | import org.apache.http.impl.client.HttpClients; | ||
18 | import org.apache.http.impl.conn.PoolingHttpClientConnectionManager; | ||
19 | import org.apache.http.message.BasicNameValuePair; | ||
20 | import org.apache.http.util.EntityUtils; | ||
21 | |||
22 | public class HttpClient4Utils { | ||
23 | private static HttpClient defaultClient = createHttpClient(20, 20, 5000, 5000, 3000); | ||
24 | |||
25 | /** | ||
26 | * 实例化HttpClient | ||
27 | * | ||
28 | * @param maxTotal | ||
29 | * @param maxPerRoute | ||
30 | * @param socketTimeout | ||
31 | * @param connectTimeout | ||
32 | * @param connectionRequestTimeout | ||
33 | * @return | ||
34 | */ | ||
35 | public static HttpClient createHttpClient(int maxTotal, int maxPerRoute, int socketTimeout, int connectTimeout, | ||
36 | int connectionRequestTimeout) { | ||
37 | RequestConfig defaultRequestConfig = RequestConfig.custom().setSocketTimeout(socketTimeout) | ||
38 | .setConnectTimeout(connectTimeout).setConnectionRequestTimeout(connectionRequestTimeout).build(); | ||
39 | PoolingHttpClientConnectionManager cm = new PoolingHttpClientConnectionManager(); | ||
40 | cm.setMaxTotal(maxTotal); | ||
41 | cm.setDefaultMaxPerRoute(maxPerRoute); | ||
42 | CloseableHttpClient httpClient = HttpClients.custom().setConnectionManager(cm) | ||
43 | .setDefaultRequestConfig(defaultRequestConfig).build(); | ||
44 | return httpClient; | ||
45 | } | ||
46 | |||
47 | /** | ||
48 | * 发送post请求 | ||
49 | * | ||
50 | * @param httpClient | ||
51 | * @param url 请求地址 | ||
52 | * @param params 请求参数 | ||
53 | * @param encoding 编码 | ||
54 | * @return | ||
55 | */ | ||
56 | public static String sendPost(HttpClient httpClient, String url, Map<String, String> params, Charset encoding) { | ||
57 | String resp = ""; | ||
58 | HttpPost httpPost = new HttpPost(url); | ||
59 | if (params != null && params.size() > 0) { | ||
60 | List<NameValuePair> formParams = new ArrayList<NameValuePair>(); | ||
61 | Iterator<Map.Entry<String, String>> itr = params.entrySet().iterator(); | ||
62 | while (itr.hasNext()) { | ||
63 | Map.Entry<String, String> entry = itr.next(); | ||
64 | formParams.add(new BasicNameValuePair(entry.getKey(), entry.getValue())); | ||
65 | } | ||
66 | UrlEncodedFormEntity postEntity = new UrlEncodedFormEntity(formParams, encoding); | ||
67 | httpPost.setEntity(postEntity); | ||
68 | } | ||
69 | CloseableHttpResponse response = null; | ||
70 | try { | ||
71 | response = (CloseableHttpResponse) httpClient.execute(httpPost); | ||
72 | resp = EntityUtils.toString(response.getEntity(), encoding); | ||
73 | } catch (Exception e) { | ||
74 | // log | ||
75 | e.printStackTrace(); | ||
76 | } finally { | ||
77 | if (response != null) { | ||
78 | try { | ||
79 | response.close(); | ||
80 | } catch (IOException e) { | ||
81 | // log | ||
82 | e.printStackTrace(); | ||
83 | } | ||
84 | } | ||
85 | } | ||
86 | return resp; | ||
87 | } | ||
88 | |||
89 | /** | ||
90 | * 发送post请求 | ||
91 | * @param url 请求地址 | ||
92 | * @param params 请求参数 | ||
93 | * @return | ||
94 | */ | ||
95 | public static String sendPost(String url, Map<String, String> params) { | ||
96 | Charset encoding = Charset.forName("utf8"); | ||
97 | return sendPost(defaultClient, url, params, encoding); | ||
98 | } | ||
99 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | package com.example.utils.dun.utils; | ||
2 | |||
3 | import java.io.UnsupportedEncodingException; | ||
4 | import java.util.Arrays; | ||
5 | import java.util.Map; | ||
6 | |||
7 | import org.apache.commons.codec.digest.DigestUtils; | ||
8 | |||
9 | public class SignatureUtils { | ||
10 | |||
11 | /** | ||
12 | * 生成签名信息 | ||
13 | * @param secretKey 产品私钥 | ||
14 | * @param params 接口请求参数名和参数值map,不包括signature参数名 | ||
15 | * @return | ||
16 | * @throws UnsupportedEncodingException | ||
17 | */ | ||
18 | public static String genSignature(String secretKey, Map<String, String> params) throws UnsupportedEncodingException { | ||
19 | // 1. 参数名按照ASCII码表升序排序 | ||
20 | String[] keys = params.keySet().toArray(new String[0]); | ||
21 | Arrays.sort(keys); | ||
22 | |||
23 | // 2. 按照排序拼接参数名与参数值 | ||
24 | StringBuffer paramBuffer = new StringBuffer(); | ||
25 | for (String key : keys) { | ||
26 | paramBuffer.append(key).append(params.get(key) == null ? "" : params.get(key)); | ||
27 | } | ||
28 | // 3. 将secretKey拼接到最后 | ||
29 | paramBuffer.append(secretKey); | ||
30 | |||
31 | // 4. MD5是128位长度的摘要算法,用16进制表示,一个十六进制的字符能表示4个位,所以签名后的字符串长度固定为32个十六进制字符。 | ||
32 | return DigestUtils.md5Hex(paramBuffer.toString().getBytes("UTF-8")); | ||
33 | } | ||
34 | |||
35 | } |
1 | package com.example.utils.email; | ||
2 | |||
3 | import javax.mail.Authenticator; | ||
4 | import javax.mail.PasswordAuthentication; | ||
5 | |||
6 | /** | ||
7 | * Created by JA on 17/4/6. | ||
8 | */ | ||
9 | public class Authentication extends Authenticator { | ||
10 | String username=null; | ||
11 | String password=null; | ||
12 | |||
13 | public Authentication(){ | ||
14 | } | ||
15 | public Authentication(String username, String password) { | ||
16 | this.username = username; | ||
17 | this.password = password; | ||
18 | } | ||
19 | protected PasswordAuthentication getPasswordAuthentication(){ | ||
20 | PasswordAuthentication pa = new PasswordAuthentication(username, password); | ||
21 | return pa; | ||
22 | } | ||
23 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | package com.example.utils.email; | ||
2 | import org.apache.commons.lang3.StringUtils; | ||
3 | |||
4 | import javax.activation.DataHandler; | ||
5 | import javax.activation.FileDataSource; | ||
6 | import javax.mail.*; | ||
7 | import javax.mail.internet.*; | ||
8 | import java.io.UnsupportedEncodingException; | ||
9 | import java.util.Date; | ||
10 | import java.util.Properties; | ||
11 | |||
12 | /** | ||
13 | * 邮件发送工具类 | ||
14 | */ | ||
15 | public class SendMailUtil { | ||
16 | /** | ||
17 | * 邮件发送的方法 | ||
18 | * | ||
19 | * @param to 收件人 | ||
20 | * @param subject 主题 | ||
21 | * @param content 内容 | ||
22 | * @param smtp 协议 | ||
23 | * @param host 发送服务器服务器 | ||
24 | * @param sendName 邮件发送人 | ||
25 | * @param sendPort 邮件发送人端口 | ||
26 | * @param userName 邮件发送人名 | ||
27 | * @param userPwd 邮件发送人密码 | ||
28 | * @return 成功或失败 | ||
29 | */ | ||
30 | public static boolean send(String to, String subject, String content,String nickname, String smtp, String host, | ||
31 | String sendName, String sendPort, String userName, String userPwd) { | ||
32 | |||
33 | // 第一步:创建Session | ||
34 | Properties props = new Properties(); | ||
35 | // 指定邮件的传输协议,smtp(Simple Mail Transfer Protocol 简单的邮件传输协议) | ||
36 | props.put("mail.transport.protocol", smtp); | ||
37 | // 指定邮件发送服务器服务器 "smtp.qq.com" | ||
38 | props.put("mail.host", host); | ||
39 | // 指定邮件的发送人(您用来发送邮件的服务器,比如您的163\sina等邮箱) | ||
40 | props.put("mail.from", sendName); | ||
41 | if (true) { | ||
42 | props.put("mail.smtp.starttls.enable", "true"); | ||
43 | props.put("mail.smtp.socketFactory.fallback", "false"); | ||
44 | props.put("mail.smtp.socketFactory.port", sendPort); | ||
45 | } | ||
46 | props.put("mail.smtp.auth", "true"); | ||
47 | Authentication authentication = new Authentication(userName, userPwd); | ||
48 | Session session = Session.getDefaultInstance(props, authentication); | ||
49 | |||
50 | // 开启调试模式 | ||
51 | session.setDebug(true); | ||
52 | try { | ||
53 | // 第二步:获取邮件发送对象 | ||
54 | Transport transport = session.getTransport(); | ||
55 | // 连接邮件服务器,链接您的163、sina邮箱,用户名(不带@163.com,登录邮箱的邮箱账号,不是邮箱地址)、密码 | ||
56 | transport.connect(userName, userPwd); | ||
57 | Address toAddress = new InternetAddress(to); | ||
58 | |||
59 | // 第三步:创建邮件消息体 | ||
60 | MimeMessage message = new MimeMessage(session); | ||
61 | MimeMultipart multipart = new MimeMultipart("related"); | ||
62 | //设置自定义发件人昵称 | ||
63 | String nick=""; | ||
64 | try { | ||
65 | nick=javax.mail.internet.MimeUtility.encodeText(nickname); | ||
66 | } catch (UnsupportedEncodingException e) { | ||
67 | e.printStackTrace(); | ||
68 | } | ||
69 | // message.setFrom(new InternetAddress(nick+" <"+sendName+">")); | ||
70 | //设置发信人 | ||
71 | message.setFrom(new InternetAddress(sendName)); | ||
72 | BodyPart messageBodyPart = new MimeBodyPart(); | ||
73 | messageBodyPart.setContent(content, "text/html;charset=utf-8"); | ||
74 | // 邮件的主题 | ||
75 | message.setSubject(subject); | ||
76 | //收件人 | ||
77 | message.addRecipient(Message.RecipientType.TO, toAddress); | ||
78 | /*//抄送人 | ||
79 | Address ccAddress = new InternetAddress("first.lady@whitehouse.gov"); | ||
80 | message.addRecipient(Message.RecipientType.CC, ccAddress);*/ | ||
81 | multipart.addBodyPart(messageBodyPart); | ||
82 | // 邮件的内容 | ||
83 | message.setContent(multipart); | ||
84 | // 邮件发送时间 | ||
85 | message.setSentDate(new Date()); | ||
86 | |||
87 | // 第四步:发送邮件 | ||
88 | // 第一个参数:邮件的消息体 | ||
89 | // 第二个参数:邮件的接收人,多个接收人用逗号隔开(test1@163.com,test2@sina.com) | ||
90 | transport.sendMessage(message, InternetAddress.parse(to)); | ||
91 | return true; | ||
92 | } catch (Exception e) { | ||
93 | e.printStackTrace(); | ||
94 | } | ||
95 | return false; | ||
96 | } | ||
97 | /** | ||
98 | * 邮件发送的方法,带附件 | ||
99 | * | ||
100 | * @param to 收件人, 多个Email以英文逗号分隔 | ||
101 | * @param cc 抄送, 多个Email以英文逗号分隔 | ||
102 | * @param subject 主题 | ||
103 | * @param content 内容 | ||
104 | * @param smtp 协议 | ||
105 | * @param host 发送服务器服务器 | ||
106 | * @param sendName 邮件发送人 | ||
107 | * @param sendPort 邮件发送人端口 | ||
108 | * @param userName 邮件发送人名 | ||
109 | * @param userPwd 邮件发送人密码 | ||
110 | * @param files 附件 (路径+文件名) | ||
111 | * @return 成功或失败 | ||
112 | */ | ||
113 | public static boolean sendMail(String to, String cc, String subject, String content,String nickname, String smtp, | ||
114 | String host, String sendName, String sendPort, String userName, | ||
115 | String userPwd, String[] files) { | ||
116 | System.out.println("cc:" + cc); | ||
117 | // 第一步:创建Session | ||
118 | Properties props = new Properties(); | ||
119 | // 指定邮件的传输协议,smtp(Simple Mail Transfer Protocol 简单的邮件传输协议) | ||
120 | props.put("mail.transport.protocol", smtp); | ||
121 | // 指定邮件发送服务器服务器 "smtp.qq.com" | ||
122 | props.put("mail.host", host); | ||
123 | // 指定邮件的发送人(您用来发送邮件的服务器,比如您的163\sina等邮箱) | ||
124 | props.put("mail.from", sendName); | ||
125 | if (true) { | ||
126 | props.put("mail.smtp.starttls.enable", "true"); | ||
127 | props.put("mail.smtp.socketFactory.fallback", "false"); | ||
128 | props.put("mail.smtp.socketFactory.port", sendPort); | ||
129 | } | ||
130 | props.put("mail.smtp.auth", "true"); | ||
131 | Authentication authentication = new Authentication(userName, userPwd); | ||
132 | Session session = Session.getDefaultInstance(props, authentication); | ||
133 | |||
134 | // 开启调试模式 | ||
135 | session.setDebug(true); | ||
136 | try { | ||
137 | // 第二步:获取邮件发送对象 | ||
138 | Transport transport = session.getTransport(); | ||
139 | // 连接邮件服务器,链接您的163、sina邮箱,用户名(不带@163.com,登录邮箱的邮箱账号,不是邮箱地址)、密码 | ||
140 | transport.connect(userName, userPwd); | ||
141 | // Address toAddress = new InternetAddress(to); | ||
142 | |||
143 | // 第三步:创建邮件消息体 | ||
144 | MimeMessage message = new MimeMessage(session); | ||
145 | MimeMultipart multipart = new MimeMultipart("related"); | ||
146 | //设置自定义发件人昵称 | ||
147 | String nick=""; | ||
148 | try { | ||
149 | nick=javax.mail.internet.MimeUtility.encodeText(nickname); | ||
150 | } catch (UnsupportedEncodingException e) { | ||
151 | e.printStackTrace(); | ||
152 | } | ||
153 | message.setFrom(new InternetAddress(nick+" <"+sendName+">")); | ||
154 | //设置发信人 | ||
155 | // message.setFrom(new InternetAddress(sendName)); | ||
156 | BodyPart messageBodyPart = new MimeBodyPart(); | ||
157 | messageBodyPart.setContent(content, "text/html;charset=utf-8"); | ||
158 | // 邮件的主题 | ||
159 | message.setSubject(subject); | ||
160 | //收件人 | ||
161 | message.addRecipients(Message.RecipientType.TO, InternetAddress.parse(to)); | ||
162 | //抄送人 | ||
163 | if(StringUtils.isNotBlank(cc)){ | ||
164 | // Address ccAddress = new InternetAddress(cc); | ||
165 | message.addRecipients(Message.RecipientType.CC, InternetAddress.parse(cc)); | ||
166 | } | ||
167 | multipart.addBodyPart(messageBodyPart); | ||
168 | // 邮件的内容 | ||
169 | message.setContent(multipart); | ||
170 | // 邮件发送时间 | ||
171 | message.setSentDate(new Date()); | ||
172 | |||
173 | /*添加附件*/ | ||
174 | if(files != null){ | ||
175 | for (String file : files) { | ||
176 | MimeBodyPart bp = new MimeBodyPart(); | ||
177 | FileDataSource fileds = new FileDataSource(file); | ||
178 | bp.setDataHandler(new DataHandler(fileds)); | ||
179 | bp.setFileName(MimeUtility.encodeText(fileds.getName(), "UTF-8", "B")); | ||
180 | multipart.addBodyPart(bp); | ||
181 | } | ||
182 | } | ||
183 | |||
184 | |||
185 | // 第四步:发送邮件 | ||
186 | // 第一个参数:邮件的消息体 | ||
187 | // 第二个参数:邮件的接收人,多个接收人用逗号隔开(test1@163.com,test2@sina.com) | ||
188 | transport.sendMessage(message, InternetAddress.parse(to)); | ||
189 | // transport.sendMessage(message, InternetAddress.parse(cc)); | ||
190 | return true; | ||
191 | } catch (Exception e) { | ||
192 | e.printStackTrace(); | ||
193 | } | ||
194 | return false; | ||
195 | } | ||
196 | |||
197 | } | ||
198 |
1 | package com.example.utils.file; | ||
2 | |||
3 | import org.springframework.web.multipart.MultipartFile; | ||
4 | import sun.misc.BASE64Decoder; | ||
5 | |||
6 | import java.io.*; | ||
7 | import java.text.SimpleDateFormat; | ||
8 | import java.util.Date; | ||
9 | import java.util.UUID; | ||
10 | |||
11 | /** | ||
12 | * Created by JA on 17/7/3. | ||
13 | */ | ||
14 | |||
15 | public class DefaultFileUpload { | ||
16 | |||
17 | |||
18 | |||
19 | /** | ||
20 | * 快速上传,等同于调用另外一个uplaod方法 | ||
21 | * | ||
22 | * @param file MultipartFile 对象,不能为空 | ||
23 | * @return FileUploadInfo | ||
24 | */ | ||
25 | public static FileUploadInfo directUpload(String home, MultipartFile file) { | ||
26 | return new DefaultFileUpload().upload(home,file); | ||
27 | } | ||
28 | |||
29 | |||
30 | public FileUploadInfo upload(String home,MultipartFile file) { | ||
31 | try { | ||
32 | InputStream inputStream = file.getInputStream(); | ||
33 | String savePath = home; | ||
34 | String originFileName = file.getOriginalFilename(); | ||
35 | String suffix = FileType.getSuffixByFilename(originFileName); | ||
36 | String url = savePath + "/" + getRandomString() + suffix; | ||
37 | File filePath = new File(url); | ||
38 | |||
39 | File parentFile = filePath.getParentFile(); | ||
40 | if (!parentFile.exists()) { | ||
41 | parentFile.mkdirs(); // create dirs | ||
42 | } | ||
43 | // filePath.createNewFile(); | ||
44 | inputstreamtofile(inputStream,filePath); | ||
45 | // file.transferTo(filePath); | ||
46 | return new FileUploadInfo(true, originFileName, file.getSize(), url.replace(home, ""), suffix); | ||
47 | } catch (IOException e) { | ||
48 | e.printStackTrace(); | ||
49 | // logger.error("file upload fail!", e); | ||
50 | FileUploadInfo fileUploadInfo = new FileUploadInfo(false, null, 0, null, null); | ||
51 | fileUploadInfo.setStateMsg(e.getMessage()); | ||
52 | return fileUploadInfo; | ||
53 | } | ||
54 | } | ||
55 | |||
56 | public FileUploadInfo uploadBase64(String home,String base64) { | ||
57 | try { | ||
58 | BASE64Decoder decoder = new BASE64Decoder(); | ||
59 | String savePath = home; | ||
60 | String suffix = base64.substring(base64.indexOf('/') + 1, base64.indexOf(';')); | ||
61 | String str1 = base64.split(",")[1]; | ||
62 | base64 = str1; | ||
63 | String url = savePath + "/" + getRandomString()+"." + suffix; | ||
64 | // File filePath = new File(url); | ||
65 | // filePath.createNewFile(); | ||
66 | //对字节数组字符串进行Base64解码并生成图片 | ||
67 | if (base64 == null){ | ||
68 | FileUploadInfo fileUploadInfo = new FileUploadInfo(false, null, 0, null, null); | ||
69 | fileUploadInfo.setStateMsg(""); | ||
70 | return fileUploadInfo; | ||
71 | } | ||
72 | //Base64解码 | ||
73 | byte[] bytes = decoder.decodeBuffer(base64); | ||
74 | OutputStream out = new FileOutputStream(url); | ||
75 | out.write(bytes); | ||
76 | out.flush(); | ||
77 | out.close(); | ||
78 | // file.transferTo(filePath); | ||
79 | return new FileUploadInfo(true, "", 0, url.replace(home, ""), suffix); | ||
80 | } catch (Exception e) { | ||
81 | e.printStackTrace(); | ||
82 | // logger.error("file upload fail!", e); | ||
83 | FileUploadInfo fileUploadInfo = new FileUploadInfo(false, null, 0, null, null); | ||
84 | fileUploadInfo.setStateMsg(e.getMessage()); | ||
85 | return fileUploadInfo; | ||
86 | } | ||
87 | } | ||
88 | |||
89 | public static void inputstreamtofile(InputStream ins,File file) { | ||
90 | try { | ||
91 | OutputStream os = new FileOutputStream(file); | ||
92 | int bytesRead = 0; | ||
93 | byte[] buffer = new byte[8192]; | ||
94 | while ((bytesRead = ins.read(buffer, 0, 8192)) != -1) { | ||
95 | os.write(buffer, 0, bytesRead); | ||
96 | } | ||
97 | os.close(); | ||
98 | ins.close(); | ||
99 | } catch (Exception e) { | ||
100 | e.printStackTrace(); | ||
101 | } | ||
102 | } | ||
103 | |||
104 | private String getDateTime(String format) { | ||
105 | SimpleDateFormat simpleDateFormat = new SimpleDateFormat(format); | ||
106 | return simpleDateFormat.format(new Date()); | ||
107 | } | ||
108 | |||
109 | private String getRandomString() { | ||
110 | return UUID.randomUUID().toString().replace("-", ""); | ||
111 | } | ||
112 | |||
113 | |||
114 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | package com.example.utils.file; | ||
2 | |||
3 | import java.util.HashMap; | ||
4 | import java.util.Map; | ||
5 | |||
6 | /** | ||
7 | * Created by caobug on 15/5/22. | ||
8 | */ | ||
9 | public class FileType { | ||
10 | |||
11 | public static final String JPG = "JPG"; | ||
12 | |||
13 | private static final Map<String, String> types = new HashMap<String, String>() {{ | ||
14 | put(FileType.JPG, ".jpg"); | ||
15 | }}; | ||
16 | |||
17 | public static String getSuffix(String key) { | ||
18 | return FileType.types.get(key); | ||
19 | } | ||
20 | |||
21 | /** | ||
22 | * 根据给定的文件名,获取其后缀信息 | ||
23 | * | ||
24 | * @param filename | ||
25 | * @return | ||
26 | */ | ||
27 | public static String getSuffixByFilename(String filename) { | ||
28 | return filename.substring(filename.lastIndexOf(".")).toLowerCase(); | ||
29 | } | ||
30 | |||
31 | /** | ||
32 | * 根据给定的文件名,获取文件类型 | ||
33 | * | ||
34 | * @param filename | ||
35 | * @return | ||
36 | */ | ||
37 | public static String getFileType(String filename) { | ||
38 | return filename.substring(filename.lastIndexOf(".") + 1).toLowerCase(); | ||
39 | } | ||
40 | } |
1 | package com.example.utils.file; | ||
2 | |||
3 | /** | ||
4 | * Created by JA on 17/7/3. | ||
5 | */ | ||
6 | |||
7 | /** | ||
8 | * 文件上传信息 | ||
9 | * <p/> | ||
10 | * Created by caobug on 15/5/22. | ||
11 | */ | ||
12 | public class FileUploadInfo { | ||
13 | |||
14 | private boolean state; // 上传状态 | ||
15 | private String stateMsg;// 状态消息 | ||
16 | private String originalName; // 原始文件名 | ||
17 | private long size; // 文件大小 | ||
18 | private String url; // 文件保存路径 | ||
19 | private String suffix; // 后缀 | ||
20 | |||
21 | public FileUploadInfo(boolean state, String originalName, long size, String url, String suffix) { | ||
22 | this.state = state; | ||
23 | this.originalName = originalName; | ||
24 | this.size = size; | ||
25 | this.url = url; | ||
26 | this.suffix = suffix; | ||
27 | } | ||
28 | |||
29 | public boolean isState() { | ||
30 | return state; | ||
31 | } | ||
32 | |||
33 | public void setState(boolean state) { | ||
34 | this.state = state; | ||
35 | } | ||
36 | |||
37 | public String getOriginalName() { | ||
38 | return originalName; | ||
39 | } | ||
40 | |||
41 | public void setOriginalName(String originalName) { | ||
42 | this.originalName = originalName; | ||
43 | } | ||
44 | |||
45 | public long getSize() { | ||
46 | return size; | ||
47 | } | ||
48 | |||
49 | public void setSize(long size) { | ||
50 | this.size = size; | ||
51 | } | ||
52 | |||
53 | public String getUrl() { | ||
54 | return url; | ||
55 | } | ||
56 | |||
57 | public void setUrl(String url) { | ||
58 | this.url = url; | ||
59 | } | ||
60 | |||
61 | public String getSuffix() { | ||
62 | return suffix; | ||
63 | } | ||
64 | |||
65 | public void setSuffix(String suffix) { | ||
66 | this.suffix = suffix; | ||
67 | } | ||
68 | |||
69 | public String getStateMsg() { | ||
70 | return stateMsg; | ||
71 | } | ||
72 | |||
73 | public void setStateMsg(String stateMsg) { | ||
74 | this.stateMsg = stateMsg; | ||
75 | } | ||
76 | } |
1 | package com.example.utils.md5; | ||
2 | |||
3 | import java.io.File; | ||
4 | import java.io.FileInputStream; | ||
5 | import java.io.FileNotFoundException; | ||
6 | import java.io.IOException; | ||
7 | import java.math.BigInteger; | ||
8 | import java.nio.MappedByteBuffer; | ||
9 | import java.nio.channels.FileChannel; | ||
10 | import java.security.MessageDigest; | ||
11 | |||
12 | |||
13 | |||
14 | /** | ||
15 | * Created by caobug on 14/11/20. | ||
16 | */ | ||
17 | public class MD5Utils { | ||
18 | |||
19 | public static String hash(String str) { | ||
20 | try { | ||
21 | java.security.MessageDigest md = java.security.MessageDigest.getInstance("MD5"); | ||
22 | byte[] array = md.digest(str.getBytes()); | ||
23 | StringBuilder sb = new StringBuilder(); | ||
24 | for (byte anArray : array) { | ||
25 | sb.append(Integer.toHexString((anArray & 0xFF) | 0x100).substring(1, 3)); | ||
26 | } | ||
27 | return sb.toString(); | ||
28 | } catch (java.security.NoSuchAlgorithmException ignored) { | ||
29 | } | ||
30 | return ""; | ||
31 | } | ||
32 | |||
33 | private static String byteArrayToHexString(byte b[]) { | ||
34 | StringBuffer resultSb = new StringBuffer(); | ||
35 | for (int i = 0; i < b.length; i++) | ||
36 | resultSb.append(byteToHexString(b[i])); | ||
37 | |||
38 | return resultSb.toString(); | ||
39 | } | ||
40 | |||
41 | private static String byteToHexString(byte b) { | ||
42 | int n = b; | ||
43 | if (n < 0) | ||
44 | n += 256; | ||
45 | int d1 = n / 16; | ||
46 | int d2 = n % 16; | ||
47 | return hexDigits[d1] + hexDigits[d2]; | ||
48 | } | ||
49 | |||
50 | public static String MD5Encode(String origin, String charsetname) { | ||
51 | String resultString = null; | ||
52 | try { | ||
53 | resultString = new String(origin); | ||
54 | MessageDigest md = MessageDigest.getInstance("MD5"); | ||
55 | if (charsetname == null || "".equals(charsetname)) | ||
56 | resultString = byteArrayToHexString(md.digest(resultString | ||
57 | .getBytes())); | ||
58 | else | ||
59 | resultString = byteArrayToHexString(md.digest(resultString | ||
60 | .getBytes(charsetname))); | ||
61 | } catch (Exception exception) { | ||
62 | } | ||
63 | return resultString; | ||
64 | } | ||
65 | |||
66 | public static String getMd5ByFile(File file) throws FileNotFoundException { | ||
67 | String value = null; | ||
68 | FileInputStream in = new FileInputStream(file); | ||
69 | try { | ||
70 | MappedByteBuffer byteBuffer = in.getChannel().map(FileChannel.MapMode.READ_ONLY, 0, file.length()); | ||
71 | MessageDigest md5 = MessageDigest.getInstance("MD5"); | ||
72 | md5.update(byteBuffer); | ||
73 | BigInteger bi = new BigInteger(1, md5.digest()); | ||
74 | value = bi.toString(16); | ||
75 | } catch (Exception e) { | ||
76 | e.printStackTrace(); | ||
77 | } finally { | ||
78 | if(null != in) { | ||
79 | try { | ||
80 | in.close(); | ||
81 | } catch (IOException e) { | ||
82 | e.printStackTrace(); | ||
83 | } | ||
84 | } | ||
85 | } | ||
86 | return value; | ||
87 | } | ||
88 | |||
89 | private static final String hexDigits[] = { "0", "1", "2", "3", "4", "5", | ||
90 | "6", "7", "8", "9", "a", "b", "c", "d", "e", "f" }; | ||
91 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | package com.example.utils.mybatis; | ||
2 | |||
3 | import com.example.utils.mybatis.pageable.MybatisPageableInterceptor; | ||
4 | import org.apache.ibatis.plugin.Interceptor; | ||
5 | import org.apache.ibatis.session.SqlSessionFactory; | ||
6 | import org.mybatis.spring.SqlSessionFactoryBean; | ||
7 | import org.mybatis.spring.SqlSessionTemplate; | ||
8 | import org.springframework.beans.factory.annotation.Autowired; | ||
9 | import org.springframework.beans.factory.annotation.Value; | ||
10 | import org.springframework.context.annotation.Bean; | ||
11 | import org.springframework.context.annotation.Configuration; | ||
12 | import org.springframework.core.io.support.PathMatchingResourcePatternResolver; | ||
13 | import org.springframework.core.io.support.ResourcePatternResolver; | ||
14 | import org.springframework.jdbc.datasource.DataSourceTransactionManager; | ||
15 | import org.springframework.transaction.PlatformTransactionManager; | ||
16 | import org.springframework.transaction.annotation.EnableTransactionManagement; | ||
17 | import org.springframework.transaction.annotation.TransactionManagementConfigurer; | ||
18 | |||
19 | import javax.sql.DataSource; | ||
20 | |||
21 | @Configuration | ||
22 | @EnableTransactionManagement | ||
23 | public class MyBatisConfig implements TransactionManagementConfigurer { | ||
24 | |||
25 | @Autowired | ||
26 | DataSource dataSource; | ||
27 | |||
28 | @Value("${mybatis.mapperLocations}") | ||
29 | private String mybatismapperLocations; | ||
30 | |||
31 | @Autowired | ||
32 | MybatisPageableInterceptor mybatisPageableInterceptor; | ||
33 | |||
34 | @Bean(name = "sqlSessionFactory") | ||
35 | public SqlSessionFactory sqlSessionFactoryBean() { | ||
36 | System.out.println("sqlSessionFactory============="); | ||
37 | System.out.println("sqlSessionFactory============="); | ||
38 | System.out.println("sqlSessionFactory============="); | ||
39 | System.out.println("sqlSessionFactory============="); | ||
40 | System.out.println("sqlSessionFactory============="); | ||
41 | SqlSessionFactoryBean bean = new SqlSessionFactoryBean(); | ||
42 | bean.setDataSource(dataSource); | ||
43 | //添加分页插件 | ||
44 | bean.setPlugins(new Interceptor[]{mybatisPageableInterceptor}); | ||
45 | |||
46 | //添加XML目录 | ||
47 | ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver(); | ||
48 | try { | ||
49 | // SqlSessionFactory sqlSessionFactory = bean.getObject(); | ||
50 | // org.apache.ibatis.session.Configuration configuration = sqlSessionFactory.getConfiguration(); | ||
51 | // //支持驼峰 | ||
52 | // configuration.setMapUnderscoreToCamelCase(true); | ||
53 | bean.setMapperLocations(resolver.getResources(mybatismapperLocations)); | ||
54 | SqlSessionFactory sqlSessionFactory = bean.getObject(); | ||
55 | sqlSessionFactory.getConfiguration().setMapUnderscoreToCamelCase(true);// 开启驼峰映射 | ||
56 | return sqlSessionFactory; | ||
57 | } catch (Exception e) { | ||
58 | e.printStackTrace(); | ||
59 | throw new RuntimeException(e); | ||
60 | } | ||
61 | } | ||
62 | |||
63 | @Bean | ||
64 | public SqlSessionTemplate sqlSessionTemplate(SqlSessionFactory sqlSessionFactory) { | ||
65 | return new SqlSessionTemplate(sqlSessionFactory); | ||
66 | } | ||
67 | |||
68 | @Bean | ||
69 | @Override | ||
70 | public PlatformTransactionManager annotationDrivenTransactionManager() { | ||
71 | return new DataSourceTransactionManager(dataSource); | ||
72 | } | ||
73 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | package com.example.utils.mybatis.pageable; | ||
2 | |||
3 | public class Dialect { | ||
4 | public boolean supportsLimit() { | ||
5 | return false; | ||
6 | } | ||
7 | |||
8 | public boolean supportsLimitOffset() { | ||
9 | return supportsLimit(); | ||
10 | } | ||
11 | |||
12 | /** | ||
13 | * 将sql变成分页sql语句,直接使用offset,limit的值作为占位符.</br> 源代码为: | ||
14 | * getLimitString(sql,offset | ||
15 | * ,String.valueOf(offset),limit,String.valueOf(limit)) | ||
16 | */ | ||
17 | public String getLimitString(String sql, int offset, int limit) { | ||
18 | return getLimitString(sql, offset, Integer.toString(offset), limit, | ||
19 | Integer.toString(limit)); | ||
20 | } | ||
21 | |||
22 | /** | ||
23 | * 将sql变成分页sql语句,提供将offset及limit使用占位符(placeholder)替换. | ||
24 | * <p/> | ||
25 | * <pre> | ||
26 | * 如mysql | ||
27 | * dialect.getLimitString("select * from user", 12, ":offset",0,":limit") 将返回 | ||
28 | * select * from user limit :offset,:limit | ||
29 | * </pre> | ||
30 | * | ||
31 | * @return 包含占位符的分页sql | ||
32 | */ | ||
33 | public String getLimitString(String sql, int offset, | ||
34 | String offsetPlaceholder, int limit, String limitPlaceholder) { | ||
35 | throw new UnsupportedOperationException("paged queries not supported"); | ||
36 | } | ||
37 | |||
38 | /** | ||
39 | * 将sql转换为总记录数SQL | ||
40 | * | ||
41 | * @param sql SQL语句 | ||
42 | * @return 总记录数的sql | ||
43 | */ | ||
44 | public String getCountString(String sql) { | ||
45 | return "select count(1) from (" + sql + ") tmp_count"; | ||
46 | } | ||
47 | |||
48 | /** | ||
49 | * 将sql转换为带排序的SQL | ||
50 | * | ||
51 | * @param sql | ||
52 | * SQL语句 | ||
53 | * @return 总记录数的sql | ||
54 | */ | ||
55 | // public String getSortString(String sql, List<Order> orders) { | ||
56 | // if (orders == null || orders.isEmpty()) { | ||
57 | // return sql; | ||
58 | // } | ||
59 | // | ||
60 | // StringBuffer buffer = new StringBuffer("select * from (").append(sql) | ||
61 | // .append(") temp_order order by "); | ||
62 | // for (Order order : orders) { | ||
63 | // if (order != null) { | ||
64 | // buffer.append(order.toString()).append(", "); | ||
65 | // } | ||
66 | // | ||
67 | // } | ||
68 | // buffer.delete(buffer.length() - 2, buffer.length()); | ||
69 | // return buffer.toString(); | ||
70 | // } | ||
71 | } |
1 | package com.example.utils.mybatis.pageable; | ||
2 | |||
3 | public class MySQLDialect extends Dialect { | ||
4 | |||
5 | public boolean supportsLimitOffset() { | ||
6 | return true; | ||
7 | } | ||
8 | |||
9 | public boolean supportsLimit() { | ||
10 | return true; | ||
11 | } | ||
12 | |||
13 | public String getLimitString(String sql, int offset, String offsetPlaceholder, int limit, String limitPlaceholder) { | ||
14 | if (offset > 0) { | ||
15 | return sql + " limit " + offsetPlaceholder + "," + limitPlaceholder; | ||
16 | } else { | ||
17 | return sql + " limit " + limitPlaceholder; | ||
18 | } | ||
19 | } | ||
20 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | package com.example.utils.mybatis.pageable; | ||
2 | |||
3 | import org.apache.ibatis.binding.MapperMethod; | ||
4 | import org.apache.ibatis.executor.Executor; | ||
5 | import org.apache.ibatis.executor.parameter.ParameterHandler; | ||
6 | import org.apache.ibatis.mapping.BoundSql; | ||
7 | import org.apache.ibatis.mapping.MappedStatement; | ||
8 | import org.apache.ibatis.mapping.MappedStatement.Builder; | ||
9 | import org.apache.ibatis.mapping.ParameterMapping; | ||
10 | import org.apache.ibatis.mapping.SqlSource; | ||
11 | import org.apache.ibatis.plugin.*; | ||
12 | import org.apache.ibatis.scripting.defaults.DefaultParameterHandler; | ||
13 | import org.apache.ibatis.session.ResultHandler; | ||
14 | import org.apache.ibatis.session.RowBounds; | ||
15 | import org.apache.log4j.LogManager; | ||
16 | import org.apache.log4j.Logger; | ||
17 | import org.springframework.stereotype.Service; | ||
18 | |||
19 | import java.sql.Connection; | ||
20 | import java.sql.PreparedStatement; | ||
21 | import java.sql.ResultSet; | ||
22 | import java.sql.SQLException; | ||
23 | import java.util.HashMap; | ||
24 | import java.util.Map; | ||
25 | import java.util.Properties; | ||
26 | |||
27 | /** | ||
28 | * 分页插件,使用 Pageable 和 Page 对象作为输入和输出。 | ||
29 | * 只要方法参数中包含 Pageable 参数,则自动分页。 | ||
30 | * <p/> | ||
31 | */ | ||
32 | @Service | ||
33 | @Intercepts({@Signature(type = Executor.class, method = "query", args = | ||
34 | {MappedStatement.class, Object.class, RowBounds.class, ResultHandler.class})}) | ||
35 | public class MybatisPageableInterceptor implements Interceptor { | ||
36 | |||
37 | private static Logger logger = LogManager.getLogger(MybatisPageableInterceptor.class); | ||
38 | |||
39 | static int MAPPED_STATEMENT_INDEX = 0; | ||
40 | static int PARAMETER_INDEX = 1; | ||
41 | static int ROWBOUNDS_INDEX = 2; | ||
42 | static int RESULT_HANDLER_INDEX = 3; | ||
43 | |||
44 | |||
45 | private Dialect dialect = new MySQLDialect(); | ||
46 | |||
47 | @Override | ||
48 | public Object intercept(Invocation inv) throws Throwable { | ||
49 | |||
50 | final Object[] queryArgs = inv.getArgs(); | ||
51 | |||
52 | // 查找方法参数中的 分页请求对象 | ||
53 | Pageable pageRequest = this.findPageableObject(queryArgs[PARAMETER_INDEX]); | ||
54 | |||
55 | // 如果需要分页 | ||
56 | if (pageRequest != null) { | ||
57 | |||
58 | final MappedStatement ms = (MappedStatement) queryArgs[MAPPED_STATEMENT_INDEX]; | ||
59 | final Object parameter = queryArgs[PARAMETER_INDEX]; | ||
60 | |||
61 | final BoundSql boundSql = ms.getBoundSql(parameter); | ||
62 | |||
63 | // 删除尾部的 ';' | ||
64 | String sql = boundSql.getSql().trim().replaceAll(";$", ""); | ||
65 | |||
66 | // 1. 搞定总记录数(如果需要的话) | ||
67 | // int total = 0; | ||
68 | // if (pageRequest.getCountable()) { | ||
69 | // total = this.queryTotal(sql, ms, boundSql); | ||
70 | // } | ||
71 | |||
72 | // 2. 搞定limit 查询 | ||
73 | // 2.1 获取分页SQL,并完成参数准备 | ||
74 | String limitSql = dialect.getLimitString(sql, pageRequest.getOffset(), pageRequest.getPageSize()); | ||
75 | |||
76 | queryArgs[ROWBOUNDS_INDEX] = new RowBounds(RowBounds.NO_ROW_OFFSET, RowBounds.NO_ROW_LIMIT); | ||
77 | queryArgs[MAPPED_STATEMENT_INDEX] = copyFromNewSql(ms, boundSql, limitSql); | ||
78 | |||
79 | // 2.2 继续执行剩余步骤,获取查询结果 | ||
80 | // Object ret = inv.proceed(); | ||
81 | // | ||
82 | // // 3. 组成分页对象 | ||
83 | // Page<?> pi = new Page<Object>((List) ret, pageRequest, total); | ||
84 | // | ||
85 | // // 4. MyBatis 需要返回一个List对象,这里只是满足MyBatis而作的临时包装 | ||
86 | // List<Page<?>> tmp = new ArrayList<Page<?>>(1); | ||
87 | // tmp.add(pi); | ||
88 | } | ||
89 | |||
90 | return inv.proceed(); | ||
91 | |||
92 | } | ||
93 | |||
94 | /** | ||
95 | * 在方法参数中查找 分页请求对象 | ||
96 | * | ||
97 | * @param params Mapper接口方法中的参数对象 | ||
98 | * @return | ||
99 | */ | ||
100 | private Pageable findPageableObject(Object params) { | ||
101 | |||
102 | if (params == null) { | ||
103 | return null; | ||
104 | } | ||
105 | |||
106 | // 单个参数 表现为参数对象 | ||
107 | if (Pageable.class.isAssignableFrom(params.getClass())) { | ||
108 | return (Pageable) params; | ||
109 | } | ||
110 | |||
111 | // 多个参数 表现为 ParamMap | ||
112 | else if (params instanceof MapperMethod.ParamMap) { | ||
113 | MapperMethod.ParamMap<Object> paramMap = (MapperMethod.ParamMap<Object>) params; | ||
114 | for (Map.Entry<String, Object> entry : paramMap.entrySet()) { | ||
115 | Object paramValue = entry.getValue(); | ||
116 | |||
117 | if (paramValue != null && Pageable.class.isAssignableFrom(paramValue.getClass())) { | ||
118 | return (Pageable) paramValue; | ||
119 | } | ||
120 | } | ||
121 | } else if (params instanceof HashMap) { | ||
122 | Map<String, Object> stringObjectMap = (Map<String, Object>) params; | ||
123 | for (Map.Entry<String, Object> entry : stringObjectMap.entrySet()) { | ||
124 | Object paramValue = entry.getValue(); | ||
125 | |||
126 | if (paramValue != null && Pageable.class.isAssignableFrom(paramValue.getClass())) { | ||
127 | return (Pageable) paramValue; | ||
128 | } | ||
129 | } | ||
130 | } | ||
131 | |||
132 | return null; | ||
133 | } | ||
134 | |||
135 | @Override | ||
136 | public Object plugin(Object target) { | ||
137 | // return Plugin.wrap(target, this); | ||
138 | if (Executor.class.isAssignableFrom(target.getClass())) { | ||
139 | return Plugin.wrap(target, this); | ||
140 | } | ||
141 | |||
142 | return target; | ||
143 | } | ||
144 | |||
145 | @Override | ||
146 | public void setProperties(Properties p) { | ||
147 | String dialectClass = p.getProperty("dialectClass"); | ||
148 | |||
149 | try { | ||
150 | setDialect((Dialect) Class.forName(dialectClass).newInstance()); | ||
151 | } catch (Exception e) { | ||
152 | throw new RuntimeException("cannot create dialect instance by dialectClass:" + dialectClass, e); | ||
153 | } | ||
154 | |||
155 | } | ||
156 | |||
157 | /** | ||
158 | * 查询总记录数 | ||
159 | * | ||
160 | * @param sql | ||
161 | * @param mappedStatement | ||
162 | * @param boundSql | ||
163 | * @return | ||
164 | * @throws SQLException | ||
165 | */ | ||
166 | private int queryTotal(String sql, MappedStatement mappedStatement, | ||
167 | BoundSql boundSql) throws SQLException { | ||
168 | |||
169 | Connection connection = null; | ||
170 | PreparedStatement countStmt = null; | ||
171 | ResultSet rs = null; | ||
172 | try { | ||
173 | |||
174 | connection = mappedStatement.getConfiguration().getEnvironment().getDataSource().getConnection(); | ||
175 | |||
176 | String countSql = this.dialect.getCountString(sql); | ||
177 | |||
178 | countStmt = connection.prepareStatement(countSql); | ||
179 | BoundSql countBoundSql = new BoundSql(mappedStatement.getConfiguration(), countSql, | ||
180 | boundSql.getParameterMappings(), boundSql.getParameterObject()); | ||
181 | |||
182 | setParameters(countStmt, mappedStatement, countBoundSql, boundSql.getParameterObject()); | ||
183 | |||
184 | rs = countStmt.executeQuery(); | ||
185 | int totalCount = 0; | ||
186 | if (rs.next()) { | ||
187 | totalCount = rs.getInt(1); | ||
188 | } | ||
189 | |||
190 | return totalCount; | ||
191 | } catch (SQLException e) { | ||
192 | logger.error("查询总记录数出错", e); | ||
193 | throw e; | ||
194 | } finally { | ||
195 | if (rs != null) { | ||
196 | try { | ||
197 | rs.close(); | ||
198 | } catch (SQLException e) { | ||
199 | logger.error("exception happens when doing: ResultSet.close()", e); | ||
200 | } | ||
201 | } | ||
202 | |||
203 | if (countStmt != null) { | ||
204 | try { | ||
205 | countStmt.close(); | ||
206 | } catch (SQLException e) { | ||
207 | logger.error("exception happens when doing: PreparedStatement.close()", e); | ||
208 | } | ||
209 | } | ||
210 | |||
211 | if (connection != null) { | ||
212 | try { | ||
213 | connection.close(); | ||
214 | } catch (SQLException e) { | ||
215 | logger.error("exception happens when doing: Connection.close()", e); | ||
216 | } | ||
217 | } | ||
218 | } | ||
219 | |||
220 | } | ||
221 | |||
222 | /** | ||
223 | * 对SQL参数(?)设值 | ||
224 | * | ||
225 | * @param ps | ||
226 | * @param mappedStatement | ||
227 | * @param boundSql | ||
228 | * @param parameterObject | ||
229 | * @throws SQLException | ||
230 | */ | ||
231 | private void setParameters(PreparedStatement ps, MappedStatement mappedStatement, BoundSql boundSql, | ||
232 | Object parameterObject) throws SQLException { | ||
233 | ParameterHandler parameterHandler = new DefaultParameterHandler(mappedStatement, parameterObject, boundSql); | ||
234 | parameterHandler.setParameters(ps); | ||
235 | } | ||
236 | |||
237 | public Dialect getDialect() { | ||
238 | return dialect; | ||
239 | } | ||
240 | |||
241 | public void setDialect(Dialect dialect) { | ||
242 | this.dialect = dialect; | ||
243 | } | ||
244 | |||
245 | private MappedStatement copyFromNewSql(MappedStatement ms, | ||
246 | BoundSql boundSql, String sql) { | ||
247 | BoundSql newBoundSql = copyFromBoundSql(ms, boundSql, sql); | ||
248 | return copyFromMappedStatement(ms, new BoundSqlSqlSource(newBoundSql)); | ||
249 | } | ||
250 | |||
251 | public static class BoundSqlSqlSource implements SqlSource { | ||
252 | BoundSql boundSql; | ||
253 | |||
254 | public BoundSqlSqlSource(BoundSql boundSql) { | ||
255 | this.boundSql = boundSql; | ||
256 | } | ||
257 | |||
258 | public BoundSql getBoundSql(Object parameterObject) { | ||
259 | return boundSql; | ||
260 | } | ||
261 | } | ||
262 | |||
263 | private BoundSql copyFromBoundSql(MappedStatement ms, BoundSql boundSql, | ||
264 | String sql) { | ||
265 | BoundSql newBoundSql = new BoundSql(ms.getConfiguration(), sql, boundSql.getParameterMappings(), boundSql.getParameterObject()); | ||
266 | for (ParameterMapping mapping : boundSql.getParameterMappings()) { | ||
267 | String prop = mapping.getProperty(); | ||
268 | if (boundSql.hasAdditionalParameter(prop)) { | ||
269 | newBoundSql.setAdditionalParameter(prop, boundSql.getAdditionalParameter(prop)); | ||
270 | } | ||
271 | } | ||
272 | return newBoundSql; | ||
273 | } | ||
274 | |||
275 | //see: MapperBuilderAssistant | ||
276 | private MappedStatement copyFromMappedStatement(MappedStatement ms, SqlSource newSqlSource) { | ||
277 | Builder builder = new Builder(ms.getConfiguration(), ms.getId(), newSqlSource, ms.getSqlCommandType()); | ||
278 | |||
279 | builder.resource(ms.getResource()); | ||
280 | builder.fetchSize(ms.getFetchSize()); | ||
281 | builder.statementType(ms.getStatementType()); | ||
282 | builder.keyGenerator(ms.getKeyGenerator()); | ||
283 | if (ms.getKeyProperties() != null && ms.getKeyProperties().length != 0) { | ||
284 | StringBuffer keyProperties = new StringBuffer(); | ||
285 | for (String keyProperty : ms.getKeyProperties()) { | ||
286 | keyProperties.append(keyProperty).append(","); | ||
287 | } | ||
288 | keyProperties.delete(keyProperties.length() - 1, keyProperties.length()); | ||
289 | builder.keyProperty(keyProperties.toString()); | ||
290 | } | ||
291 | |||
292 | //setStatementTimeout() | ||
293 | builder.timeout(ms.getTimeout()); | ||
294 | |||
295 | //setStatementResultMap() | ||
296 | builder.parameterMap(ms.getParameterMap()); | ||
297 | |||
298 | //setStatementResultMap() | ||
299 | builder.resultMaps(ms.getResultMaps()); | ||
300 | builder.resultSetType(ms.getResultSetType()); | ||
301 | |||
302 | //setStatementCache() | ||
303 | builder.cache(ms.getCache()); | ||
304 | builder.flushCacheRequired(ms.isFlushCacheRequired()); | ||
305 | builder.useCache(ms.isUseCache()); | ||
306 | |||
307 | return builder.build(); | ||
308 | } | ||
309 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | package com.example.utils.mybatis.pageable; | ||
2 | |||
3 | public class OracleDialect extends Dialect { | ||
4 | |||
5 | public boolean supportsLimit() { | ||
6 | return true; | ||
7 | } | ||
8 | |||
9 | public boolean supportsLimitOffset() { | ||
10 | return true; | ||
11 | } | ||
12 | |||
13 | public String getLimitString(String sql, int offset, String offsetPlaceholder, int limit, String limitPlaceholder) { | ||
14 | sql = sql.trim(); | ||
15 | boolean isForUpdate = false; | ||
16 | if (sql.toLowerCase().endsWith(" for update")) { | ||
17 | sql = sql.substring(0, sql.length() - 11); | ||
18 | isForUpdate = true; | ||
19 | } | ||
20 | |||
21 | StringBuffer pagingSelect = new StringBuffer(sql.length() + 100); | ||
22 | if (offset > 0) { | ||
23 | pagingSelect.append("select * from ( select row_.*, rownum rownum_ from ( "); | ||
24 | } else { | ||
25 | pagingSelect.append("select * from ( "); | ||
26 | } | ||
27 | pagingSelect.append(sql); | ||
28 | if (offset > 0) { | ||
29 | // int end = offset+limit; | ||
30 | String endString = offsetPlaceholder + "+" + limitPlaceholder; | ||
31 | pagingSelect.append(" ) row_ ) where rownum_ <= " + endString + " and rownum_ > " + offsetPlaceholder); | ||
32 | } else { | ||
33 | pagingSelect.append(" ) where rownum <= " + limitPlaceholder); | ||
34 | } | ||
35 | |||
36 | if (isForUpdate) { | ||
37 | pagingSelect.append(" for update"); | ||
38 | } | ||
39 | |||
40 | return pagingSelect.toString(); | ||
41 | } | ||
42 | |||
43 | } | ||
44 |
1 | package com.example.utils.mybatis.pageable; | ||
2 | |||
3 | import java.util.ArrayList; | ||
4 | import java.util.Collections; | ||
5 | import java.util.Iterator; | ||
6 | import java.util.List; | ||
7 | |||
8 | /** | ||
9 | * 分页对象, 存放单页数据 | ||
10 | */ | ||
11 | public class Page<T> { | ||
12 | private static final long serialVersionUID = 867755909294344406L; | ||
13 | |||
14 | private final List<T> content = new ArrayList<T>(); | ||
15 | private final Pageable pageable; | ||
16 | private final long total; | ||
17 | |||
18 | public Page(List<T> content, Pageable pageable, long total) { | ||
19 | |||
20 | if (null == content) { | ||
21 | throw new IllegalArgumentException("Content must not be null!"); | ||
22 | } | ||
23 | |||
24 | this.content.addAll(content); | ||
25 | this.total = total; | ||
26 | this.pageable = pageable; | ||
27 | } | ||
28 | |||
29 | public Page(List<T> content) { | ||
30 | this(content, null, null == content ? 0 : content.size()); | ||
31 | } | ||
32 | |||
33 | /** | ||
34 | * 请求页面 | ||
35 | * | ||
36 | * @return | ||
37 | */ | ||
38 | public int getNumber() { | ||
39 | return pageable == null ? 0 : pageable.getPageNumber(); | ||
40 | } | ||
41 | |||
42 | /** | ||
43 | * page size | ||
44 | * | ||
45 | * @return | ||
46 | */ | ||
47 | public int getSize() { | ||
48 | return pageable == null ? 0 : pageable.getPageSize(); | ||
49 | } | ||
50 | |||
51 | /** | ||
52 | * 总页数 | ||
53 | * | ||
54 | * @return | ||
55 | */ | ||
56 | public int getTotalPages() { | ||
57 | return getSize() == 0 ? 1 : (int) Math.ceil((double) total / (double) getSize()); | ||
58 | } | ||
59 | |||
60 | /** | ||
61 | * 当前页记录条数 | ||
62 | * | ||
63 | * @return | ||
64 | */ | ||
65 | public int getNumberOfElements() { | ||
66 | return content.size(); | ||
67 | } | ||
68 | |||
69 | /** | ||
70 | * 总记录条数 | ||
71 | * | ||
72 | * @return | ||
73 | */ | ||
74 | public long getTotalElements() { | ||
75 | return total; | ||
76 | } | ||
77 | |||
78 | /** | ||
79 | * 是否有上一页 | ||
80 | * | ||
81 | * @return | ||
82 | */ | ||
83 | public boolean hasPreviousPage() { | ||
84 | return getNumber() > 0; | ||
85 | } | ||
86 | |||
87 | /** | ||
88 | * 是否首页 | ||
89 | * | ||
90 | * @return | ||
91 | */ | ||
92 | public boolean isFirstPage() { | ||
93 | return !hasPreviousPage(); | ||
94 | } | ||
95 | |||
96 | /** | ||
97 | * 是否有下一页 | ||
98 | * | ||
99 | * @return | ||
100 | */ | ||
101 | public boolean hasNextPage() { | ||
102 | return getNumber() + 1 < getTotalPages(); | ||
103 | } | ||
104 | |||
105 | /** | ||
106 | * 是否末页 | ||
107 | * | ||
108 | * @return | ||
109 | */ | ||
110 | public boolean isLastPage() { | ||
111 | return !hasNextPage(); | ||
112 | } | ||
113 | |||
114 | /** | ||
115 | * 下一页请求对象 | ||
116 | * | ||
117 | * @return | ||
118 | */ | ||
119 | public Pageable nextPageable() { | ||
120 | return hasNextPage() ? pageable.next() : null; | ||
121 | } | ||
122 | |||
123 | /** | ||
124 | * 上一页请求对象 | ||
125 | * | ||
126 | * @return | ||
127 | */ | ||
128 | public Pageable previousPageable() { | ||
129 | |||
130 | if (hasPreviousPage()) { | ||
131 | return pageable.previousOrFirst(); | ||
132 | } | ||
133 | |||
134 | return null; | ||
135 | } | ||
136 | |||
137 | /** | ||
138 | * 迭代器 | ||
139 | * | ||
140 | * @return | ||
141 | */ | ||
142 | public Iterator<T> iterator() { | ||
143 | return content.iterator(); | ||
144 | } | ||
145 | |||
146 | /** | ||
147 | * 当前页元素列表 | ||
148 | * | ||
149 | * @return | ||
150 | */ | ||
151 | public List<T> getContent() { | ||
152 | return Collections.unmodifiableList(content); | ||
153 | } | ||
154 | |||
155 | /** | ||
156 | * 当前页是否有元素 | ||
157 | * | ||
158 | * @return | ||
159 | */ | ||
160 | public boolean hasContent() { | ||
161 | return !content.isEmpty(); | ||
162 | } | ||
163 | |||
164 | |||
165 | /* | ||
166 | * (non-Javadoc) | ||
167 | * @see java.lang.Object#toString() | ||
168 | */ | ||
169 | @Override | ||
170 | public String toString() { | ||
171 | |||
172 | String contentType = "UNKNOWN"; | ||
173 | |||
174 | if (content.size() > 0) { | ||
175 | contentType = content.get(0).getClass().getName(); | ||
176 | } | ||
177 | |||
178 | return String.format("Page %s of %d containing %s instances", getNumber(), getTotalPages(), contentType); | ||
179 | } | ||
180 | |||
181 | } |
1 | package com.example.utils.mybatis.pageable; | ||
2 | |||
3 | /** | ||
4 | * 分页请求对象 | ||
5 | */ | ||
6 | public class Pageable { | ||
7 | private static final long serialVersionUID = 7280485938848398236L; | ||
8 | |||
9 | private final int page; | ||
10 | private final int size; | ||
11 | |||
12 | /** | ||
13 | * 是否查询总记录数 | ||
14 | */ | ||
15 | private final boolean countable; | ||
16 | |||
17 | /** | ||
18 | * @param page the page no you want to request, start from 0 | ||
19 | * @param size page size | ||
20 | */ | ||
21 | public Pageable(int page, int size) { | ||
22 | |||
23 | this(page, size, true); | ||
24 | } | ||
25 | |||
26 | /** | ||
27 | * @param page the page no you want to request, start from 0 | ||
28 | * @param size page size | ||
29 | * @param countable whether count total numbers | ||
30 | */ | ||
31 | public Pageable(int page, int size, boolean countable) { | ||
32 | |||
33 | if (page < 0) { | ||
34 | throw new IllegalArgumentException("Page index must not be less than zero!"); | ||
35 | } | ||
36 | |||
37 | if (size < 0) { | ||
38 | throw new IllegalArgumentException("Page size must not be less than zero!"); | ||
39 | } | ||
40 | |||
41 | this.page = page; | ||
42 | this.size = size; | ||
43 | |||
44 | this.countable = countable; | ||
45 | } | ||
46 | |||
47 | public boolean getCountable() { | ||
48 | return countable; | ||
49 | } | ||
50 | |||
51 | public int getPageSize() { | ||
52 | |||
53 | return size; | ||
54 | } | ||
55 | |||
56 | public int getPageNumber() { | ||
57 | return page; | ||
58 | } | ||
59 | |||
60 | public int getOffset() { | ||
61 | return page * size - size; | ||
62 | } | ||
63 | |||
64 | public boolean hasPrevious() { | ||
65 | return page > 0; | ||
66 | } | ||
67 | |||
68 | public Pageable next() { | ||
69 | return new Pageable(page + 1, size); | ||
70 | } | ||
71 | |||
72 | public Pageable previousOrFirst() { | ||
73 | return hasPrevious() ? new Pageable(page - 1, size) : this; | ||
74 | } | ||
75 | |||
76 | public Pageable first() { | ||
77 | return new Pageable(0, size); | ||
78 | } | ||
79 | |||
80 | /* | ||
81 | * (non-Javadoc) | ||
82 | * @see java.lang.Object#toString() | ||
83 | */ | ||
84 | @Override | ||
85 | public String toString() { | ||
86 | return String.format("Page request [number: %d, size %d, sort: %s]", page, size); | ||
87 | } | ||
88 | } |
1 | |||
2 | |||
3 | #data source | ||
4 | spring.datasource.url=jdbc:mysql://127.0.0.1:3306/csair_dp?useUnicode=true&characterEncoding=utf8 | ||
5 | spring.datasource.username=root | ||
6 | spring.datasource.password= | ||
7 | spring.datasource.driver-class-name=com.mysql.jdbc.Driver | ||
8 | spring.datasource.max-idle=10 | ||
9 | spring.datasource.max-wait=10000 | ||
10 | spring.datasource.min-idle=5 | ||
11 | spring.datasource.initial-size=5 | ||
12 | spring.datasource.validation-query=SELECT 1 | ||
13 | spring.datasource.test-on-borrow=false | ||
14 | spring.datasource.test-while-idle=true | ||
15 | spring.datasource.time-between-eviction-runs-millis=18800 | ||
16 | spring.datasource.jdbc-interceptors=ConnectionState;SlowQueryReport(threshold=0) | ||
17 | |||
18 | #mybatis | ||
19 | mybatis.mapperLocations=classpath*:mappers/*.xml | ||
20 | mybatis.configLocation=classpath:/mybatis-config.xml |
yry_dp/src/main/resources/logback.xml
0 → 100644
1 | <!-- Logback configuration. See http://logback.qos.ch/manual/index.html --> | ||
2 | <configuration scan="true" scanPeriod="10 seconds"> | ||
3 | |||
4 | <!-- Simple file output --> | ||
5 | <appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender"> | ||
6 | <!-- encoder defaults to ch.qos.logback.classic.encoder.PatternLayoutEncoder --> | ||
7 | <encoder> | ||
8 | <pattern> | ||
9 | [ %-5level] [%date{yyyy-MM-dd HH:mm:ss}] %logger{96} [%line] - %msg%n | ||
10 | </pattern> | ||
11 | <charset>UTF-8</charset> <!-- 此处设置字符集 --> | ||
12 | </encoder> | ||
13 | |||
14 | <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> | ||
15 | <!-- rollover daily 配置日志所生成的目录以及生成文件名的规则 --> | ||
16 | <fileNamePattern>logs/catalina-%d{yyyy-MM-dd}.%i.log</fileNamePattern> | ||
17 | <timeBasedFileNamingAndTriggeringPolicy | ||
18 | class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP"> | ||
19 | <!-- or whenever the file size reaches 64 MB --> | ||
20 | <maxFileSize>64 MB</maxFileSize> | ||
21 | </timeBasedFileNamingAndTriggeringPolicy> | ||
22 | </rollingPolicy> | ||
23 | |||
24 | |||
25 | <filter class="ch.qos.logback.classic.filter.ThresholdFilter"> | ||
26 | <level>DEBUG</level> | ||
27 | </filter> | ||
28 | <!-- Safely log to the same file from multiple JVMs. Degrades performance! --> | ||
29 | <prudent>true</prudent> | ||
30 | </appender> | ||
31 | |||
32 | |||
33 | <!-- Console output --> | ||
34 | <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
35 | <!-- encoder defaults to ch.qos.logback.classic.encoder.PatternLayoutEncoder --> | ||
36 | <encoder> | ||
37 | <pattern> | ||
38 | [ %-5level] [%date{yyyy-MM-dd HH:mm:ss}] %logger{96} [%line] - %msg%n | ||
39 | </pattern> | ||
40 | <charset>UTF-8</charset> <!-- 此处设置字符集 --> | ||
41 | </encoder> | ||
42 | <!-- Only log level WARN and above --> | ||
43 | <filter class="ch.qos.logback.classic.filter.ThresholdFilter"> | ||
44 | <level>INFO</level> | ||
45 | </filter> | ||
46 | </appender> | ||
47 | |||
48 | |||
49 | <!-- Enable FILE and STDOUT appenders for all log messages. | ||
50 | By default, only log at level INFO and above. --> | ||
51 | <root level="INFO"> | ||
52 | <appender-ref ref="FILE" /> | ||
53 | <appender-ref ref="STDOUT" /> | ||
54 | </root> | ||
55 | |||
56 | <!-- For loggers in the these namespaces, log at all levels. --> | ||
57 | <logger name="pedestal" level="ALL" /> | ||
58 | <logger name="hammock-cafe" level="ALL" /> | ||
59 | <logger name="user" level="ALL" /> | ||
60 | </configuration> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | <?xml version="1.0" encoding="UTF-8" ?> | ||
2 | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" > | ||
3 | <mapper namespace="com.example.mapper.log.HttpLogMapper"> | ||
4 | |||
5 | |||
6 | <insert id="create" parameterType="com.example.models.log.HttpLog" useGeneratedKeys="true" keyProperty="id"> | ||
7 | |||
8 | INSERT INTO t_http_log ( | ||
9 | url, | ||
10 | param, | ||
11 | app_id, | ||
12 | create_at, | ||
13 | restful | ||
14 | ) | ||
15 | VALUES ( | ||
16 | |||
17 | #{url}, | ||
18 | |||
19 | #{param}, | ||
20 | #{app_id}, | ||
21 | #{create_at}, | ||
22 | #{restful} | ||
23 | |||
24 | ) | ||
25 | </insert> | ||
26 | |||
27 | <update id="update"> | ||
28 | update t_http_log set restful = #{restful} where id = #{id} | ||
29 | </update> | ||
30 | |||
31 | |||
32 | </mapper> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | <?xml version="1.0" encoding="UTF-8" ?> | ||
2 | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" > | ||
3 | <mapper namespace="com.example.mapper.api.MemberInfoMapper"> | ||
4 | |||
5 | |||
6 | <insert id="create" parameterType="com.example.models.api.MemberInfo" useGeneratedKeys="true" keyProperty="id"> | ||
7 | |||
8 | INSERT INTO t_hpai_member_info ( | ||
9 | source, | ||
10 | `timestamp`, | ||
11 | barcode, | ||
12 | channel_id, | ||
13 | manager_id, | ||
14 | `name`, | ||
15 | gender, | ||
16 | birthday_str, | ||
17 | mobile_number, | ||
18 | sampling_date, | ||
19 | recipients, | ||
20 | address, | ||
21 | family_disease, | ||
22 | existing_disease, | ||
23 | weight, | ||
24 | height, | ||
25 | remarks, | ||
26 | member_number, | ||
27 | create_at, | ||
28 | status | ||
29 | ) | ||
30 | VALUES ( | ||
31 | #{source}, | ||
32 | #{timestamp}, | ||
33 | #{barcode}, | ||
34 | #{channelId}, | ||
35 | #{managerId}, | ||
36 | #{name}, | ||
37 | #{gender}, | ||
38 | #{birthdayStr}, | ||
39 | #{mobileNumber}, | ||
40 | #{samplingDate}, | ||
41 | #{recipients}, | ||
42 | #{address}, | ||
43 | #{familyDisease}, | ||
44 | #{existingDisease}, | ||
45 | #{weight}, | ||
46 | #{height}, | ||
47 | #{remarks}, | ||
48 | #{memberNumber}, | ||
49 | #{createAt}, | ||
50 | #{status} | ||
51 | ); | ||
52 | </insert> | ||
53 | |||
54 | <select id="getByMobileNumber" resultType="com.example.models.api.MemberInfo"> | ||
55 | select * from t_hpai_member_info where mobile_number = #{mobileNumber} limit 1; | ||
56 | </select> | ||
57 | |||
58 | <update id="genereport"> | ||
59 | update t_hpai_member_info set | ||
60 | is_genereport = #{isGenereport}, | ||
61 | genereport_at = #{genereportAt}, | ||
62 | pack_name = #{packName}, | ||
63 | pdf_name = #{pdfName}, | ||
64 | url = #{url}, | ||
65 | genereport_name = #{genereportName} where mobile_number = #{mobileNumber}; | ||
66 | </update> | ||
67 | |||
68 | |||
69 | <select id="list" resultType="com.example.models.api.MemberInfo"> | ||
70 | select * from t_hpai_member_info where 1 = 1 | ||
71 | <if test="keyWord != null and keyWord != ''"> | ||
72 | and `name` LIKE CONCAT('%', #{keyWord}, '%') | ||
73 | </if> | ||
74 | <if test="status != -1"> | ||
75 | and is_genereport = #{status} | ||
76 | </if> | ||
77 | </select> | ||
78 | |||
79 | |||
80 | <select id="count" resultType="int"> | ||
81 | select count(*) c from t_hpai_member_info where 1 = 1 | ||
82 | <if test="keyWord != null and keyWord != ''"> | ||
83 | and `name` LIKE CONCAT('%', #{keyWord}, '%') | ||
84 | </if> | ||
85 | <if test="status != -1"> | ||
86 | and is_genereport = #{status} | ||
87 | </if> | ||
88 | </select> | ||
89 | |||
90 | |||
91 | <select id="registerByDay" resultType="map"> | ||
92 | select count(*) c,DATE_FORMAT(create_at,'%Y-%m-%d') d from t_hpai_member_info | ||
93 | where create_at BETWEEN #{startTime} and #{endTime} | ||
94 | group by DATE_FORMAT(create_at,'%Y-%m-%d') | ||
95 | </select> | ||
96 | |||
97 | <select id="genereportByDay" resultType="map"> | ||
98 | select count(*) c,DATE_FORMAT(genereport_at,'%Y-%m-%d') d from t_hpai_member_info | ||
99 | where is_genereport = 1 and create_at BETWEEN #{startTime} and #{endTime} group by DATE_FORMAT(genereport_at,'%Y-%m-%d') | ||
100 | </select> | ||
101 | |||
102 | <select id="registerByMonth" resultType="map"> | ||
103 | select count(*) c,DATE_FORMAT(create_at,'%Y-%m') d from t_hpai_member_info | ||
104 | where create_at BETWEEN #{startTime} and #{endTime} | ||
105 | group by DATE_FORMAT(create_at,'%Y-%m') | ||
106 | </select> | ||
107 | |||
108 | <select id="genereportByMonth" resultType="map"> | ||
109 | select count(*) c,DATE_FORMAT(genereport_at,'%Y-%m') d from t_hpai_member_info | ||
110 | where is_genereport = 1 and create_at BETWEEN #{startTime} and #{endTime} group by DATE_FORMAT(genereport_at,'%Y-%m') | ||
111 | </select> | ||
112 | |||
113 | |||
114 | </mapper> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
yry_dp/src/main/resources/mybatis-config.xml
0 → 100644
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"> | ||
3 | <configuration> | ||
4 | |||
5 | <settings> | ||
6 | <!--该配置影响的所有映射器中配置的二级缓存的全局开关。--> | ||
7 | <setting name="cacheEnabled" value="false"/> | ||
8 | <!--延迟加载的全局开关。当开启时,所有关联对象都会延迟加载。特定关联关系中可通过设置fetchType属性来覆盖该项的开关状态。--> | ||
9 | <setting name="lazyLoadingEnabled" value="true"/> | ||
10 | <!--是否允许单一语句返回多结果集(需要兼容驱动)。--> | ||
11 | <setting name="multipleResultSetsEnabled" value="true"/> | ||
12 | <!--使用列标签代替列名。不同的驱动在这方面会有不同的表现,具体可参考相关驱动文档或通过测试这两种不同的模式来观察所用驱动的结果。--> | ||
13 | <setting name="useColumnLabel" value="true"/> | ||
14 | <!--允许 JDBC 支持自动生成主键,需要驱动兼容。如果设置为 true 则这个设置强制使用自动生成主键,尽管一些驱动不能兼容但仍可正常工作(比如 Derby)。--> | ||
15 | <setting name="useGeneratedKeys" value="false"/> | ||
16 | <!--指定 MyBatis 是否以及如何自动映射指定的列到字段或属性。NONE 表示取消自动映射;PARTIAL 只会自动映射没有定义嵌套结果集映射的结果集。FULL 会自动映射任意复杂的结果集(包括嵌套和其他情况)。--> | ||
17 | <setting name="autoMappingBehavior" value="PARTIAL"/> | ||
18 | <!--配置默认的执行器。SIMPLE 就是普通的执行器;REUSE 执行器会重用预处理语句(prepared statements);BATCH 执行器将重用语句并执行批量更新。--> | ||
19 | <setting name="defaultExecutorType" value="SIMPLE"/> | ||
20 | <!--设置超时时间,它决定驱动等待数据库响应的秒数。--> | ||
21 | <setting name="defaultStatementTimeout" value="25"/> | ||
22 | <!--允许在嵌套语句中使用行分界(RowBounds)。--> | ||
23 | <setting name="safeRowBoundsEnabled" value="false"/> | ||
24 | <!--是否开启自动驼峰命名规则(camel case)映射,即从经典数据库列名 A_COLUMN 到经典 Java 属性名 aColumn 的类似映射。--> | ||
25 | <setting name="mapUnderscoreToCamelCase" value="true"/> | ||
26 | <!--MyBatis 利用本地缓存机制(Local Cache)防止循环引用(circular references)和加速重复嵌套查询。默认值为 SESSION,这种情况下会缓存一个会话中执行的所有查询。若设置值为 STATEMENT,本地会话仅用在语句执行上,对相同 SqlSession 的不同调用将不会共享数据。--> | ||
27 | <setting name="localCacheScope" value="SESSION"/> | ||
28 | <!--当没有为参数提供特定的 JDBC 类型时,为空值指定 JDBC 类型。某些驱动需要指定列的 JDBC 类型,多数情况直接用一般类型即可,比如 NULL、VARCHAR 或 OTHER。--> | ||
29 | <setting name="jdbcTypeForNull" value="OTHER"/> | ||
30 | <!--指定哪个对象的方法触发一次延迟加载。--> | ||
31 | <setting name="lazyLoadTriggerMethods" value="equals,clone,hashCode,toString"/> | ||
32 | </settings> | ||
33 | <plugins> | ||
34 | <!-- 分页 --> | ||
35 | <plugin interceptor="com.example.utils.pageable.MybatisPageableInterceptor"> | ||
36 | <property name="dialectClass" value="com.example.utils.pageable.MySQLDialect"/> | ||
37 | </plugin> | ||
38 | <!-- / 分页 --> | ||
39 | </plugins> | ||
40 | </configuration> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
yry_dp/src/main/resources/sql/mysql-cms.sql
0 → 100644
1 | SET FOREIGN_KEY_CHECKS = 0; | ||
2 | |||
3 | DROP TABLE IF EXISTS `cms_article`; | ||
4 | CREATE TABLE `cms_article` ( | ||
5 | `id` bigint(20) NOT NULL AUTO_INCREMENT, | ||
6 | `title` varchar(255) NOT NULL, | ||
7 | `model` char(32) DEFAULT NULL, | ||
8 | `seo_keywords` varchar(512) DEFAULT NULL, | ||
9 | `seo_describe` varchar(1024) DEFAULT NULL, | ||
10 | `keywords` varchar(512) DEFAULT NULL, | ||
11 | `column_id` char(32) DEFAULT NULL, | ||
12 | `source` varchar(512) DEFAULT NULL, | ||
13 | `is_promulgate` tinyint(1) DEFAULT NULL, | ||
14 | `is_top` tinyint(1) DEFAULT NULL, | ||
15 | `summary` varchar(512) DEFAULT NULL, | ||
16 | `page_url` varchar(255) DEFAULT NULL, | ||
17 | `status` tinyint(4) DEFAULT NULL, | ||
18 | `creater_id` varchar(64) DEFAULT NULL, | ||
19 | `create_time` bigint(20) DEFAULT NULL, | ||
20 | `promulgate_time` bigint(20) DEFAULT NULL, | ||
21 | `sequence` bigint(20) DEFAULT NULL, | ||
22 | `media_url` varchar(255) DEFAULT NULL, | ||
23 | PRIMARY KEY (`id`) | ||
24 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
25 | |||
26 | SET FOREIGN_KEY_CHECKS = 1; | ||
27 | |||
28 | |||
29 | |||
30 | |||
31 | SET FOREIGN_KEY_CHECKS = 0; | ||
32 | |||
33 | DROP TABLE IF EXISTS `cms_article_content`; | ||
34 | CREATE TABLE `cms_article_content` ( | ||
35 | `id` bigint(20) NOT NULL AUTO_INCREMENT, | ||
36 | `content` mediumtext, | ||
37 | `article_id` char(32) NOT NULL, | ||
38 | `creater_id` varchar(64) DEFAULT NULL, | ||
39 | `create_time` bigint(20) NOT NULL, | ||
40 | `page` int(11) NOT NULL, | ||
41 | `type` char(16) NOT NULL, | ||
42 | PRIMARY KEY (`id`) | ||
43 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
44 | |||
45 | SET FOREIGN_KEY_CHECKS = 1; | ||
46 | |||
47 | |||
48 | /* | ||
49 | Navicat MySQL Data Transfer | ||
50 | |||
51 | Source Server : 127 | ||
52 | Source Server Version : 50623 | ||
53 | Source Host : localhost | ||
54 | Source Database : demo_st | ||
55 | |||
56 | Target Server Version : 50623 | ||
57 | File Encoding : utf-8 | ||
58 | |||
59 | Date: 04/14/2016 11:31:53 AM | ||
60 | */ | ||
61 | |||
62 | SET NAMES utf8; | ||
63 | SET FOREIGN_KEY_CHECKS = 0; | ||
64 | |||
65 | -- ---------------------------- | ||
66 | -- Table structure for `cms_column` | ||
67 | -- ---------------------------- | ||
68 | DROP TABLE IF EXISTS `cms_column`; | ||
69 | CREATE TABLE `cms_column` ( | ||
70 | `id` bigint(20) NOT NULL AUTO_INCREMENT, | ||
71 | `column_code` varchar(32) NOT NULL, | ||
72 | `name` varchar(128) NOT NULL, | ||
73 | `sequence` int(11) DEFAULT NULL, | ||
74 | `is_navigation` tinyint(1) DEFAULT NULL, | ||
75 | `target_url` varchar(255) DEFAULT NULL, | ||
76 | `is_publish` tinyint(1) DEFAULT NULL, | ||
77 | `home_model_id` char(32) DEFAULT NULL, | ||
78 | `list_model_id` char(32) DEFAULT NULL, | ||
79 | `parent_id` char(32) DEFAULT NULL, | ||
80 | `status` tinyint(4) DEFAULT NULL, | ||
81 | `creater_id` varchar(64) DEFAULT NULL, | ||
82 | `create_time` bigint(20) DEFAULT NULL, | ||
83 | PRIMARY KEY (`id`) | ||
84 | ) ENGINE=InnoDB AUTO_INCREMENT=10007 DEFAULT CHARSET=utf8; | ||
85 | |||
86 | -- ---------------------------- | ||
87 | -- Records of `cms_column` | ||
88 | -- ---------------------------- | ||
89 | BEGIN; | ||
90 | INSERT INTO `cms_column` VALUES | ||
91 | ('10004', 'jiangren', '匠人', '0', '1', null, '1', '0', '0', '0', '1', '', '1460532655677'), | ||
92 | ('10005', 'xianchangzhaopian', '现场照片', '0', '1', null, '1', '0', '0', '0', '1', '', '1460600453575'), | ||
93 | ('10006', 'meitibaodao', '媒体报道', '0', '1', null, '1', '0', '0', '0', '1', '', '1460600471869'); | ||
94 | COMMIT; | ||
95 | |||
96 | SET FOREIGN_KEY_CHECKS = 1; | ||
97 | |||
98 | |||
99 | |||
100 | |||
101 | SET FOREIGN_KEY_CHECKS = 0; | ||
102 | |||
103 | DROP TABLE IF EXISTS `cms_mould`; | ||
104 | CREATE TABLE `cms_mould` ( | ||
105 | `id` bigint(20) NOT NULL AUTO_INCREMENT, | ||
106 | `name` char(30) DEFAULT NULL COMMENT '模板的名称', | ||
107 | `path` char(255) DEFAULT NULL COMMENT '模板的路径', | ||
108 | `type` int(11) DEFAULT NULL COMMENT '模板的类型', | ||
109 | `default_template` tinyint(1) DEFAULT NULL COMMENT '是否是默认模板', | ||
110 | PRIMARY KEY (`id`) | ||
111 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
112 | |||
113 | -- insert into `cms_mould`(`id`,`name`,`path`,`type`,`default_template`) values | ||
114 | -- ('077340ef44c040b385641128cc2674e4','联系我们模板','temps/contactus','4','0'), | ||
115 | -- ('11a67ad89d584bf4acea0d5a17fcfd6b','关于我们模板','temps/aboutus','4','0'), | ||
116 | -- ('13fafc32beb048878edf964f7702c1ef','文章页模板','temps/pub','2','0'), | ||
117 | -- ('650383dfa6f741f5afc355eac4ba8d64','公司动态模板','temps/news','4','0'), | ||
118 | -- ('6b9741afbf9c41d98433391867152409','动态列表页模板','temps/newslist','3','0'), | ||
119 | -- ('c3a0b1fc1ffe4df99a3321974a2d0f33','网站首页(服务介绍)模板','/index','4','0'), | ||
120 | -- ('d1cd3eb36584439d8e90c64f7b762808','案例展示页模板','/temps/case','4','0'); | ||
121 | -- SET FOREIGN_KEY_CHECKS = 1; | ||
122 |
1 | /* | ||
2 | Navicat MySQL Data Transfer | ||
3 | |||
4 | Source Server : sdk test | ||
5 | Source Server Version : 50616 | ||
6 | Source Host : rm-m5eg27hoe205fc0x2.mysql.rds.aliyuncs.com:3306 | ||
7 | Source Database : csair_dp | ||
8 | |||
9 | Target Server Type : MYSQL | ||
10 | Target Server Version : 50616 | ||
11 | File Encoding : 65001 | ||
12 | |||
13 | Date: 2017-03-23 17:43:12 | ||
14 | */ | ||
15 | |||
16 | SET FOREIGN_KEY_CHECKS=0; | ||
17 | |||
18 | -- ---------------------------- | ||
19 | -- Table structure for `t_prize_info` | ||
20 | -- ---------------------------- | ||
21 | DROP TABLE IF EXISTS `t_prize_info`; | ||
22 | CREATE TABLE `t_prize_info` ( | ||
23 | `id` int(11) NOT NULL AUTO_INCREMENT, | ||
24 | `prize_pool_id` varchar(32) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '应用ID', | ||
25 | `name` varchar(45) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '奖品的名称', | ||
26 | `number` int(11) NOT NULL DEFAULT '0' COMMENT '奖品总量', | ||
27 | `draw_number` int(11) NOT NULL DEFAULT '0' COMMENT '已经抽取的数量', | ||
28 | `prize_type` int(11) NOT NULL DEFAULT '1' COMMENT '奖品类型:1、实物;2、积分;', | ||
29 | `prize_image` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '图片地址', | ||
30 | `ext_information` varchar(255) COLLATE utf8mb4_bin NOT NULL COMMENT '扩展信息,存储相应奖品的个性信息。', | ||
31 | `probability` double NOT NULL COMMENT '中奖概率', | ||
32 | `lottery_draw_amount` int(11) DEFAULT NULL COMMENT '每周发放上限', | ||
33 | `positions` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '位置信息,针对大转盘设置。多个位置用“,”分割。', | ||
34 | `deleted` tinyint(4) NOT NULL DEFAULT '0', | ||
35 | `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
36 | `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, | ||
37 | PRIMARY KEY (`id`), | ||
38 | KEY `IDX_PRIZE_POOL_ID` (`prize_pool_id`) USING BTREE | ||
39 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; | ||
40 | |||
41 | -- ---------------------------- | ||
42 | -- Records of t_prize_info | ||
43 | -- ---------------------------- | ||
44 | |||
45 | -- ---------------------------- | ||
46 | -- Table structure for `t_prize_lottery_record` | ||
47 | -- ---------------------------- | ||
48 | DROP TABLE IF EXISTS `t_prize_lottery_record`; | ||
49 | CREATE TABLE `t_prize_lottery_record` ( | ||
50 | `id` int(11) NOT NULL AUTO_INCREMENT, | ||
51 | `prize_pool_id` varchar(32) COLLATE utf8mb4_bin NOT NULL, | ||
52 | `phone_number` varchar(128) COLLATE utf8mb4_bin NOT NULL, | ||
53 | `lottery_platform` varchar(128) COLLATE utf8mb4_bin DEFAULT NULL, | ||
54 | `lottery_day` varchar(128) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '抽奖日期', | ||
55 | `deleted` tinyint(4) NOT NULL DEFAULT '0', | ||
56 | `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
57 | `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, | ||
58 | PRIMARY KEY (`id`), | ||
59 | KEY `IDX_LO_PR_PH` (`lottery_platform`,`prize_pool_id`,`phone_number`), | ||
60 | KEY `IDX_LO_LO_PR_PH` (`lottery_platform`,`lottery_day`,`prize_pool_id`,`phone_number`) | ||
61 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; | ||
62 | |||
63 | -- ---------------------------- | ||
64 | -- Records of t_prize_lottery_record | ||
65 | -- ---------------------------- | ||
66 | |||
67 | -- ---------------------------- | ||
68 | -- Table structure for `t_prize_pool` | ||
69 | -- ---------------------------- | ||
70 | DROP TABLE IF EXISTS `t_prize_pool`; | ||
71 | CREATE TABLE `t_prize_pool` ( | ||
72 | `id` varchar(32) COLLATE utf8mb4_bin NOT NULL, | ||
73 | `name` varchar(45) COLLATE utf8mb4_bin NOT NULL COMMENT '活动名称', | ||
74 | `desscription` text CHARACTER SET utf8mb4 COMMENT '活动描述', | ||
75 | `winning_rate` int(11) NOT NULL DEFAULT '1' COMMENT '1 表示 万分之一 中奖率,非负, 0<= r <= 10000,在这个范围之外取其极限。', | ||
76 | `deleted` tinyint(4) NOT NULL DEFAULT '1' COMMENT '互动的状态,1、进行中;0、已结束。', | ||
77 | `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP, | ||
78 | `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, | ||
79 | `is_lottery_platform` tinyint(4) DEFAULT '2' COMMENT '1 全平台,2 pc/手机端平台', | ||
80 | `lottery_frequency` tinyint(4) NOT NULL COMMENT '参与间隔:1、整个活动;2、每天', | ||
81 | `lottery_times` int(11) NOT NULL COMMENT '抽奖次数', | ||
82 | `draw_times` int(11) DEFAULT NULL COMMENT '总中奖次数', | ||
83 | `draw_frequency` int(11) DEFAULT NULL COMMENT '中奖间隔:1、整个活动;2、每天;3、每周', | ||
84 | `draw_frequency_times` int(11) DEFAULT NULL COMMENT '中奖间隔内的中奖次数', | ||
85 | `is_white_rand` tinyint(4) DEFAULT '1' COMMENT '适用用户: 1 通用,2 白名单用户', | ||
86 | PRIMARY KEY (`id`), | ||
87 | KEY `IDX_IS_WHITE_RAND` (`is_white_rand`) USING BTREE | ||
88 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; | ||
89 | |||
90 | -- ---------------------------- | ||
91 | -- Records of t_prize_pool | ||
92 | -- ---------------------------- | ||
93 | |||
94 | -- ---------------------------- | ||
95 | -- Table structure for `t_prize_white_info` | ||
96 | -- ---------------------------- | ||
97 | DROP TABLE IF EXISTS `t_prize_white_info`; | ||
98 | CREATE TABLE `t_prize_white_info` ( | ||
99 | `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | ||
100 | `prize_pool_id` varchar(32) DEFAULT NULL, | ||
101 | `phone_number` varchar(255) DEFAULT NULL, | ||
102 | `online_time` timestamp NULL DEFAULT NULL COMMENT '上线时间', | ||
103 | `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP, | ||
104 | `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, | ||
105 | `deleted` tinyint(4) DEFAULT '0', | ||
106 | PRIMARY KEY (`id`), | ||
107 | KEY `IDX_PHONE_NUMBER_ONLINE_TIME` (`phone_number`,`online_time`) | ||
108 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
109 | |||
110 | -- ---------------------------- | ||
111 | -- Records of t_prize_white_info | ||
112 | -- ---------------------------- | ||
113 | |||
114 | -- ---------------------------- | ||
115 | -- Table structure for `t_prize_winning_record` | ||
116 | -- ---------------------------- | ||
117 | DROP TABLE IF EXISTS `t_prize_winning_record`; | ||
118 | CREATE TABLE `t_prize_winning_record` ( | ||
119 | `id` int(11) NOT NULL AUTO_INCREMENT, | ||
120 | `prize_pool_id` varchar(32) COLLATE utf8mb4_bin DEFAULT NULL, | ||
121 | `phone_number` varchar(128) COLLATE utf8mb4_bin NOT NULL, | ||
122 | `lottery_platform` varchar(128) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '抽奖平台', | ||
123 | `prize_id` int(11) NOT NULL, | ||
124 | `prize_name` varchar(45) COLLATE utf8mb4_bin NOT NULL COMMENT '奖品的名称', | ||
125 | `prize_type` int(11) NOT NULL DEFAULT '1' COMMENT '奖品类型:1、实物;2、积分;', | ||
126 | `prize_extends` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '扩展信息,存储相应奖品的个性信息。', | ||
127 | `prize_image` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL, | ||
128 | `prize_no` varchar(45) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '奖品的编号,20位数字', | ||
129 | `winning_day` varchar(128) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '中奖日期', | ||
130 | `deleted` tinyint(4) NOT NULL DEFAULT '0', | ||
131 | `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
132 | `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, | ||
133 | PRIMARY KEY (`id`), | ||
134 | KEY `IDX_PR_PR_WI` (`prize_id`,`prize_pool_id`,`winning_day`), | ||
135 | KEY `IDX_PH_PR_WI` (`phone_number`,`prize_pool_id`,`winning_day`) | ||
136 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; | ||
137 | |||
138 | -- ---------------------------- | ||
139 | -- Records of t_prize_winning_record | ||
140 | -- ---------------------------- |
1 | /* | ||
2 | Navicat MySQL Data Transfer | ||
3 | |||
4 | Source Server : 127 | ||
5 | Source Server Version : 50623 | ||
6 | Source Host : localhost | ||
7 | Source Database : demo_st | ||
8 | |||
9 | Target Server Version : 50623 | ||
10 | File Encoding : utf-8 | ||
11 | |||
12 | Date: 04/12/2016 16:05:41 PM | ||
13 | */ | ||
14 | |||
15 | SET NAMES utf8; | ||
16 | SET FOREIGN_KEY_CHECKS = 0; | ||
17 | |||
18 | -- ---------------------------- | ||
19 | -- Table structure for `product_user_collect` | ||
20 | -- ---------------------------- | ||
21 | DROP TABLE IF EXISTS `product_user_collect`; | ||
22 | CREATE TABLE `product_user_collect` ( | ||
23 | `id` bigint(20) NOT NULL AUTO_INCREMENT, | ||
24 | `create_time` bigint(20) NOT NULL, | ||
25 | `status` tinyint(4) NOT NULL, | ||
26 | `user_name` varchar(255) NOT NULL, | ||
27 | `user_phone` varchar(255) NOT NULL, | ||
28 | `user_address` varchar(255) NOT NULL, | ||
29 | `user_buy_product` varchar(255) DEFAULT NULL, | ||
30 | `user_buy_time` varchar(255) DEFAULT NULL, | ||
31 | `img_url` varchar(255) DEFAULT NULL, | ||
32 | `user_describe` text, | ||
33 | PRIMARY KEY (`id`) | ||
34 | ) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8mb4; | ||
35 | |||
36 | SET FOREIGN_KEY_CHECKS = 1; | ||
37 | |||
38 | /* | ||
39 | Navicat MySQL Data Transfer | ||
40 | |||
41 | Source Server : 127 | ||
42 | Source Server Version : 50623 | ||
43 | Source Host : localhost | ||
44 | Source Database : demo_st | ||
45 | |||
46 | Target Server Version : 50623 | ||
47 | File Encoding : utf-8 | ||
48 | |||
49 | Date: 04/12/2016 16:05:37 PM | ||
50 | */ | ||
51 | |||
52 | SET NAMES utf8; | ||
53 | SET FOREIGN_KEY_CHECKS = 0; | ||
54 | |||
55 | -- ---------------------------- | ||
56 | -- Table structure for `product_apply` | ||
57 | -- ---------------------------- | ||
58 | DROP TABLE IF EXISTS `product_apply`; | ||
59 | CREATE TABLE `product_apply` ( | ||
60 | `id` bigint(20) NOT NULL AUTO_INCREMENT, | ||
61 | `city` varchar(255) DEFAULT NULL, | ||
62 | `activity_time` varchar(255) DEFAULT NULL, | ||
63 | `activity_address` varchar(255) DEFAULT NULL, | ||
64 | `phone` varchar(255) DEFAULT NULL, | ||
65 | `name` varchar(255) DEFAULT NULL, | ||
66 | `count` bigint(20) DEFAULT NULL, | ||
67 | `product` varchar(255) DEFAULT NULL, | ||
68 | `reason` varchar(255) DEFAULT NULL, | ||
69 | `create_time` bigint(20) NOT NULL, | ||
70 | PRIMARY KEY (`id`) | ||
71 | ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4; | ||
72 | |||
73 | |||
74 | SET FOREIGN_KEY_CHECKS = 1; |
yry_dp/src/main/resources/sql/mysql-pv.sql
0 → 100644
1 | /* | ||
2 | Navicat MySQL Data Transfer | ||
3 | |||
4 | Source Server : 127 | ||
5 | Source Server Version : 50623 | ||
6 | Source Host : localhost | ||
7 | Source Database : demo_st | ||
8 | |||
9 | Target Server Version : 50623 | ||
10 | File Encoding : utf-8 | ||
11 | |||
12 | Date: 04/13/2016 17:23:29 PM | ||
13 | */ | ||
14 | |||
15 | SET NAMES utf8; | ||
16 | SET FOREIGN_KEY_CHECKS = 0; | ||
17 | |||
18 | -- ---------------------------- | ||
19 | -- Table structure for `pv_info` | ||
20 | -- ---------------------------- | ||
21 | DROP TABLE IF EXISTS `pv_info`; | ||
22 | CREATE TABLE `pv_info` ( | ||
23 | `pv_count` bigint(20) NOT NULL DEFAULT '0' | ||
24 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; | ||
25 | |||
26 | -- ---------------------------- | ||
27 | -- Records of `pv_info` | ||
28 | -- ---------------------------- | ||
29 | BEGIN; | ||
30 | INSERT INTO `pv_info` VALUES ('1'); | ||
31 | COMMIT; | ||
32 | |||
33 | SET FOREIGN_KEY_CHECKS = 1; |
yry_dp/src/main/resources/sql/mysql-rand.sql
0 → 100644
1 | /* | ||
2 | Navicat MySQL Data Transfer | ||
3 | |||
4 | Source Server : sdk test | ||
5 | Source Server Version : 50616 | ||
6 | Source Host : rm-m5eg27hoe205fc0x2.mysql.rds.aliyuncs.com:3306 | ||
7 | Source Database : csair_dp | ||
8 | |||
9 | Target Server Type : MYSQL | ||
10 | Target Server Version : 50616 | ||
11 | File Encoding : 65001 | ||
12 | |||
13 | Date: 2017-04-20 15:35:44 | ||
14 | */ | ||
15 | |||
16 | SET FOREIGN_KEY_CHECKS=0; | ||
17 | |||
18 | -- ---------------------------- | ||
19 | -- Table structure for `t_rand_application` | ||
20 | -- ---------------------------- | ||
21 | DROP TABLE IF EXISTS `t_rand_application`; | ||
22 | CREATE TABLE `t_rand_application` ( | ||
23 | `id` char(32) NOT NULL, | ||
24 | `deleted` tinyint(4) DEFAULT '1', | ||
25 | `offline_date` datetime DEFAULT NULL COMMENT '下线时间', | ||
26 | `app_name` varchar(255) DEFAULT NULL, | ||
27 | `description` text, | ||
28 | `app_dir` varchar(255) DEFAULT NULL, | ||
29 | `create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, | ||
30 | `update_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, | ||
31 | PRIMARY KEY (`id`) | ||
32 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; | ||
33 | -- ---------------------------- | ||
34 | -- Table structure for `t_rand_prize_pool` | ||
35 | -- ---------------------------- | ||
36 | DROP TABLE IF EXISTS `t_rand_prize_pool`; | ||
37 | CREATE TABLE `t_rand_prize_pool` ( | ||
38 | `id` char(32) NOT NULL, | ||
39 | `app_id` char(32) DEFAULT NULL, | ||
40 | `name` varchar(45) NOT NULL COMMENT '活动名称', | ||
41 | `description` text COMMENT '活动描述', | ||
42 | `winning_rate` int(11) NOT NULL DEFAULT '1' COMMENT '1 表示 万分之一 中奖率,非负, 0<= r <= 10000,在这个范围之外取其极限。', | ||
43 | `deleted` tinyint(4) NOT NULL DEFAULT '1' COMMENT '互动的状态,1、进行中;0、已结束。', | ||
44 | `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP, | ||
45 | `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, | ||
46 | `is_lottery_platform` tinyint(4) DEFAULT '2' COMMENT '1 全平台,2 pc/手机端平台', | ||
47 | `lottery_frequency` tinyint(4) NOT NULL COMMENT '参与间隔:1、整个活动;2、每天', | ||
48 | `lottery_times` int(11) NOT NULL COMMENT '抽奖次数', | ||
49 | `draw_times` int(11) DEFAULT NULL COMMENT '总中奖次数', | ||
50 | `draw_frequency` int(11) DEFAULT NULL COMMENT '中奖间隔:1、整个活动;2、每天;3、每周', | ||
51 | `draw_frequency_times` int(11) DEFAULT NULL COMMENT '中奖间隔内的中奖次数', | ||
52 | `is_white_rand` tinyint(4) DEFAULT '1' COMMENT '适用用户: 1 通用,2 白名单用户', | ||
53 | PRIMARY KEY (`id`), | ||
54 | KEY `IDX_APP_ID_IS_WHITE_RAND` (`app_id`, `is_white_rand`) USING BTREE | ||
55 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; | ||
56 | |||
57 | -- ---------------------------- | ||
58 | -- Table structure for `t_rand_prize_info` | ||
59 | -- ---------------------------- | ||
60 | DROP TABLE IF EXISTS `t_rand_prize_info`; | ||
61 | CREATE TABLE `t_rand_prize_info` ( | ||
62 | `id` bigint(20) NOT NULL AUTO_INCREMENT, | ||
63 | `app_id` char(32) DEFAULT NULL, | ||
64 | `prize_pool_id` char(32) DEFAULT NULL COMMENT '应用ID', | ||
65 | `name` varchar(45) DEFAULT NULL COMMENT '奖品的名称', | ||
66 | `number` int(11) NOT NULL DEFAULT '0' COMMENT '奖品总量', | ||
67 | `draw_number` int(11) NOT NULL DEFAULT '0' COMMENT '已经抽取的数量', | ||
68 | `prize_type` int(11) NOT NULL DEFAULT '1' COMMENT '奖品类型:1、实物;2、优惠券;', | ||
69 | `prize_image` varchar(255) DEFAULT NULL COMMENT '图片地址', | ||
70 | `ext_information` varchar(255) NOT NULL COMMENT '扩展信息,存储相应奖品的个性信息。', | ||
71 | `probability` double NOT NULL COMMENT '中奖概率', | ||
72 | `user_lottery_draw_amount` int(11) DEFAULT NULL COMMENT '用户每天中奖次数', | ||
73 | `lottery_draw_amount` int(11) DEFAULT NULL COMMENT '奖品每周发放上限', | ||
74 | `positions` varchar(255) DEFAULT NULL COMMENT '位置信息,针对大转盘设置。多个位置用“,”分割。', | ||
75 | `deleted` tinyint(4) NOT NULL DEFAULT '0', | ||
76 | `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
77 | `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, | ||
78 | PRIMARY KEY (`id`), | ||
79 | KEY `IDX_APP_ID_PRIZE_POOL_ID` (`app_id`, `prize_pool_id`) USING BTREE | ||
80 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; |
yry_dp/src/main/resources/urlrewrite.xml
0 → 100644
1 | package com.example; | ||
2 | |||
3 | import org.junit.Test; | ||
4 | import org.junit.runner.RunWith; | ||
5 | import org.springframework.test.context.web.WebAppConfiguration; | ||
6 | import org.springframework.boot.test.SpringApplicationConfiguration; | ||
7 | import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; | ||
8 | |||
9 | @RunWith(SpringJUnit4ClassRunner.class) | ||
10 | @SpringApplicationConfiguration(classes = DemoApplication.class) | ||
11 | @WebAppConfiguration | ||
12 | public class DemoApplicationTests { | ||
13 | |||
14 | @Test | ||
15 | public void contextLoads() { | ||
16 | } | ||
17 | |||
18 | } |
yry_dp/wxgateway.iml
0 → 100644
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4"> | ||
3 | <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="false"> | ||
4 | <output url="file://$MODULE_DIR$/target/classes" /> | ||
5 | <output-test url="file://$MODULE_DIR$/target/test-classes" /> | ||
6 | <content url="file://$MODULE_DIR$"> | ||
7 | <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" /> | ||
8 | <sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" /> | ||
9 | <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" /> | ||
10 | <excludeFolder url="file://$MODULE_DIR$/target" /> | ||
11 | </content> | ||
12 | <orderEntry type="inheritedJdk" /> | ||
13 | <orderEntry type="sourceFolder" forTests="false" /> | ||
14 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-data-mongodb:1.3.3.RELEASE" level="project" /> | ||
15 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter:1.3.3.RELEASE" level="project" /> | ||
16 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot:1.3.3.RELEASE" level="project" /> | ||
17 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-autoconfigure:1.3.3.RELEASE" level="project" /> | ||
18 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-logging:1.3.3.RELEASE" level="project" /> | ||
19 | <orderEntry type="library" name="Maven: ch.qos.logback:logback-classic:1.1.5" level="project" /> | ||
20 | <orderEntry type="library" name="Maven: ch.qos.logback:logback-core:1.1.5" level="project" /> | ||
21 | <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.16" level="project" /> | ||
22 | <orderEntry type="library" name="Maven: org.slf4j:log4j-over-slf4j:1.7.16" level="project" /> | ||
23 | <orderEntry type="library" scope="RUNTIME" name="Maven: org.yaml:snakeyaml:1.16" level="project" /> | ||
24 | <orderEntry type="library" name="Maven: org.mongodb:mongo-java-driver:2.13.3" level="project" /> | ||
25 | <orderEntry type="library" name="Maven: org.springframework.data:spring-data-mongodb:1.8.4.RELEASE" level="project" /> | ||
26 | <orderEntry type="library" name="Maven: org.springframework:spring-expression:4.2.5.RELEASE" level="project" /> | ||
27 | <orderEntry type="library" name="Maven: org.springframework.data:spring-data-commons:1.11.4.RELEASE" level="project" /> | ||
28 | <orderEntry type="library" name="Maven: org.slf4j:jcl-over-slf4j:1.7.16" level="project" /> | ||
29 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-redis:1.3.3.RELEASE" level="project" /> | ||
30 | <orderEntry type="library" name="Maven: redis.clients:jedis:2.7.3" level="project" /> | ||
31 | <orderEntry type="library" name="Maven: org.apache.commons:commons-pool2:2.4.2" level="project" /> | ||
32 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-web:1.3.3.RELEASE" level="project" /> | ||
33 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-tomcat:1.3.3.RELEASE" level="project" /> | ||
34 | <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-logging-juli:8.0.32" level="project" /> | ||
35 | <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-websocket:8.0.32" level="project" /> | ||
36 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-validation:1.3.3.RELEASE" level="project" /> | ||
37 | <orderEntry type="library" name="Maven: org.hibernate:hibernate-validator:5.2.4.Final" level="project" /> | ||
38 | <orderEntry type="library" name="Maven: javax.validation:validation-api:1.1.0.Final" level="project" /> | ||
39 | <orderEntry type="library" name="Maven: org.jboss.logging:jboss-logging:3.3.0.Final" level="project" /> | ||
40 | <orderEntry type="library" name="Maven: com.fasterxml:classmate:1.1.0" level="project" /> | ||
41 | <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-databind:2.6.5" level="project" /> | ||
42 | <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-annotations:2.6.5" level="project" /> | ||
43 | <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-core:2.6.5" level="project" /> | ||
44 | <orderEntry type="library" name="Maven: org.springframework:spring-web:4.2.5.RELEASE" level="project" /> | ||
45 | <orderEntry type="library" name="Maven: org.springframework:spring-webmvc:4.2.5.RELEASE" level="project" /> | ||
46 | <orderEntry type="library" name="Maven: commons-httpclient:commons-httpclient:3.1" level="project" /> | ||
47 | <orderEntry type="library" name="Maven: commons-logging:commons-logging:1.0.4" level="project" /> | ||
48 | <orderEntry type="library" scope="RUNTIME" name="Maven: mysql:mysql-connector-java:5.1.38" level="project" /> | ||
49 | <orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-starter-test:1.3.3.RELEASE" level="project" /> | ||
50 | <orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.12" level="project" /> | ||
51 | <orderEntry type="library" scope="TEST" name="Maven: org.mockito:mockito-core:1.10.19" level="project" /> | ||
52 | <orderEntry type="library" scope="TEST" name="Maven: org.objenesis:objenesis:2.1" level="project" /> | ||
53 | <orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" /> | ||
54 | <orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-library:1.3" level="project" /> | ||
55 | <orderEntry type="library" name="Maven: org.springframework:spring-core:4.2.5.RELEASE" level="project" /> | ||
56 | <orderEntry type="library" scope="TEST" name="Maven: org.springframework:spring-test:4.2.5.RELEASE" level="project" /> | ||
57 | <orderEntry type="library" name="Maven: org.json:json:20140107" level="project" /> | ||
58 | <orderEntry type="library" scope="PROVIDED" name="Maven: org.apache.tomcat.embed:tomcat-embed-jasper:8.0.32" level="project" /> | ||
59 | <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-core:8.0.32" level="project" /> | ||
60 | <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-el:8.0.32" level="project" /> | ||
61 | <orderEntry type="library" scope="PROVIDED" name="Maven: org.eclipse.jdt.core.compiler:ecj:4.4.2" level="project" /> | ||
62 | <orderEntry type="library" name="Maven: javax.servlet:jstl:1.2" level="project" /> | ||
63 | <orderEntry type="library" name="Maven: org.mybatis.spring.boot:mybatis-spring-boot-starter:1.0.0" level="project" /> | ||
64 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-jdbc:1.3.3.RELEASE" level="project" /> | ||
65 | <orderEntry type="library" name="Maven: org.apache.tomcat:tomcat-jdbc:8.0.32" level="project" /> | ||
66 | <orderEntry type="library" name="Maven: org.apache.tomcat:tomcat-juli:8.0.32" level="project" /> | ||
67 | <orderEntry type="library" name="Maven: org.springframework:spring-jdbc:4.2.5.RELEASE" level="project" /> | ||
68 | <orderEntry type="library" name="Maven: org.mybatis.spring.boot:mybatis-spring-boot-autoconfigure:1.0.0" level="project" /> | ||
69 | <orderEntry type="library" name="Maven: org.mybatis:mybatis:3.3.0" level="project" /> | ||
70 | <orderEntry type="library" name="Maven: org.mybatis:mybatis-spring:1.2.3" level="project" /> | ||
71 | <orderEntry type="library" name="Maven: com.h2database:h2:1.4.191" level="project" /> | ||
72 | <orderEntry type="library" name="Maven: org.springframework.data:spring-data-redis:1.5.0.RELEASE" level="project" /> | ||
73 | <orderEntry type="library" name="Maven: org.springframework:spring-context:4.2.5.RELEASE" level="project" /> | ||
74 | <orderEntry type="library" name="Maven: org.springframework:spring-context-support:4.2.5.RELEASE" level="project" /> | ||
75 | <orderEntry type="library" name="Maven: org.springframework:spring-tx:4.2.5.RELEASE" level="project" /> | ||
76 | <orderEntry type="library" name="Maven: org.springframework:spring-aop:4.2.5.RELEASE" level="project" /> | ||
77 | <orderEntry type="library" name="Maven: aopalliance:aopalliance:1.0" level="project" /> | ||
78 | <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.16" level="project" /> | ||
79 | <orderEntry type="library" name="Maven: org.springframework:spring-webmvc-portlet:4.2.5.RELEASE" level="project" /> | ||
80 | <orderEntry type="library" name="Maven: org.springframework:spring-beans:4.2.5.RELEASE" level="project" /> | ||
81 | <orderEntry type="library" name="Maven: org.tuckey:urlrewritefilter:4.0.3" level="project" /> | ||
82 | <orderEntry type="library" name="Maven: tk.mybatis:mapper:3.3.4" level="project" /> | ||
83 | <orderEntry type="library" name="Maven: javax.persistence:persistence-api:1.0" level="project" /> | ||
84 | <orderEntry type="library" name="Maven: org.apache.commons:commons-lang3:3.3.2" level="project" /> | ||
85 | <orderEntry type="library" name="Maven: commons-io:commons-io:2.1" level="project" /> | ||
86 | <orderEntry type="library" name="Maven: org.apache.wink:wink-client:1.3.0" level="project" /> | ||
87 | <orderEntry type="library" name="Maven: org.apache.wink:wink-common:1.3.0" level="project" /> | ||
88 | <orderEntry type="library" name="Maven: javax.ws.rs:jsr311-api:1.1.1" level="project" /> | ||
89 | <orderEntry type="library" name="Maven: org.apache.geronimo.specs:geronimo-annotation_1.1_spec:1.0" level="project" /> | ||
90 | <orderEntry type="library" name="Maven: javax.xml.bind:jaxb-api:2.2" level="project" /> | ||
91 | <orderEntry type="library" name="Maven: javax.xml.stream:stax-api:1.0-2" level="project" /> | ||
92 | <orderEntry type="library" name="Maven: com.sun.xml.bind:jaxb-impl:2.2.1.1" level="project" /> | ||
93 | <orderEntry type="library" name="Maven: javax.activation:activation:1.1" level="project" /> | ||
94 | <orderEntry type="library" name="Maven: dom4j:dom4j:1.6.1" level="project" /> | ||
95 | <orderEntry type="library" name="Maven: xml-apis:xml-apis:1.0.b2" level="project" /> | ||
96 | <orderEntry type="library" name="Maven: commons-codec:commons-codec:1.9" level="project" /> | ||
97 | <orderEntry type="library" name="Maven: commons-fileupload:commons-fileupload:1.2.2" level="project" /> | ||
98 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-jetty:1.3.3.RELEASE" level="project" /> | ||
99 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-servlets:9.2.15.v20160210" level="project" /> | ||
100 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-continuation:9.2.15.v20160210" level="project" /> | ||
101 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-http:9.2.15.v20160210" level="project" /> | ||
102 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-util:9.2.15.v20160210" level="project" /> | ||
103 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-io:9.2.15.v20160210" level="project" /> | ||
104 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-webapp:9.2.15.v20160210" level="project" /> | ||
105 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-xml:9.2.15.v20160210" level="project" /> | ||
106 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-servlet:9.2.15.v20160210" level="project" /> | ||
107 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-security:9.2.15.v20160210" level="project" /> | ||
108 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-server:9.2.15.v20160210" level="project" /> | ||
109 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:websocket-server:9.2.15.v20160210" level="project" /> | ||
110 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:websocket-common:9.2.15.v20160210" level="project" /> | ||
111 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:websocket-api:9.2.15.v20160210" level="project" /> | ||
112 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:websocket-client:9.2.15.v20160210" level="project" /> | ||
113 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:websocket-servlet:9.2.15.v20160210" level="project" /> | ||
114 | <orderEntry type="library" name="Maven: javax.servlet:javax.servlet-api:3.1.0" level="project" /> | ||
115 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:javax-websocket-server-impl:9.2.15.v20160210" level="project" /> | ||
116 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-annotations:9.2.15.v20160210" level="project" /> | ||
117 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-plus:9.2.15.v20160210" level="project" /> | ||
118 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-jndi:9.2.15.v20160210" level="project" /> | ||
119 | <orderEntry type="library" name="Maven: javax.annotation:javax.annotation-api:1.2" level="project" /> | ||
120 | <orderEntry type="library" name="Maven: org.ow2.asm:asm:5.0.1" level="project" /> | ||
121 | <orderEntry type="library" name="Maven: org.ow2.asm:asm-commons:5.0.1" level="project" /> | ||
122 | <orderEntry type="library" name="Maven: org.ow2.asm:asm-tree:5.0.1" level="project" /> | ||
123 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:javax-websocket-client-impl:9.2.15.v20160210" level="project" /> | ||
124 | <orderEntry type="library" name="Maven: javax.websocket:javax.websocket-api:1.0" level="project" /> | ||
125 | </component> | ||
126 | </module> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
yry_dp/yry_dp.iml
0 → 100644
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <module type="JAVA_MODULE" version="4"> | ||
3 | <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="false"> | ||
4 | <output url="file://$MODULE_DIR$/target/classes" /> | ||
5 | <output-test url="file://$MODULE_DIR$/target/test-classes" /> | ||
6 | <content url="file://$MODULE_DIR$"> | ||
7 | <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" /> | ||
8 | <sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" /> | ||
9 | <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" /> | ||
10 | <excludeFolder url="file://$MODULE_DIR$/target" /> | ||
11 | </content> | ||
12 | <orderEntry type="inheritedJdk" /> | ||
13 | <orderEntry type="sourceFolder" forTests="false" /> | ||
14 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-data-mongodb:1.3.3.RELEASE" level="project" /> | ||
15 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter:1.3.3.RELEASE" level="project" /> | ||
16 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot:1.3.3.RELEASE" level="project" /> | ||
17 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-autoconfigure:1.3.3.RELEASE" level="project" /> | ||
18 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-logging:1.3.3.RELEASE" level="project" /> | ||
19 | <orderEntry type="library" name="Maven: ch.qos.logback:logback-classic:1.1.5" level="project" /> | ||
20 | <orderEntry type="library" name="Maven: ch.qos.logback:logback-core:1.1.5" level="project" /> | ||
21 | <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.16" level="project" /> | ||
22 | <orderEntry type="library" name="Maven: org.slf4j:log4j-over-slf4j:1.7.16" level="project" /> | ||
23 | <orderEntry type="library" scope="RUNTIME" name="Maven: org.yaml:snakeyaml:1.16" level="project" /> | ||
24 | <orderEntry type="library" name="Maven: org.mongodb:mongo-java-driver:2.13.3" level="project" /> | ||
25 | <orderEntry type="library" name="Maven: org.springframework.data:spring-data-mongodb:1.8.4.RELEASE" level="project" /> | ||
26 | <orderEntry type="library" name="Maven: org.springframework:spring-expression:4.2.5.RELEASE" level="project" /> | ||
27 | <orderEntry type="library" name="Maven: org.springframework.data:spring-data-commons:1.11.4.RELEASE" level="project" /> | ||
28 | <orderEntry type="library" name="Maven: org.slf4j:jcl-over-slf4j:1.7.16" level="project" /> | ||
29 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-redis:1.3.3.RELEASE" level="project" /> | ||
30 | <orderEntry type="library" name="Maven: redis.clients:jedis:2.7.3" level="project" /> | ||
31 | <orderEntry type="library" name="Maven: org.apache.commons:commons-pool2:2.4.2" level="project" /> | ||
32 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-web:1.3.3.RELEASE" level="project" /> | ||
33 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-tomcat:1.3.3.RELEASE" level="project" /> | ||
34 | <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-logging-juli:8.0.32" level="project" /> | ||
35 | <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-websocket:8.0.32" level="project" /> | ||
36 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-validation:1.3.3.RELEASE" level="project" /> | ||
37 | <orderEntry type="library" name="Maven: org.hibernate:hibernate-validator:5.2.4.Final" level="project" /> | ||
38 | <orderEntry type="library" name="Maven: javax.validation:validation-api:1.1.0.Final" level="project" /> | ||
39 | <orderEntry type="library" name="Maven: org.jboss.logging:jboss-logging:3.3.0.Final" level="project" /> | ||
40 | <orderEntry type="library" name="Maven: com.fasterxml:classmate:1.1.0" level="project" /> | ||
41 | <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-databind:2.6.5" level="project" /> | ||
42 | <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-annotations:2.6.5" level="project" /> | ||
43 | <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-core:2.6.5" level="project" /> | ||
44 | <orderEntry type="library" name="Maven: org.springframework:spring-web:4.2.5.RELEASE" level="project" /> | ||
45 | <orderEntry type="library" name="Maven: org.springframework:spring-webmvc:4.2.5.RELEASE" level="project" /> | ||
46 | <orderEntry type="library" name="Maven: commons-httpclient:commons-httpclient:3.1" level="project" /> | ||
47 | <orderEntry type="library" name="Maven: commons-logging:commons-logging:1.0.4" level="project" /> | ||
48 | <orderEntry type="library" scope="RUNTIME" name="Maven: mysql:mysql-connector-java:5.1.38" level="project" /> | ||
49 | <orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-starter-test:1.3.3.RELEASE" level="project" /> | ||
50 | <orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.12" level="project" /> | ||
51 | <orderEntry type="library" scope="TEST" name="Maven: org.mockito:mockito-core:1.10.19" level="project" /> | ||
52 | <orderEntry type="library" scope="TEST" name="Maven: org.objenesis:objenesis:2.1" level="project" /> | ||
53 | <orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" /> | ||
54 | <orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-library:1.3" level="project" /> | ||
55 | <orderEntry type="library" name="Maven: org.springframework:spring-core:4.2.5.RELEASE" level="project" /> | ||
56 | <orderEntry type="library" scope="TEST" name="Maven: org.springframework:spring-test:4.2.5.RELEASE" level="project" /> | ||
57 | <orderEntry type="library" name="Maven: org.json:json:20140107" level="project" /> | ||
58 | <orderEntry type="library" name="Maven: wsdl4j:wsdl4j:1.6.3" level="project" /> | ||
59 | <orderEntry type="library" scope="PROVIDED" name="Maven: org.apache.tomcat.embed:tomcat-embed-jasper:8.0.32" level="project" /> | ||
60 | <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-core:8.0.32" level="project" /> | ||
61 | <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-el:8.0.32" level="project" /> | ||
62 | <orderEntry type="library" scope="PROVIDED" name="Maven: org.eclipse.jdt.core.compiler:ecj:4.4.2" level="project" /> | ||
63 | <orderEntry type="library" name="Maven: javax.servlet:jstl:1.2" level="project" /> | ||
64 | <orderEntry type="library" name="Maven: org.mybatis.spring.boot:mybatis-spring-boot-starter:1.0.0" level="project" /> | ||
65 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-jdbc:1.3.3.RELEASE" level="project" /> | ||
66 | <orderEntry type="library" name="Maven: org.apache.tomcat:tomcat-jdbc:8.0.32" level="project" /> | ||
67 | <orderEntry type="library" name="Maven: org.apache.tomcat:tomcat-juli:8.0.32" level="project" /> | ||
68 | <orderEntry type="library" name="Maven: org.springframework:spring-jdbc:4.2.5.RELEASE" level="project" /> | ||
69 | <orderEntry type="library" name="Maven: org.mybatis.spring.boot:mybatis-spring-boot-autoconfigure:1.0.0" level="project" /> | ||
70 | <orderEntry type="library" name="Maven: org.mybatis:mybatis:3.3.0" level="project" /> | ||
71 | <orderEntry type="library" name="Maven: org.mybatis:mybatis-spring:1.2.3" level="project" /> | ||
72 | <orderEntry type="library" name="Maven: com.h2database:h2:1.4.191" level="project" /> | ||
73 | <orderEntry type="library" name="Maven: org.springframework.data:spring-data-redis:1.5.0.RELEASE" level="project" /> | ||
74 | <orderEntry type="library" name="Maven: org.springframework:spring-context:4.2.5.RELEASE" level="project" /> | ||
75 | <orderEntry type="library" name="Maven: org.springframework:spring-context-support:4.2.5.RELEASE" level="project" /> | ||
76 | <orderEntry type="library" name="Maven: org.springframework:spring-tx:4.2.5.RELEASE" level="project" /> | ||
77 | <orderEntry type="library" name="Maven: org.springframework:spring-aop:4.2.5.RELEASE" level="project" /> | ||
78 | <orderEntry type="library" name="Maven: aopalliance:aopalliance:1.0" level="project" /> | ||
79 | <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.16" level="project" /> | ||
80 | <orderEntry type="library" name="Maven: org.springframework:spring-webmvc-portlet:4.2.5.RELEASE" level="project" /> | ||
81 | <orderEntry type="library" name="Maven: org.springframework:spring-beans:4.2.5.RELEASE" level="project" /> | ||
82 | <orderEntry type="library" name="Maven: org.tuckey:urlrewritefilter:4.0.3" level="project" /> | ||
83 | <orderEntry type="library" name="Maven: tk.mybatis:mapper:3.3.4" level="project" /> | ||
84 | <orderEntry type="library" name="Maven: javax.persistence:persistence-api:1.0" level="project" /> | ||
85 | <orderEntry type="library" name="Maven: org.apache.commons:commons-lang3:3.3.2" level="project" /> | ||
86 | <orderEntry type="library" name="Maven: commons-io:commons-io:2.1" level="project" /> | ||
87 | <orderEntry type="library" name="Maven: org.apache.wink:wink-client:1.3.0" level="project" /> | ||
88 | <orderEntry type="library" name="Maven: org.apache.wink:wink-common:1.3.0" level="project" /> | ||
89 | <orderEntry type="library" name="Maven: javax.ws.rs:jsr311-api:1.1.1" level="project" /> | ||
90 | <orderEntry type="library" name="Maven: org.apache.geronimo.specs:geronimo-annotation_1.1_spec:1.0" level="project" /> | ||
91 | <orderEntry type="library" name="Maven: javax.xml.bind:jaxb-api:2.2" level="project" /> | ||
92 | <orderEntry type="library" name="Maven: javax.xml.stream:stax-api:1.0-2" level="project" /> | ||
93 | <orderEntry type="library" name="Maven: com.sun.xml.bind:jaxb-impl:2.2.1.1" level="project" /> | ||
94 | <orderEntry type="library" name="Maven: javax.activation:activation:1.1" level="project" /> | ||
95 | <orderEntry type="library" name="Maven: org.apache.poi:poi:3.15" level="project" /> | ||
96 | <orderEntry type="library" name="Maven: org.apache.commons:commons-collections4:4.1" level="project" /> | ||
97 | <orderEntry type="library" name="Maven: org.apache.poi:poi-ooxml:3.15" level="project" /> | ||
98 | <orderEntry type="library" name="Maven: org.apache.poi:poi-ooxml-schemas:3.15" level="project" /> | ||
99 | <orderEntry type="library" name="Maven: org.apache.xmlbeans:xmlbeans:2.6.0" level="project" /> | ||
100 | <orderEntry type="library" name="Maven: stax:stax-api:1.0.1" level="project" /> | ||
101 | <orderEntry type="library" name="Maven: com.github.virtuald:curvesapi:1.04" level="project" /> | ||
102 | <orderEntry type="library" name="Maven: dom4j:dom4j:1.6.1" level="project" /> | ||
103 | <orderEntry type="library" name="Maven: xml-apis:xml-apis:1.0.b2" level="project" /> | ||
104 | <orderEntry type="library" name="Maven: commons-codec:commons-codec:1.9" level="project" /> | ||
105 | <orderEntry type="library" name="Maven: commons-fileupload:commons-fileupload:1.2.2" level="project" /> | ||
106 | <orderEntry type="library" name="Maven: javax.mail:mail:1.4.1" level="project" /> | ||
107 | <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-jetty:1.3.3.RELEASE" level="project" /> | ||
108 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-servlets:9.2.15.v20160210" level="project" /> | ||
109 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-continuation:9.2.15.v20160210" level="project" /> | ||
110 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-http:9.2.15.v20160210" level="project" /> | ||
111 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-util:9.2.15.v20160210" level="project" /> | ||
112 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-io:9.2.15.v20160210" level="project" /> | ||
113 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-webapp:9.2.15.v20160210" level="project" /> | ||
114 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-xml:9.2.15.v20160210" level="project" /> | ||
115 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-servlet:9.2.15.v20160210" level="project" /> | ||
116 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-security:9.2.15.v20160210" level="project" /> | ||
117 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-server:9.2.15.v20160210" level="project" /> | ||
118 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:websocket-server:9.2.15.v20160210" level="project" /> | ||
119 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:websocket-common:9.2.15.v20160210" level="project" /> | ||
120 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:websocket-api:9.2.15.v20160210" level="project" /> | ||
121 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:websocket-client:9.2.15.v20160210" level="project" /> | ||
122 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:websocket-servlet:9.2.15.v20160210" level="project" /> | ||
123 | <orderEntry type="library" name="Maven: javax.servlet:javax.servlet-api:3.1.0" level="project" /> | ||
124 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:javax-websocket-server-impl:9.2.15.v20160210" level="project" /> | ||
125 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-annotations:9.2.15.v20160210" level="project" /> | ||
126 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-plus:9.2.15.v20160210" level="project" /> | ||
127 | <orderEntry type="library" name="Maven: org.eclipse.jetty:jetty-jndi:9.2.15.v20160210" level="project" /> | ||
128 | <orderEntry type="library" name="Maven: javax.annotation:javax.annotation-api:1.2" level="project" /> | ||
129 | <orderEntry type="library" name="Maven: org.ow2.asm:asm:5.0.1" level="project" /> | ||
130 | <orderEntry type="library" name="Maven: org.ow2.asm:asm-commons:5.0.1" level="project" /> | ||
131 | <orderEntry type="library" name="Maven: org.ow2.asm:asm-tree:5.0.1" level="project" /> | ||
132 | <orderEntry type="library" name="Maven: org.eclipse.jetty.websocket:javax-websocket-client-impl:9.2.15.v20160210" level="project" /> | ||
133 | <orderEntry type="library" name="Maven: javax.websocket:javax.websocket-api:1.0" level="project" /> | ||
134 | <orderEntry type="library" name="Maven: org.apache.httpcomponents:httpclient:4.4.1" level="project" /> | ||
135 | <orderEntry type="library" name="Maven: org.apache.httpcomponents:httpcore:4.4.4" level="project" /> | ||
136 | <orderEntry type="library" name="Maven: net.sf.json-lib:json-lib:jdk15:2.2.3" level="project" /> | ||
137 | <orderEntry type="library" name="Maven: commons-beanutils:commons-beanutils:1.9.2" level="project" /> | ||
138 | <orderEntry type="library" name="Maven: commons-collections:commons-collections:3.2.2" level="project" /> | ||
139 | <orderEntry type="library" name="Maven: commons-lang:commons-lang:2.4" level="project" /> | ||
140 | <orderEntry type="library" name="Maven: net.sf.ezmorph:ezmorph:1.0.6" level="project" /> | ||
141 | <orderEntry type="library" name="Maven: com.google.code.gson:gson:2.8.0" level="project" /> | ||
142 | </component> | ||
143 | </module> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or sign in to post a comment