This is an automated email from the ASF dual-hosted git repository. peacewong pushed a commit to branch dev-1.3.2 in repository https://gitbox.apache.org/repos/asf/incubator-linkis.git
commit 3fb051a57bf7d87f6a7a8cb33d76c0f7fcfcf6cf Author: Jack Xu <[email protected]> AuthorDate: Wed Nov 16 11:02:36 2022 +0800 refactor: remove the ecp spring server main class --- .../server/LinkisEngineConnPluginServer.java | 27 ---------------------- .../apache/linkis/manager/rm/utils/RMUtils.scala | 1 - 2 files changed, 28 deletions(-) diff --git a/linkis-computation-governance/linkis-manager/linkis-application-manager/src/main/java/org/apache/linkis/engineplugin/server/LinkisEngineConnPluginServer.java b/linkis-computation-governance/linkis-manager/linkis-application-manager/src/main/java/org/apache/linkis/engineplugin/server/LinkisEngineConnPluginServer.java deleted file mode 100644 index 15583b0e3..000000000 --- a/linkis-computation-governance/linkis-manager/linkis-application-manager/src/main/java/org/apache/linkis/engineplugin/server/LinkisEngineConnPluginServer.java +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.linkis.engineplugin.server; - -import org.apache.linkis.LinkisBaseServerApp; - -public class LinkisEngineConnPluginServer { - - public static void main(String[] args) throws ReflectiveOperationException { - LinkisBaseServerApp.main(args); - } -} diff --git a/linkis-computation-governance/linkis-manager/linkis-application-manager/src/main/scala/org/apache/linkis/manager/rm/utils/RMUtils.scala b/linkis-computation-governance/linkis-manager/linkis-application-manager/src/main/scala/org/apache/linkis/manager/rm/utils/RMUtils.scala index 4b3c2fe93..12339fa78 100644 --- a/linkis-computation-governance/linkis-manager/linkis-application-manager/src/main/scala/org/apache/linkis/manager/rm/utils/RMUtils.scala +++ b/linkis-computation-governance/linkis-manager/linkis-application-manager/src/main/scala/org/apache/linkis/manager/rm/utils/RMUtils.scala @@ -37,7 +37,6 @@ import org.json4s.jackson.Serialization.{read, write} object RMUtils extends Logging { - lazy val GSON = BDPJettyServerHelper.gson implicit val formats = DefaultFormats + ResourceSerializer + NodeResourceSerializer val mapper = BDPJettyServerHelper.jacksonJson --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
