소스 검색

Nutz执行器Sample示例项目;

xuxueli 7 년 전
부모
커밋
004b4971fa
3개의 변경된 파일13개의 추가작업 그리고 10개의 파일을 삭제
  1. 1 0
      doc/XXL-JOB官方文档.md
  2. 1 2
      pom.xml
  3. 11 8
      xxl-job-executor-samples/xxl-job-executor-sample-nutz/pom.xml

+ 1 - 0
doc/XXL-JOB官方文档.md 파일 보기

@@ -1098,6 +1098,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
1098 1098
 - 23、Log地址格式兼容,支持非"/"结尾路径配置;
1099 1099
 - 24、底层系统日志级别规范调整,清理遗留代码;
1100 1100
 - 25、建表SQL优化,支持同步创建制定编码的库和表;
1101
+- 26、Nutz执行器Sample示例项目;
1101 1102
 
1102 1103
 
1103 1104
 ### TODO LIST

+ 1 - 2
pom.xml 파일 보기

@@ -30,8 +30,7 @@
30 30
 		<jetty-server.version>9.2.22.v20170606</jetty-server.version>
31 31
 		<hessian.version>4.0.51</hessian.version>
32 32
 		<httpclient.version>4.5.4</httpclient.version>
33
-
34
-
33
+		
35 34
 		<commons-exec.version>1.3</commons-exec.version>
36 35
 		<commons-collections4.version>4.1</commons-collections4.version>
37 36
 		<commons-lang3.version>3.7</commons-lang3.version>

+ 11 - 8
xxl-job-executor-samples/xxl-job-executor-sample-nutz/pom.xml 파일 보기

@@ -3,21 +3,29 @@
3 3
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 4
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 5
     <parent>
6
-        <artifactId>xxl-job-executor-samples</artifactId>
7 6
         <groupId>com.xuxueli</groupId>
8
-        <version>1.8.2-SNAPSHOT</version>
7
+        <artifactId>xxl-job-executor-samples</artifactId>
8
+        <version>1.9.0-SNAPSHOT</version>
9 9
     </parent>
10 10
     <modelVersion>4.0.0</modelVersion>
11 11
     <artifactId>xxl-job-executor-sample-nutz</artifactId>
12 12
     <packaging>war</packaging>
13 13
 
14 14
     <dependencies>
15
-       <dependency>
15
+        <!-- nutz -->
16
+        <dependency>
16 17
 			<groupId>org.nutz</groupId>
17 18
 			<artifactId>nutz</artifactId>
18 19
 			<version>1.r.62</version>
19 20
 		</dependency>
20 21
 
22
+        <!-- slf4j -->
23
+        <dependency>
24
+            <groupId>org.slf4j</groupId>
25
+            <artifactId>slf4j-log4j12</artifactId>
26
+            <version>${slf4j-api.version}</version>
27
+        </dependency>
28
+
21 29
         <!-- xxl-job -->
22 30
         <dependency>
23 31
             <groupId>com.xuxueli</groupId>
@@ -25,11 +33,6 @@
25 33
             <version>${project.parent.version}</version>
26 34
         </dependency>
27 35
 
28
-        <dependency>
29
-            <groupId>org.slf4j</groupId>
30
-            <artifactId>slf4j-log4j12</artifactId>
31
-            <version>${slf4j-api.version}</version>
32
-        </dependency>
33 36
     </dependencies>
34 37
 
35 38
 </project>