快速新建一個spring boot工程能夠去http://start.spring.io/這個網址,配置完後會自動下載一個工程的壓縮包,解壓後導入相關ide工具便可使用。spring
工程中會自帶一個class啓動文件,根據工程名自動生成。瀏覽器
@SpringBootApplication public class ShanheApplication { public static void main(String[] args) { SpringApplication.run(ShanheApplication.class, args); } }
以上代碼同等於app
//這邊使用 Java Class 做為設定,而非XML @Configuration //啟用 Spring Boot 自動配置,將自動判斷專案使用到的套件,創建相關的設定。 @EnableAutoConfiguration //自動掃描 Spring Bean 元件 @ComponentScan( basePackages = {"peace.application", "peace.controller"} ) public class WebApplication { public static void main(String args[]){ //執行SpringApplication SpringApplication.run(WebApplication.class, args); } }
@SpringBootApplication包含了@SpringBootApplication、@EnableAutoConfiguration和@ComponentScanide
新建一個類小試牛刀工具
@Controller public class HelloWorld { @RequestMapping("/hello") public @ResponseBody String hello(){ return "hello, world !"; } @RequestMapping("/hello/{name}") public @ResponseBody String hello(@PathVariable("name") String name){ return "hello, " + name + " !"; } }
啓動程序,而後……spa
瀏覽器輸入:http://localhost:8080/hello 輸出:hello, world !code
瀏覽器輸入:http://localhost:8080/hello/my project 輸出:hello, my project !blog
對哦,好像什麼都沒配置就完成了一個程序的開發,雙擊666.開發