feat: 2.4.0
1. 修复js加载失败问题
This commit is contained in:
parent
bedc32e7d2
commit
6747dcf20f
@ -9,6 +9,7 @@ import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import java.util.Objects;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
/**
|
||||
@ -67,7 +68,9 @@ public class AsyncReport extends AbstractReport implements Lifecycle {
|
||||
@Override
|
||||
public void close() {
|
||||
log.info("AsyncReport about to shutdown");
|
||||
slidingWindow.end();
|
||||
if (Objects.nonNull(slidingWindow)) {
|
||||
slidingWindow.end();
|
||||
}
|
||||
log.info("AsyncReport has been shutdown");
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 8.7 KiB After Width: | Height: | Size: 8.7 KiB |
3
easy-retry-server/easy-retry-server-starter/src/main/resources/admin/axios.min.js
vendored
Normal file
3
easy-retry-server/easy-retry-server-starter/src/main/resources/admin/axios.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
||||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0aa660"],{"119c":function(t,a,e){"use strict";e.r(a);e("b0c0");var o=function(){var t=this,a=t._self._c;return a("div",[a("page-header-wrapper",{staticStyle:{margin:"-24px -1px 0"},on:{back:function(){return t.$router.go(-1)}}},[a("div")]),null!==t.jobBatchInfo?a("a-card",{attrs:{bordered:!1}},[a("a-descriptions",{attrs:{title:"",column:3,bordered:""}},[a("a-descriptions-item",{attrs:{label:"组名称"}},[t._v(" "+t._s(t.jobBatchInfo.groupName)+" ")]),a("a-descriptions-item",{attrs:{label:"任务名称"}},[t._v(" "+t._s(t.jobBatchInfo.jobName)+" ")]),a("a-descriptions-item",{attrs:{label:"状态"}},[a("a-tag",{attrs:{color:t.taskBatchStatus[t.jobBatchInfo.taskBatchStatus].color}},[t._v(" "+t._s(t.taskBatchStatus[t.jobBatchInfo.taskBatchStatus].name)+" ")])],1),a("a-descriptions-item",{attrs:{label:"执行器类型"}},[a("a-tag",{attrs:{color:t.executorType[t.jobBatchInfo.executorType].color}},[t._v(" "+t._s(t.executorType[t.jobBatchInfo.executorType].name)+" ")])],1),a("a-descriptions-item",{attrs:{label:"操作原因"}},[a("a-tag",{attrs:{color:t.operationReason[t.jobBatchInfo.operationReason].color}},[t._v(" "+t._s(t.operationReason[t.jobBatchInfo.operationReason].name)+" ")])],1),a("a-descriptions-item",{attrs:{label:"开始执行时间"}},[t._v(" "+t._s(t.jobBatchInfo.executionAt)+" ")]),a("a-descriptions-item",{attrs:{label:"执行器名称",span:"4"}},[t._v(" "+t._s(t.jobBatchInfo.executorInfo)+" ")]),a("a-descriptions-item",{attrs:{label:"创建时间"}},[t._v(" "+t._s(t.jobBatchInfo.createDt)+" ")])],1)],1):t._e(),a("div",{staticStyle:{margin:"20px 0","border-left":"#f5222d 5px solid","font-size":"medium","font-weight":"bold"}},[t._v(" 任务项列表 ")]),a("JobTaskList",{ref:"JobTaskListRef"})],1)},r=[],s=e("3b7a"),n=e("c1df"),c=e.n(n),i=e("38b7"),u=e.n(i),p=e("36e8"),b={name:"JobInfo",components:{JobTaskList:p["default"]},data:function(){return{jobBatchInfo:null,taskBatchStatus:u.a.taskBatchStatus,operationReason:u.a.operationReason,taskType:u.a.taskType,triggerType:u.a.triggerType,blockStrategy:u.a.blockStrategy,executorType:u.a.executorType}},created:function(){var t=this,a=this.$route.query.id,e=this.$route.query.groupName;a&&e?Object(s["d"])(a).then((function(e){t.jobBatchInfo=e.data,t.queryParam={groupName:t.jobBatchInfo.groupName,taskBatchId:a},t.$refs.JobTaskListRef.refreshTable(t.queryParam)})):this.$router.push({path:"/404"})},methods:{jobTaskList:s["h"],parseDate:function(t){return c()(t).format("YYYY-MM-DD HH:mm:ss")}}},l=b,f=e("2877"),h=Object(f["a"])(l,o,r,!1,null,"1a941578",null);a["default"]=h.exports}}]);
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
6
easy-retry-server/easy-retry-server-starter/src/main/resources/admin/vue-router.min.js
vendored
Normal file
6
easy-retry-server/easy-retry-server-starter/src/main/resources/admin/vue-router.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
6
easy-retry-server/easy-retry-server-starter/src/main/resources/admin/vue.min.js
vendored
Normal file
6
easy-retry-server/easy-retry-server-starter/src/main/resources/admin/vue.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
6
easy-retry-server/easy-retry-server-starter/src/main/resources/admin/vuex.min.js
vendored
Normal file
6
easy-retry-server/easy-retry-server-starter/src/main/resources/admin/vuex.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -29,7 +29,6 @@
|
||||
<akka.version>2.6.21</akka.version>
|
||||
<java-jwt.version>4.4.0</java-jwt.version>
|
||||
<okhttp.version>5.0.0-alpha.11</okhttp.version>
|
||||
<commons-lang.version>2.6</commons-lang.version>
|
||||
<perf4j.version>0.9.16</perf4j.version>
|
||||
<guava.version>32.0.0-jre</guava.version>
|
||||
</properties>
|
||||
@ -88,11 +87,6 @@
|
||||
<artifactId>okhttp</artifactId>
|
||||
<version>${okhttp.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-lang</groupId>
|
||||
<artifactId>commons-lang</artifactId>
|
||||
<version>${commons-lang.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mapstruct</groupId>
|
||||
<artifactId>mapstruct</artifactId>
|
||||
|
3
frontend/public/axios.min.js
vendored
Normal file
3
frontend/public/axios.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
6
frontend/public/vue-router.min.js
vendored
Normal file
6
frontend/public/vue-router.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
6
frontend/public/vue.min.js
vendored
Normal file
6
frontend/public/vue.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
6
frontend/public/vuex.min.js
vendored
Normal file
6
frontend/public/vuex.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -28,12 +28,11 @@ const assetsCDN = {
|
||||
axios: 'axios'
|
||||
},
|
||||
css: [],
|
||||
// https://unpkg.com/browse/vue@2.6.10/
|
||||
js: [
|
||||
'//cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.min.js',
|
||||
'//cdn.jsdelivr.net/npm/vue-router@3.5.1/dist/vue-router.min.js',
|
||||
'//cdn.jsdelivr.net/npm/vuex@3.1.1/dist/vuex.min.js',
|
||||
'//cdn.jsdelivr.net/npm/axios@0.21.1/dist/axios.min.js'
|
||||
'vue.min.js',
|
||||
'vue-router.min.js',
|
||||
'vuex.min.js',
|
||||
'axios.min.js'
|
||||
]
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user