mirror of
https://github.com/201206030/novel-plus.git
synced 2025-04-27 01:30:51 +00:00
38 lines
1.3 KiB
Java
38 lines
1.3 KiB
Java
package com.java2nb;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
import org.springframework.boot.CommandLineRunner;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.boot.web.servlet.ServletComponentScan;
|
|
import org.springframework.cache.annotation.EnableCaching;
|
|
import org.springframework.context.ApplicationContext;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.transaction.annotation.EnableTransactionManagement;
|
|
|
|
import java.net.InetAddress;
|
|
|
|
|
|
@EnableTransactionManagement
|
|
@ServletComponentScan
|
|
@MapperScan("com.java2nb.*.dao")
|
|
@SpringBootApplication(exclude = {
|
|
org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration.class
|
|
})
|
|
@EnableCaching
|
|
@Slf4j
|
|
public class AdminApplication {
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(AdminApplication.class, args);
|
|
}
|
|
|
|
@Bean
|
|
public CommandLineRunner commandLineRunner(ApplicationContext ctx) {
|
|
return args -> {
|
|
log.info("项目启动啦,访问路径:{}", "http://" + InetAddress.getLocalHost().getHostAddress() + ":" + ctx.getEnvironment().getProperty("server.port"));
|
|
};
|
|
}
|
|
|
|
}
|