NafmiiWebCenterApplication.java 594 Bytes
package org.nafmii.admin;

import org.mybatis.spring.annotation.MapperScan;
import org.nafmii.common.ftp.EnableFtpServer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;

@SpringBootApplication
@EnableEurekaClient
@MapperScan(basePackages ={"org.nafmii.admin/**/dao"})
@EnableFtpServer
public class NafmiiWebCenterApplication {

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

}