轉載自:https://www.cnblogs.com/wmyskxz/p/9010832.htmlcss
選擇 Spring Initializr ,而後選擇默認的 url 點擊【Next】:html
而後修改一下項目的信息:web
勾選上 Web 模板:spring
選擇好項目的位置,點擊【Finish】:springboot
若是是第一次配置 Spring Boot 的話可能須要等待一下子 IDEA 下載相應的 依賴包,默認建立好的項目結構以下:服務器
項目結構仍是看上去挺清爽的,少了不少配置文件,咱們來了解一下默認生成的有什麼:app
在【cn.wmyskxz.springboot】包下新建一個【HelloController】:ide
package cn.wmyskxz.springboot; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** * 測試控制器 * * @author: @我沒有三顆心臟 * @create: 2018-05-08-下午 16:46 */ @RestController public class HelloController { @RequestMapping("/hello") public String hello() { return "Hello Spring Boot!"; } }
咱們回到 SpringbootApplication 這個類中,而後右鍵點擊運行:spring-boot
等待一下子就會看到下方的成功運行的提示信息:測試
能夠看到咱們的 Tomcat 運行在 8080 端口,咱們來訪問 「/hello
」 地址試一下:
能夠看到頁面成功顯示出咱們返回的信息。