spring boot(一)hello world 搭建
前言
不管從哪方面來說,自學一些內容都是必須的,現在行裡用的較多的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即可
總結
整個操作只需要幾分鐘即可搞定
相關文章
- spring boot(一)hello worldSpring Boot
- 從零搭建Spring Boot的Hello WorldSpring Boot
- Spring Boot Hello World 基於 IDEA 案例詳解Spring BootIdea
- Spring版Hello WorldSpring
- Node.js vs. Spring Boot:Hello World 效能對決,誰更快一點?Node.jsSpring Boot
- Hello,Spring BootSpring Boot
- Spring-Cloud之hello worldSpringCloud
- Spring 3 MVC hello world exampleSpringMVC
- Hello, World
- Hello World!
- Hello World
- Laravel5.8 入門系列一 搭建環境,Hello World!Laravel
- 第一個程式Hello world
- java介紹、環境搭建與Hello,World!Java
- webpack+react環境搭建與hello worldWebReact
- Java Spring Boot 整合RabbitMQ(一):Hello World -B2B2C小程式電子商務JavaSpring BootMQ
- React Native 探索(一)環境搭建與 Hello World(Windows/Mac)React NativeWindowsMac
- React Native探索(一)環境搭建與Hello World(Windows/Mac)React NativeWindowsMac
- Go - Hello WorldGo
- Docker Hello WorldDocker
- 【Java】Hello worldJava
- React Hello,WorldReact
- Mockito Hello WorldMockito
- ant Hello World
- Deep "Hello world!"
- Go:Hello WorldGo
- Spring Boot入門(一):搭建Spring Boot專案Spring Boot
- react 第一個元件 “hello world!”React元件
- 第一個ncurses程式: hello world !!!
- 第一個PHP程式——Hello WorldPHP
- Spring boot入門(一):快速搭建Spring boot專案Spring Boot
- Node.js 系列 – 搭建 “Hello World” HTTP 伺服器Node.jsHTTP伺服器
- React Native——搭建開發環境、建立Hello WorldReact Native開發環境
- Node.js 系列 - 搭建 "Hello World" HTTP 伺服器Node.jsHTTP伺服器
- Hello Python worldPython
- react的”Hello World !“React
- WebGL 的 Hello WorldWeb
- ABAP程式Hello World