com.zhibaocloud.carbon.intg.server.CarbonServerApplication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of carbon-server-demo Show documentation
Show all versions of carbon-server-demo Show documentation
Demo 服务,担当数据推送的接收方,验证数据的有效性,以及演示会如何接收推送数据
/*
* Copyright (c) 2018-2023. Chengdu WeiSiFan Technology Co., Ltd.
* Carbon Integration SDK is licensed under Mulan PSL v2.
*
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at: http://license.coscl.org.cn/MulanPSL2
*
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
package com.zhibaocloud.carbon.intg.server;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* Mock 服务,用于接收数据推送
*
* @author jun
*/
@SpringBootApplication
public class CarbonServerApplication {
public static void main(String[] args) {
SpringApplication.run(CarbonServerApplication.class, args);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy