2springboot:快速创建springboot项目
生活随笔
收集整理的這篇文章主要介紹了
2springboot:快速创建springboot项目
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
?使用IDEA快速創(chuàng)建springboot項(xiàng)目流程:
?
?創(chuàng)建新的項(xiàng)目選擇
?
?項(xiàng)目的命名以及包名
?
?
?需要什么包就導(dǎo)入什么包
?
?
?進(jìn)行測(cè)試的單元
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope> </dependency>?
此時(shí)的工程默認(rèn)有這個(gè)啟動(dòng)的主程序
Springboot01Application.java @SpringBootApplication public class Springboot01Application {public static void main(String[] args) {SpringApplication.run(Springboot01Application.class, args);} }?
?新建一個(gè)controller包和controller類:
//此時(shí)類的所有方法都會(huì)返回?cái)?shù)據(jù)給瀏覽器(對(duì)象是專為json) //@RestController = @ResponseBody + @Controller @ResponseBody @Controller public class Helloword {@RequestMapping("/hello")public String hello(){return "Hello tow!";} }?運(yùn)行訪問:
?
?
?springboot工程結(jié)構(gòu):
?
static文件夾:保存所有的靜態(tài)資源 templates文件夾:保存所有的模板頁面(Springboot默認(rèn)jar使用嵌入式的Tomcat,默認(rèn)不支持jsp頁面);可以使用模板引擎 application.properties:springboot應(yīng)用的配置文件轉(zhuǎn)載于:https://www.cnblogs.com/Mrchengs/p/10115166.html
總結(jié)
以上是生活随笔為你收集整理的2springboot:快速创建springboot项目的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 函数调用关系图如何画_程序是如何在 CP
- 下一篇: 祭奠我的2018