mirror of
https://github.com/201206030/novel-plus.git
synced 2025-04-27 01:30:51 +00:00
40 lines
1.2 KiB
Java
40 lines
1.2 KiB
Java
package com.java2nb.novel;
|
|
|
|
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.scheduling.annotation.EnableScheduling;
|
|
|
|
import java.net.InetAddress;
|
|
|
|
/**
|
|
* @author Administrator
|
|
*/
|
|
@SpringBootApplication
|
|
@EnableCaching
|
|
@EnableScheduling
|
|
@ServletComponentScan
|
|
@MapperScan(basePackages = {"com.java2nb.novel.mapper"})
|
|
@Slf4j
|
|
public class CrawlNovelApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(CrawlNovelApplication.class);
|
|
}
|
|
|
|
@Bean
|
|
public CommandLineRunner commandLineRunner(ApplicationContext ctx) {
|
|
return args -> {
|
|
log.info("项目启动啦,访问路径:{}", "http://" + InetAddress.getLocalHost().getHostAddress() + ":" + ctx.getEnvironment().getProperty("server.port"));
|
|
};
|
|
}
|
|
|
|
|
|
}
|