Spring Boot实战一:搭建Spring Boot开发环境

一开始接触Spring Boot就感到它非常强大,也非常简单实用,遂想将其记录下来。

搭建Spring Boot工程非常简单,到:http://start.spring.io/ 下载Spring Boot代码,导入到eclipse或者idea,启动即可,下载代码如下图(项目名、语言、JDK版本等可选择,这里采用如截图所示):

Spring Boot实战一:搭建Spring Boot开发环境

启动项目,如下图:

Spring Boot实战一:搭建Spring Boot开发环境

其中Spring的banner可以选择关闭,亦可增加banner.txt至包src/main/resources下,修改启动banner

public class DemoApplication {

    public static void main(String[] args)
{
// SpringApplication app = new SpringApplication(DemoApplication.class);
// app.setBannerMode(Mode.OFF); // 关闭打印banner
// app.run(args); SpringApplication.run(DemoApplication.class, args);
}
}

Spring Boot实战一:搭建Spring Boot开发环境

打印第一个Hello World!:创建TestController.java:

package com.example.demo;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; @RestController
public class TestController { @RequestMapping(value="/test")
public String insert() {
return "Hello World!";
}
}

再次执行 DemoApplication的main方法,然后访问:http://localhost:8080/test 得到结果:Hello World!

Spring Boot项目构建完成!

上一篇:Atitit 软件开发中 瓦哈比派的核心含义以及修行方法以及对我们生活与工作中的指导意义


下一篇:spring boot开发环境搭建(三)