You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
613 B
Java
20 lines
613 B
Java
|
9 months ago
|
package com.example;
|
||
|
|
|
||
|
|
import lombok.extern.slf4j.Slf4j;
|
||
|
|
import org.mybatis.spring.annotation.MapperScan;
|
||
|
|
import org.springframework.boot.SpringApplication;
|
||
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
|
import org.springframework.context.annotation.ComponentScan;
|
||
|
|
|
||
|
|
|
||
|
|
@SpringBootApplication
|
||
|
|
@MapperScan("com.example.duplicate.infrastructure.dao")
|
||
|
|
@Slf4j
|
||
|
|
public class SpringbootDemoApplication {
|
||
|
|
public static void main(String[] args) {
|
||
|
|
SpringApplication.run(SpringbootDemoApplication.class, args);
|
||
|
|
log.info("------------------启动完成----------------------");
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|