Skip to content

Commit cc7412d

Browse files
committed
test
tetst
1 parent 60b2130 commit cc7412d

File tree

1,068 files changed

+112051
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,068 files changed

+112051
-0
lines changed

.classpath

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java"/>
4+
<classpathentry kind="src" output="target/classes" path="src/main/resources"/>
5+
<classpathentry kind="src" output="target/classes" path="src/test/java"/>
6+
<classpathentry kind="src" output="target/classes" path="src/test/resources"/>
7+
<classpathentry kind="lib" path="lib/activation-1.1.jar"/>
8+
<classpathentry kind="lib" path="lib/aopalliance-1.0.jar"/>
9+
<classpathentry kind="lib" path="lib/c3p0-0.9.1.2.jar"/>
10+
<classpathentry kind="lib" path="lib/commons-collections-3.2.1.jar"/>
11+
<classpathentry kind="lib" path="lib/commons-io-1.4.jar"/>
12+
<classpathentry kind="lib" path="lib/commons-lang-2.5.jar"/>
13+
<classpathentry kind="lib" path="lib/commons-logging-1.1.1.jar"/>
14+
<classpathentry kind="lib" path="lib/joda-time-1.6.1.jar"/>
15+
<classpathentry kind="lib" path="lib/log4j-1.2.16.jar"/>
16+
<classpathentry kind="lib" path="lib/mail-1.4.1.jar"/>
17+
<classpathentry kind="lib" path="lib/ojdbc14-1.4.jar"/>
18+
<classpathentry kind="lib" path="lib/sap-jco-2.1.8.jar" sourcepath="lib/sap-jco-2.1.8.jar"/>
19+
<classpathentry kind="lib" path="lib/slf4j-api-1.6.1.jar"/>
20+
<classpathentry kind="lib" path="lib/slf4j-log4j12-1.6.1.jar"/>
21+
<classpathentry kind="lib" path="lib/spring-aop-3.0.5.RELEASE.jar"/>
22+
<classpathentry kind="lib" path="lib/spring-asm-3.0.5.RELEASE.jar"/>
23+
<classpathentry kind="lib" path="lib/spring-beans-3.0.5.RELEASE.jar"/>
24+
<classpathentry kind="lib" path="lib/spring-context-3.0.5.RELEASE.jar"/>
25+
<classpathentry kind="lib" path="lib/spring-context-support-3.0.5.RELEASE.jar"/>
26+
<classpathentry kind="lib" path="lib/spring-core-3.0.5.RELEASE.jar"/>
27+
<classpathentry kind="lib" path="lib/spring-expression-3.0.5.RELEASE.jar"/>
28+
<classpathentry kind="lib" path="lib/spring-jdbc-3.0.5.RELEASE.jar"/>
29+
<classpathentry kind="lib" path="lib/spring-tx-3.0.5.RELEASE.jar"/>
30+
<classpathentry kind="lib" path="lib/velocity-1.7.jar"/>
31+
<classpathentry kind="lib" path="lib/want-component.jar"/>
32+
<classpathentry kind="lib" path="lib/junit-4.7.jar"/>
33+
<classpathentry kind="lib" path="lib/cglib-nodep-2.2.jar"/>
34+
<classpathentry kind="lib" path="lib/json-20090211.jar"/>
35+
<classpathentry kind="lib" path="lib/commons-net-3.0.1.jar"/>
36+
<classpathentry kind="lib" path="lib/empp.jar"/>
37+
<classpathentry kind="lib" path="lib/commons-codec-1.6.jar"/>
38+
<classpathentry kind="lib" path="lib/commons-httpclient-3.1.jar"/>
39+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
40+
<classpathentry kind="lib" path="lib/poi-2.5.1-final-20040804.jar"/>
41+
<classpathentry kind="lib" path="lib/poi-contrib-2.5.1-final-20040804.jar"/>
42+
<classpathentry kind="lib" path="lib/poi-scratchpad-2.5.1-final-20040804.jar"/>
43+
<classpathentry kind="lib" path="lib/fastexcel-0.4.3-2009-11-05.jar"/>
44+
<classpathentry kind="lib" path="lib/ant.jar"/>
45+
<classpathentry kind="lib" path="lib/commons-dbcp.jar"/>
46+
<classpathentry kind="lib" path="lib/commons-pool.jar"/>
47+
<classpathentry kind="lib" path="lib/jtds.jar"/>
48+
<classpathentry kind="lib" path="lib/msbase.jar"/>
49+
<classpathentry kind="lib" path="lib/mssqlserver.jar"/>
50+
<classpathentry kind="lib" path="lib/msutil.jar"/>
51+
<classpathentry kind="lib" path="lib/ImApi.jar"/>
52+
<classpathentry kind="lib" path="lib/mysql-connector-java-3.1.14-bin.jar"/>
53+
<classpathentry kind="lib" path="lib/commons-collections-3.2.jar"/>
54+
<classpathentry kind="lib" path="lib/jcifs-1.3.17.jar"/>
55+
<classpathentry kind="lib" path="lib/json-lib-2.2.3-jdk15.jar"/>
56+
<classpathentry kind="output" path="target/classes"/>
57+
</classpath>

.project

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>want-batch</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.springframework.ide.eclipse.core.springbuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.springframework.ide.eclipse.core.springnature</nature>
21+
<nature>org.eclipse.jdt.core.javanature</nature>
22+
</natures>
23+
</projectDescription>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#Sun May 12 22:48:34 CST 2013
2+
eclipse.preferences.version=1
3+
encoding/<project>=UTF-8

.settings/org.eclipse.jdt.core.prefs

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
4+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
5+
org.eclipse.jdt.core.compiler.compliance=1.6
6+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
7+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
8+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
9+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
10+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
11+
org.eclipse.jdt.core.compiler.source=1.6

.springBeans

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<beansProjectDescription>
3+
<version>1</version>
4+
<pluginVersion><![CDATA[2.3.2.201003220227-RELEASE]]></pluginVersion>
5+
<configSuffixes>
6+
<configSuffix><![CDATA[xml]]></configSuffix>
7+
</configSuffixes>
8+
<enableImports><![CDATA[false]]></enableImports>
9+
<configs>
10+
<config>src/main/resources/applicationContext.xml</config>
11+
<config>src/main/resources/job-immediately.xml</config>
12+
<config>src/main/resources/job-scheduling-accesslog.xml</config>
13+
<config>src/main/resources/job-scheduling-watchdog.xml</config>
14+
<config>src/main/resources/job-scheduling.xml</config>
15+
<config>src/main/resources/models.xml</config>
16+
</configs>
17+
<configSets>
18+
</configSets>
19+
</beansProjectDescription>

.svn/wc.db

798 KB
Binary file not shown.

lib/ImApi.jar

8.7 KB
Binary file not shown.

lib/MSVCP71.DLL

492 KB
Binary file not shown.

lib/MSVCR71.DLL

340 KB
Binary file not shown.

lib/activation-1.1.jar

61.5 KB
Binary file not shown.

lib/ant.jar

1010 KB
Binary file not shown.

lib/aopalliance-1.0.jar

4.36 KB
Binary file not shown.

lib/c3p0-0.9.1.2.jar

596 KB
Binary file not shown.

lib/cglib-nodep-2.2.jar

315 KB
Binary file not shown.

lib/commons-beanutils-1.7.jar

184 KB
Binary file not shown.

lib/commons-codec-1.6.jar

227 KB
Binary file not shown.

lib/commons-collections-3.2.1.jar

562 KB
Binary file not shown.

lib/commons-collections-3.2.jar

558 KB
Binary file not shown.

lib/commons-dbcp.jar

145 KB
Binary file not shown.

lib/commons-httpclient-3.1.jar

298 KB
Binary file not shown.

lib/commons-io-1.4.jar

106 KB
Binary file not shown.

lib/commons-lang-2.5.jar

273 KB
Binary file not shown.

lib/commons-logging-1.1.1.jar

59.3 KB
Binary file not shown.

lib/commons-net-3.0.1.jar

263 KB
Binary file not shown.

lib/commons-pool.jar

94 KB
Binary file not shown.

lib/empp.jar

111 KB
Binary file not shown.

lib/ezmorph-1.0.6.jar

84.5 KB
Binary file not shown.

lib/fastexcel-0.4.3-2009-11-05.jar

112 KB
Binary file not shown.

lib/jcifs-1.3.17.jar

387 KB
Binary file not shown.

lib/joda-time-1.6.1.jar

530 KB
Binary file not shown.

lib/json-20090211.jar

44.9 KB
Binary file not shown.

lib/json-lib-2.2.3-jdk15.jar

145 KB
Binary file not shown.

lib/jtds.jar

295 KB
Binary file not shown.

lib/junit-4.7.jar

227 KB
Binary file not shown.

lib/librfc32.dll

5.05 MB
Binary file not shown.

lib/log4j-1.2.16.jar

470 KB
Binary file not shown.

lib/mail-1.4.1.jar

437 KB
Binary file not shown.

lib/msbase.jar

280 KB
Binary file not shown.

lib/mssqlserver.jar

65.5 KB
Binary file not shown.

lib/msutil.jar

57.5 KB
Binary file not shown.
448 KB
Binary file not shown.

lib/ojdbc14-1.4.jar

2.61 MB
Binary file not shown.

lib/poi-2.5.1-final-20040804.jar

783 KB
Binary file not shown.
53.9 KB
Binary file not shown.
185 KB
Binary file not shown.

lib/sap-jco-2.1.8.jar

297 KB
Binary file not shown.

lib/sapjcorfc.dll

3.55 MB
Binary file not shown.

lib/slf4j-api-1.6.1.jar

24.9 KB
Binary file not shown.

lib/slf4j-log4j12-1.6.1.jar

9.52 KB
Binary file not shown.

lib/spring-aop-3.0.5.RELEASE.jar

314 KB
Binary file not shown.

lib/spring-asm-3.0.5.RELEASE.jar

51.8 KB
Binary file not shown.

lib/spring-beans-3.0.5.RELEASE.jar

542 KB
Binary file not shown.

lib/spring-context-3.0.5.RELEASE.jar

653 KB
Binary file not shown.
98.5 KB
Binary file not shown.

lib/spring-core-3.0.5.RELEASE.jar

373 KB
Binary file not shown.
166 KB
Binary file not shown.

lib/spring-jdbc-3.0.5.RELEASE.jar

377 KB
Binary file not shown.

lib/spring-tx-3.0.5.RELEASE.jar

226 KB
Binary file not shown.

lib/velocity-1.7.jar

439 KB
Binary file not shown.

lib/want-component.jar

4.98 MB
Binary file not shown.

logs/batch.log

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2015-11-22 11:48:40,872 [main] INFO (AbstractApplicationContext.java:456) - Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@109fd93: startup date [Sun Nov 22 11:48:40 CST 2015]; root of context hierarchy
2+
2015-11-22 11:48:41,106 [main] INFO (XmlBeanDefinitionReader.java:315) - Loading XML bean definitions from class path resource [applicationContext.xml]

logs/batch.log-2015-11-19

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2015-11-19 14:45:03,524 [main] INFO (AbstractApplicationContext.java:456) - Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@8814e9: startup date [Thu Nov 19 14:45:03 CST 2015]; root of context hierarchy
2+
2015-11-19 14:45:03,602 [main] INFO (XmlBeanDefinitionReader.java:315) - Loading XML bean definitions from class path resource [applicationContext.xml]
3+
2015-11-19 14:45:10,061 [main] INFO (XmlBeanDefinitionReader.java:315) - Loading XML bean definitions from class path resource [data-access.xml]
4+
2015-11-19 16:24:06,456 [main] INFO (AbstractApplicationContext.java:456) - Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@8814e9: startup date [Thu Nov 19 16:24:06 CST 2015]; root of context hierarchy
5+
2015-11-19 16:24:06,518 [main] INFO (XmlBeanDefinitionReader.java:315) - Loading XML bean definitions from class path resource [applicationContext.xml]
6+
2015-11-19 16:24:07,142 [main] INFO (XmlBeanDefinitionReader.java:315) - Loading XML bean definitions from class path resource [data-access.xml]
7+
2015-11-19 18:17:59,872 [main] INFO (AbstractApplicationContext.java:456) - Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@1a1c887: startup date [Thu Nov 19 18:17:59 CST 2015]; root of context hierarchy
8+
2015-11-19 18:17:59,950 [main] INFO (XmlBeanDefinitionReader.java:315) - Loading XML bean definitions from class path resource [applicationContext.xml]
9+
2015-11-19 18:18:00,511 [main] INFO (XmlBeanDefinitionReader.java:315) - Loading XML bean definitions from class path resource [data-access.xml]

0 commit comments

Comments
 (0)