/*
|
* This Java source file was generated by the Gradle 'init' task.
|
*/
|
package testElectronJ;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.builder.SpringApplicationBuilder;
|
import org.springframework.boot.web.servlet.ServletComponentScan;
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
|
|
@SpringBootApplication
|
@ServletComponentScan(basePackages = {"testElectronJ.filter"})
|
public class App extends WebMvcConfigurerAdapter implements WebMvcConfigurer {
|
|
public static void main(String[] args) {
|
new SpringApplicationBuilder(App.class).run(args);
|
}
|
}
|