Commit f5f9a148 authored by ghostsun's avatar ghostsun
Browse files

修改xxpay-config项目包结构错误

parent f66bf718
package org.xxpay;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.config.server.EnableConfigServer;
/**
* @Description: xxpay配置中心服务端
* @author dingzhiwei jmdhappy@126.com
* @date 2017-07-05
* @version V1.0
* @Copyright: www.xxpay.org
*/
@SpringBootApplication
@EnableConfigServer
@EnableDiscoveryClient
public class XxPayConfigApplication {
public static void main(String[] args) {
SpringApplication.run(XxPayConfigApplication.class, args);
}
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment