我的spring boot,杨帆、起航!

  快速新建一个spring boot工程可以去http://start.spring.io/这个网址,配置完后会自动下载一个工程的压缩包,解压后导入相关ide工具即可使用。

  工程中会自带一个class启动文件,根据工程名自动生成。

  

@SpringBootApplication
public class ShanheApplication {

    public static void main(String[] args) {
        SpringApplication.run(ShanheApplication.class, args);
    }
}

  以上代码同等于

//這邊使用 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和@ComponentScan

  新建一个类小试牛刀

@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 + " !";
    }
}

  启动程序,然后……

  浏览器输入:http://localhost:8080/hello  输出:hello, world !

  浏览器输入:http://localhost:8080/hello/my project  输出:hello, my project !

  对哦,好像什么都没配置就完成了一个程序的开发,双击666.

posted on 2017-04-06 16:51  潸何  阅读(152)  评论(0编辑  收藏  举报