很多小伙伴在學習完java后端后就開始了解java的幾個框架,其中最出名的應該屬于Spring的框架。而springboot作為spring自家產(chǎn)品,有些小伙伴也開始對其產(chǎn)生興趣。今天小編就以傳統(tǒng)的helloworld為例,來介紹一下如何創(chuàng)建一個SpringBoot項目吧。
閱前須知
springboot需要maven或者gradle來進行項目管理,小編接下來以maven為例。如果沒有maven的基礎,可以前往maven教程進行學習。
創(chuàng)建空的springboot項目
前往官網(wǎng)進行創(chuàng)建,網(wǎng)站如下:
項目我們選擇maven項目,語言選擇java,springboot版本按自己需求進行選擇,小編這里選擇2.5.1版。項目信息按自身情況進行填寫,選擇自己需要的打包方式和對應的java版本(前面這些都可以按自身需求進行填寫)。
依賴我們選擇spring web和devtools就可以,后期依賴添加可以通過maven進行管理。
點擊create,該網(wǎng)站就會生成一個對應的項目的壓縮包,下載完成后解壓就能打開一個空的項目了。
如果有maven創(chuàng)建項目的經(jīng)驗,也可以通過?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>
項目結構大致如下:
創(chuàng)建HelloController
在?W3CschoolApplication.java
?的同級文件夾下新建一個?HelloController.java
?,然后輸入如下代碼(代碼注釋如下):
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController//注解,接下來的代碼是一個控制器
@RequestMapping("/test")//一級路徑為/test的時候執(zhí)行下面這個類
public class HelloController {
@RequestMapping("/hello")//二級路徑為/hello的時候執(zhí)行下面這個方法
public String hello(){
return "helloworld";//返回helloworld
}
}
運行
springboot內嵌了Tomcat模塊,所以它可以向java一樣運行(它有?main()
?方法),運行?W3CschoolApplication.java
即可啟動這個項目。
啟動后在瀏覽器訪問http://localhost:8080/test/hello即可查看項目的運行效果。
小結
以上就是springboot helloworld示例。更多springboot的內容學習還請前往springboot微課。