Blame view

cloud/search_independence/src/main/java/com/sincere/independence/IndependenceSearchApplication.java 697 Bytes
b7ccb8ad   陈杰   学情 排课 嵌入分布式
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.sincere.independence;

import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.context.annotation.ComponentScan;

/**
 * @author chen
 * @version 1.0
 * @date 2019/11/13 0013 8:40
 */
@EnableEurekaClient
@SpringBootApplication
@MapperScan("com.sincere.independence.mapper")
96601d7c   陈杰   学情 排课 嵌入分布式
17
@ComponentScan("com.sincere")
b7ccb8ad   陈杰   学情 排课 嵌入分布式
18
19
20
21
22
23
public class IndependenceSearchApplication {

    public static void main(String[] args) {
        SpringApplication.run(IndependenceSearchApplication.class, args);
    }
}