1. 程式人生 > >SpringBoot系列二:搭建自己的第一個SpringBoot程序

SpringBoot系列二:搭建自己的第一個SpringBoot程序

快速 oot local 程序 源代碼 參考 xmlns 技術 don

一、根據官網手工搭建(http://projects.spring.io/spring-boot/#quick-start)

1、新建一個maven工程springbootfirst

技術分享圖片

2、 如果要想開發 SpringBoot 程序只需要按照官方給出的要求配置一個父 pom (spring-boot-starter-parent)和添加web開發的支持(spring-boot-starter-web)即可。

 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 3 <modelVersion>4.0.0</modelVersion> 4 5 <groupId>com.study.springboot</groupId> 6 <artifactId>springbootfirst</artifactId> 7 <version>0.0.1-SNAPSHOT</version
> 8 <packaging>jar</packaging> 9 10 <name>springbootfirst</name> 11 <url>http://maven.apache.org</url> 12 13 <properties> 14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 15 <jdk.version>1.8</jdk.version
> 16 </properties> 17 18 <!--想開發 SpringBoot 程序只需要按照官方給出的要求配置一個父 pom 即可。 --> 19 <parent> 20 <groupId>org.springframework.boot</groupId> 21 <artifactId>spring-boot-starter-parent</artifactId> 22 <version>1.5.4.RELEASE</version> 23 </parent> 24 25 <dependencies> 26 27 <!--添加web開發的支持 --> 28 <dependency> 29 <groupId>org.springframework.boot</groupId> 30 <artifactId>spring-boot-starter-web</artifactId> 31 </dependency> 32 33 </dependencies> 34 35 36 <build> 37 <finalName>springbootfirst</finalName> 38 <plugins> 39 <plugin> 40 <groupId>org.apache.maven.plugins</groupId> 41 <artifactId>maven-compiler-plugin</artifactId> 42 <configuration> 43 <source>${jdk.version}</source><!-- 源代碼使用的開發版本 --> 44 <target>${jdk.version}</target><!-- 需要生成的目標class文件的編譯版本 --> 45 <encode>${project.build.sourceEncoding}</encode> 46 </configuration> 47 </plugin> 48 </plugins> 49 </build> 50 51 </project>

3、 編寫一個具體的程序SampleController.java

 1 package com.study.springboot.springbootfirst;
 2 
 3 import org.springframework.boot.*;
 4 import org.springframework.boot.autoconfigure.*;
 5 import org.springframework.stereotype.*;
 6 import org.springframework.web.bind.annotation.*;
 7 
 8 @Controller
 9 @EnableAutoConfiguration
10 public class SampleController {
11 
12     @RequestMapping("/")
13     @ResponseBody
14     String home() {
15         return "Hello World!";
16     }
17 
18     public static void main(String[] args) throws Exception {
19         SpringApplication.run(SampleController.class, args);
20     }
21 }

4.啟動SampleController.java,在瀏覽器輸入http://localhost:8080/即可看到我們使用SpringBoot搭建的第一個web程序成功了,就是這麽的快速、簡單、方便

技術分享圖片

二、快速搭建

1、訪問http://start.spring.io/

2、選擇構建工具Maven Project、Spring Boot版本1.5.11以及一些工程基本信息,點擊“Switch to the full version.”java版本選擇1.8,可參考下圖所示:

技術分享圖片

3、點擊Generate Project下載項目壓縮包

4、解壓後,使用eclipse,Import -> Existing Maven Projects -> Next ->選擇解壓後的文件夾-> Finsh,OK done!

SpringBoot系列二:搭建自己的第一個SpringBoot程序