Files
YunLanO2O/jzo2o-customer/src/main/java/com/jzo2o/customer/CustomerApplication.java

22 lines
748 B
Java

package com.jzo2o.customer;
import lombok.extern.slf4j.Slf4j;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
@EnableAspectJAutoProxy
@SpringBootApplication
@Slf4j
@EnableCaching
@MapperScan("com.jzo2o.customer.mapper")
public class CustomerApplication {
public static void main(String[] args) {
new SpringApplicationBuilder(CustomerApplication.class)
.build(args)
.run(args);
log.info("家政服务-客户中心启动");
}
}