12345678910111213141516 |
- package com.fdkankan.jp.xspace;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.context.annotation.ComponentScan;
- import org.springframework.context.annotation.ComponentScans;
- @SpringBootApplication
- @ComponentScan(value = "com.fdkankan.**")
- public class Application {
- public static void main(String[] args) {
- SpringApplication.run(Application.class, args);
- }
- }
|