但是如果建立在主程式上,比如說在atguigu下建立worldcontroller類,那麼就會掃瞄不到,執行時會報錯
解決方法:
package com.atguigu.boot;
/** * @author lunaryoui
* @create 2021-03-18 15:57
*//**
* 主程式類
* */
(scanbasepackages =
"com.atguigu"
)public
class
}
package com.atguigu.boot;
import org.springframework.boot.springbootconfiguration;
import org.springframework.boot.autoconfigure.enableautoconfiguration;
import org.springframework.context.annotation.componentscan;
/** * @author lunaryoui
* @create 2021-03-18 15:57
*//**
* 主程式類
* */
@springbootconfiguration
@enableautoconfiguration
@componentscan
("com.atguigu"
)public
class
}
SpringBoot 預設日誌
by default,if you use the starters logback is used for logging.spring.io原話 log level error,warn,info,debug,or trace.等級順序公升高 作用 如設定info 則顯示error,warn,i...
使用SpringBoot的推薦專案目錄結構
一 spring boot 推薦目錄結構 1 層的結構 根目錄 com.springboot 2.實體類 domain 置於com.springboot.domain 3.資料訪問層 dao 置於com.springboot.repository 4.資料服務層 service 置於com,spri...
SpringBoot中的預設配置
enableautoconfiguration會開啟springboot的自動配置,並且根據引入的依賴來生效對應的預設配置,那麼問題來了 webmvcautoconfiguration類中獲取配置類中的字首字尾,來獲取屬性 configuration type type.servlet condit...