19 lines
580 B
Java
19 lines
580 B
Java
|
package com.JN;
|
||
|
|
||
|
import lombok.extern.slf4j.Slf4j;
|
||
|
import org.springframework.boot.SpringApplication;
|
||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
import org.springframework.boot.web.servlet.ServletComponentScan;
|
||
|
import org.springframework.transaction.annotation.EnableTransactionManagement;
|
||
|
|
||
|
@Slf4j
|
||
|
@SpringBootApplication
|
||
|
@ServletComponentScan
|
||
|
@EnableTransactionManagement
|
||
|
public class JNApplication {
|
||
|
public static void main(String[] args) {
|
||
|
SpringApplication.run(JNApplication.class,args);
|
||
|
log.info("项目启动成功...");
|
||
|
}
|
||
|
}
|