17 lines
528 B
Java
17 lines
528 B
Java
package com.xkrs;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
|
|
@SpringBootApplication
|
|
//@ComponentScan(basePackages = {"com.xkrs.model.entity", "com.xkrs.controller", "com.xkrs.service"})
|
|
@ComponentScan("com.xkrs.model.entity")
|
|
public class WordAndExcelApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(WordAndExcelApplication.class, args);
|
|
}
|
|
|
|
}
|