Hello World探究
1、POM檔案
1、父專案
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
</parent>
他的父專案是
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies/artifactId>
<version>1.5.9.RELEASE</version>
<relativePath>../../spring-boot-dependencies</relativePath>
</parent>
他來真正管理Spring Boot應用裡面的所有版本
Spring Boot的版本仲裁中心
以後我們匯入專案預設是不需要寫版本(在沒有dependcies裡面管理的依賴自然需要宣告版本號)
2、
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
相關文章
- Hello, World
- Hello,World
- Hello World
- Hello World!
- Hello World !
- Go - Hello WorldGo
- Deep "Hello world!"
- Hello Python worldPython
- Docker Hello WorldDocker
- dotnet hello world
- Go:Hello WorldGo
- ant Hello World
- I'm Hello World
- 輸出hello world
- RabbitMQ tutorial - "Hello world!"MQ
- WebGL 的 Hello WorldWeb
- react的”Hello World !“React
- Flutter Web 之 Hello WorldFlutterWeb
- [系列] Go gRPC Hello WorldGoRPC
- Hello World! XJ is here.
- 01-C++ "hello world"C++
- python輸出hello worldPython
- C# Hello,World(1)
- [WebAssembly 入門] Hello, world!Web
- RabbitMQ 入門 - Hello WorldMQ
- spring boot(一)hello worldSpring Boot
- 【Flutter 基礎】Hello WorldFlutter
- JMicro微服務Hello World微服務
- ROS之初見Hello WorldROS
- PHPCPP安裝以及hello worldPHP
- Smali 語法解析——Hello World
- spring boot(一)hello world 搭建Spring Boot
- 深入分析 Hello World 程式
- C++20 module Hello worldC++
- React 學習之 Hello WorldReact
- Python基礎01 Hello World!Python
- fasthttp 概述與 Hello World(本文)ASTHTTP
- 第一個程式Hello world