|
@@ -25,13 +25,13 @@
|
25
|
25
|
<bean id="xxlJobExecutor" class="com.xxl.job.core.executor.XxlJobExecutor" init-method="start" destroy-method="destroy" >
|
26
|
26
|
<!-- 执行器IP[选填],为空则自动获取 -->
|
27
|
27
|
<property name="ip" value="${xxl.job.executor.ip}" />
|
28
|
|
- <!-- 执行器端口号 -->
|
|
28
|
+ <!-- 执行器端口号[必须] -->
|
29
|
29
|
<property name="port" value="${xxl.job.executor.port}" />
|
30
|
|
- <!-- 执行器AppName,为空则关闭自动注册 -->
|
|
30
|
+ <!-- 执行器AppName[选填],为空则关闭自动注册 -->
|
31
|
31
|
<property name="appName" value="${xxl.job.executor.appname}" />
|
32
|
|
- <!-- 执行器注册中心地址,为空则关闭自动注册 -->
|
|
32
|
+ <!-- 执行器注册中心地址[选填],为空则关闭自动注册 -->
|
33
|
33
|
<property name="adminAddresses" value="${xxl.job.admin.addresses}" />
|
34
|
|
- <!-- 执行器日志路径 -->
|
|
34
|
+ <!-- 执行器日志路径[必填] -->
|
35
|
35
|
<property name="logPath" value="${xxl.job.executor.logpath}" />
|
36
|
36
|
</bean>
|
37
|
37
|
|