package com.kwan.springcloud;
import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
/** * http:/localhost:8888/portal-service/portal/1 * <p> * http:/localhost:8888/goods-service/kwanGoodsInfo/1 * * @author : qinyingjie * @version : 2.2.0 * @date : 2023/1/16 10:02 */
@EnableZuulProxy @SpringBootApplication public class ZuulApplication { public static void main(String[] args) { SpringApplication.run(ZuulApplication.class, args); } }