spring boot(一)hello world 搭建

謎一樣的Coder發表於2018-08-21

前言

不管從哪方面來說,自學一些內容都是必須的,現在行裡用的較多的spring boot之前一直想學,但是因為畢業論文和畢業設計的關係被耽誤到現在,在完成了相關開發工作的餘下時間可以自學一些東西,思來想去,覺得現在就是學習spring boot的最好時間,於是就開始了

spring boot專案的搭建

這裡不會做過多的概念解釋,直接進行一些實際操作。

spring boot的搭建

1、使用maven構建

不需要自己手動建立maven專案,直接在https://start.spring.io/中輸入相關引數後即可建立專案,然後將專案下載下來,匯入IDE即可

由於無法在內網中進行開發,因此這裡只能選用eclipse進行操作。

2、編寫相關業務程式碼示例

直接建立相應的包並編寫Controller即可,使用@RestController標籤標註Controller即可

package com.learn.web;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

import com.learn.component.BlogProperties;

@RestController
public class HelloController {
	
	@Autowired
	private BlogProperties blogProperties;
	
	@RequestMapping("/hello")
	@ResponseBody
	public String index() {
		
		System.out.println(blogProperties.getJob());
		
		System.out.println(blogProperties.getCompany());
		
		return "hello world";
	}
}

 3、測試helloworld

啟動之後,直接輸入localhost:8080/hello即可

總結

整個操作只需要幾分鐘即可搞定

相關文章