xuxueli vor 8 Jahren
Ursprung
Commit
014b341ff8

+ 2 - 2
doc/XXL-JOB官方文档.md Datei anzeigen

292
     <property name="appName" value="${xxl.job.executor.appname}" />
292
     <property name="appName" value="${xxl.job.executor.appname}" />
293
     <!-- 执行器注册中心地址[选填],为空则关闭自动注册 -->
293
     <!-- 执行器注册中心地址[选填],为空则关闭自动注册 -->
294
     <property name="adminAddresses" value="${xxl.job.admin.addresses}" />
294
     <property name="adminAddresses" value="${xxl.job.admin.addresses}" />
295
-    <!-- 执行器日志路径[必填] -->
295
+    <!-- 执行器日志路径[选填],为空则使用默认路径 -->
296
     <property name="logPath" value="${xxl.job.executor.logpath}" />
296
     <property name="logPath" value="${xxl.job.executor.logpath}" />
297
-    <!-- 访问令牌,非空则进行匹配校验[选填] -->
297
+    <!-- 访问令牌[选填],非空则进行匹配校验 -->
298
     <property name="accessToken" value="${xxl.job.accessToken}" />
298
     <property name="accessToken" value="${xxl.job.accessToken}" />
299
 </bean>
299
 </bean>
300
 ```
300
 ```

+ 2 - 2
xxl-job-executor-samples/xxl-job-executor-sample-spring/src/main/resources/applicationcontext-xxl-job.xml Datei anzeigen

31
         <property name="appName" value="${xxl.job.executor.appname}" />
31
         <property name="appName" value="${xxl.job.executor.appname}" />
32
         <!-- 执行器注册中心地址[选填],为空则关闭自动注册 -->
32
         <!-- 执行器注册中心地址[选填],为空则关闭自动注册 -->
33
 		<property name="adminAddresses" value="${xxl.job.admin.addresses}" />
33
 		<property name="adminAddresses" value="${xxl.job.admin.addresses}" />
34
-		<!-- 执行器日志路径[必填] -->
34
+		<!-- 执行器日志路径[选填],为空则使用默认路径 -->
35
 		<property name="logPath" value="${xxl.job.executor.logpath}" />
35
 		<property name="logPath" value="${xxl.job.executor.logpath}" />
36
-		<!-- 访问令牌,非空则进行匹配校验[选填] -->
36
+		<!-- 访问令牌[选填],非空则进行匹配校验 -->
37
 		<property name="accessToken" value="${xxl.job.accessToken}" />
37
 		<property name="accessToken" value="${xxl.job.accessToken}" />
38
 	</bean>
38
 	</bean>
39
 
39