/*
* Copyright (C) 2019 李森的博客 https://lisen.cc
* 项目名称:Cc.LiSen.Idea
* 文件名称:App.java
* Date:19-7-19 上午1:21
* Author:lisen@lisen.cc
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package Cc.LiSen;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.orm.jpa.EntityScan;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
@SpringBootApplication
//SpringBoot 默认从App类往下面的包扫描
//所以如果控制器、实体等类与App不在一个包,同时不在下面的包时,必须手动指定包
//@ComponentScan(basePackages = {"Cc.LiSen.Controllers", "Cc.LiSen.Services"})
//@EnableJpaRepositories(basePackages = {"Cc.LiSen.Repositories", "Cc.LiSen.Services"})
//@EntityScan(basePackages = {"Cc/LiSen/Pojos"})
public class App {
public static void main(String[] args){
SpringApplication.run(App.class,args);
}
}
版权属于:
Laughing
作品采用:
《
署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
》许可协议授权
好