spring boot 它的設(shè)計(jì)目的就是為例簡(jiǎn)化開發(fā),開啟了各種自動(dòng)裝配,你不想寫各種配置文件,引入相關(guān)的依賴就能迅速搭建起一個(gè)web工程。它采用的是建立生產(chǎn)就緒的應(yīng)用程序觀點(diǎn),優(yōu)先于配置的慣例。
超過十年行業(yè)經(jīng)驗(yàn),技術(shù)領(lǐng)先,服務(wù)至上的經(jīng)營(yíng)模式,全靠網(wǎng)絡(luò)和口碑獲得客戶,為自己降低成本,也就是為客戶降低成本。到目前業(yè)務(wù)范圍包括了:做網(wǎng)站、網(wǎng)站建設(shè),成都網(wǎng)站推廣,成都網(wǎng)站優(yōu)化,整體網(wǎng)絡(luò)托管,微信平臺(tái)小程序開發(fā),微信開發(fā),重慶App定制開發(fā),同時(shí)也可以讓客戶的網(wǎng)站和網(wǎng)絡(luò)營(yíng)銷和我們一樣獲得訂單和生意!
4.0.0
org.springframework.boot
spring-boot-starter-parent
2.1.3.RELEASE
com.honghh
boot-first
0.0.1-SNAPSHOT
boot-first
Demo project for Spring Boot
1.8
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-test
test
org.springframework.boot
spring-boot-maven-plugin
package com.honghh.bootfirst.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* ClassName: HelloWordController
* Description:
*
* @author honghh
* @date 2019/02/19 15:58
*/
@RestController
public class HelloWordController {
@RequestMapping("/")
public String index() {
return "Hello Spring Boot!";
}
}
啟動(dòng)項(xiàng)目,在瀏覽器中輸入: http://localhost:8080/
啟動(dòng)成功,第一個(gè)springboot項(xiàng)目搭建成功!
但是這個(gè)要注意一個(gè)點(diǎn),現(xiàn)在我的controller是寫在com.honghh.bootfirst下的,所以沒有問題,我們將controller包放在com.honghh.controller下執(zhí)行你會(huì)發(fā)現(xiàn)報(bào)404
那我們應(yīng)該怎么解決呢?
Spring Boot 正常啟動(dòng)后訪問Controller提示404
以啟動(dòng)類的包路徑作為頂層包路徑,列如啟動(dòng)類包為com.honghh.bootfirst,那么Controller包路徑就為com.honghh.bootfirst.controller。
在啟動(dòng)上方添加@ComponentScan注解,此注解為指定掃描路徑,例如:
@ComponentScan(basePackages = {"com.honghh.*"}) #多個(gè)不同的以逗號(hào)分割。
package com.honghh.bootfirst;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
@ComponentScan(basePackages = {"com.honghh.*"})
@SpringBootApplication
public class BootFirstApplication {
public static void main(String[] args) {
SpringApplication.run(BootFirstApplication.class, args);
}
}
文章來源: https://blog.csdn.net/qq_35098526/article/details/87715317