1. 程式人生 > >搭建springboot項目

搭建springboot項目

pri ann web color map imp 一個 org 項目

現在,更新我的第一篇博客,主要是為了記錄下自己學習的過程,方便今後回顧

今天的主題是搭建一個springboot項目,我們使用的工具是idea

新建springboot項目

如圖,新建一個springboot項目

技術分享圖片

技術分享圖片

技術分享圖片

主程序代碼

package com.example.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

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

controller示例代碼

package com.example.demo.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloWorldController { @RequestMapping("/hello") public String index(){ return "Hello World!"; } }

啟動成功

這樣,項目啟動成功

技術分享圖片

在瀏覽器輸入http://localhost:8080/hello就可以訪問了

成功!

技術分享圖片

天道酬勤,與君共勉

搭建springboot項目