您好,SpringBoot

从今天开始学习Spring Boot 微框架,今天先建立一个简单的Spring Boot 的 hello world。


环境及工具

本人的环境为:

  • 操作系统: OS X 10.11.6
  • Java IDE: IntelliJ IDEA 15
  • Java version: 1.8

建立项目

建立一个Maven工程

  1. 打开IDEA,选中一个Maven工程:


    您好,SpringBoot_第1张图片
    Maven工程

    这里可以不使用 maven 自带的 archetype,直接点击右下角的 Next 按钮即可。

  2. 填写 groupId 和 atifactId。
  3. 填写 项目名称和项目目录。

修改 pom.xml 文件

  1. 点击 pom.xml。


    您好,SpringBoot_第2张图片
    pom.xml的位置
  2. 修改 pom.xml 文件。

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    4.0.0
    com.eye.toy
    hello-spring-boot
    1.0-SNAPSHOT
    jar
    hello-spring-boot
    A demo of Spring Web

    org.springframework.boot
    spring-boot-starter-parent
    1.4.0.RELEASE


    UTF-8
    1.8



    org.springframework.boot
    spring-boot-starter-web





    org.springframework.boot
    spring-boot-maven-plugin



  3. 在 src/java/ 下新增一个 Application.java 文件,并填写代码。


    您好,SpringBoot_第3张图片
    Application的代码

    这么写貌似有点像Django...
    代码如下:
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;

     /** 
      * Created by toy on 9/4/16.       
      */
    
     @RestController
     @EnableAutoConfiguration
     class Application {   
      
         @RequestMapping("/")
         public String greeting() {    
             return "Hello World";   
         } 
    
        public static void main(String[] args) {   
            SpringApplication.run(Application.class, args);  
        }
     }
    
  4. 运行程序。
    点击 Edit Configurations... 编辑Web选项。

    您好,SpringBoot_第4张图片
    点击 Edit Configurations...

    点击左上角的 "+" 添加一个 Maven Configuration。
    您好,SpringBoot_第5张图片
    添加一个 maven configuration

    按如下填写 maven 参数。
    您好,SpringBoot_第6张图片
    Paste_Image.png

    注意: Working directory 是自己的项目目录。
    之后点击于行按钮,在浏览器中打开 [http://localhost:808] (http://localhost:8080)就完成了。

嗯嗯,结果就是这样。


您好,SpringBoot_第7张图片
hello world

还有一种比较简单的构建方法点击 SPRING INITIALIZR,就可以建立一个初始化好的spring boot 。


第一次写,感觉还行。
感谢chirs。

你可能感兴趣的:(您好,SpringBoot)