您好,登錄后才能下訂單哦!
這篇文章主要介紹了怎么創建一個SpringBoot項目,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
springboot需要maven或者gradle來進行項目管理,小編接下來以maven為例。如果沒有maven的基礎,可以前往maven教程進行學習。
前往官網進行創建,網站如下:
https://start.spring.io/
項目我們選擇maven項目,語言選擇java,springboot版本按自己需求進行選擇,小編這里選擇2.5.1版。項目信息按自身情況進行填寫,選擇自己需要的打包方式和對應的java版本(前面這些都可以按自身需求進行填寫)。
依賴我們選擇spring web和devtools就可以,后期依賴添加可以通過maven進行管理。
點擊create,該網站就會生成一個對應的項目的壓縮包,下載完成后解壓就能打開一個空的項目了。
如果有maven創建項目的經驗,也可以通過pom.xml
來修改自己的項目使其變成springboot項目(以下是上面項目對應的pom.xml
,可以自行參考后進行修改)。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>W3Cschool</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>W3Cschool</name>
<description>618最后返場三天,確定不來看看嗎</description>
<properties>
<java.version>11</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
在W3CschoolApplication.java
的同級文件夾下新建一個HelloController.java
,然后輸入如下代碼(代碼注釋如下):
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController//注解,接下來的代碼是一個控制器
@RequestMapping("/test")//一級路徑為/test的時候執行下面這個類
public class HelloController {
@RequestMapping("/hello")//二級路徑為/hello的時候執行下面這個方法
public String hello(){
return "helloworld";//返回helloworld
}
}
springboot內嵌了Tomcat模塊,所以它可以向java一樣運行(它有main()
方法),運行W3CschoolApplication.java
即可啟動這個項目。
啟動后在瀏覽器訪問http://localhost:8080/test/hello即可查看項目的運行效果。
感謝你能夠認真閱讀完這篇文章,希望小編分享的“怎么創建一個SpringBoot項目”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。