Open main menu
首页
专栏
课程
分类
归档
Chat
Sci-Hub
谷歌学术
Libgen
GitHub镜像
登录/注册
搜索
搜索
关闭
Previous
Previous
Next
Next
PHP程序猿的SpringBoot之旅-SpringBoot项目创建
sockstack
/
674
/
2023-07-17 21:53:31
Spring Boot简单入门
<p><span style="color: red; font-size: 18px">ChatGPT 可用网址,仅供交流学习使用,如对您有所帮助,请收藏并推荐给需要的朋友。</span><br><a href="https://ckai.xyz/?sockstack§ion=detail" target="__blank">https://ckai.xyz</a><br><br></p> # 开篇 每一个PHP程序员基本都有一段学JAVA的艰辛之路,不管是正在学JAVA还是已经放弃学JAVA的猿/媛,都被JAVA折磨过,同样,我也正在被折磨。。。 用该系列文章记录我被折磨后的成果。 # 学习方法分享 我要分享的学习方法很简单,一个字:干 很简单粗暴的方式,其实学习最好的方式就是输出,所以我会经常写博文,分享我学到的东西,只要把学习到的东西输出出来,才会深刻。 # 工具准备 - Intellij IDEA - Navicat - Docker # Spring Boot项目搭建 - 打开IDEA,新建一个项目: ![创建项目1](https://raw.githubusercontent.com/sockstack/hexo_blog_img/master/spring-boot-study-demo/创建项目1.png) - 填写项目参数: ![创建项目2](https://raw.githubusercontent.com/sockstack/hexo_blog_img/master/spring-boot-study-demo/创建项目2.png) - 添加`spring web starter`依赖: ![创建项目3](https://raw.githubusercontent.com/sockstack/hexo_blog_img/master/spring-boot-study-demo/创建项目3.png) - 点击`next`等待加载依赖完成 ![创建项目4](https://raw.githubusercontent.com/sockstack/hexo_blog_img/master/spring-boot-study-demo/创建项目4.png) 出现该页面证明依赖加载完成。 # 编写代码 1. 打开`SpringBootStudyDemo1Application`文件输入如下代码: ```java package cn.sockstack.demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @SpringBootApplication //使用restful风格的controller @RestController public class SpringBootStudyDemo1Application { public static void main(String[] args) { SpringApplication.run(SpringBootStudyDemo1Application.class, args); } //添加'/'路由,输出hello SockStack! @GetMapping("/") public String hello() { return "hello SockStack!"; } } ``` 2. 添加测试代码 在`spring-boot-study-demo1\src\test\java\cn\sockstack\demo\SpringBootStudyDemo1ApplicationTests.java`添加如下代码: ```java package cn.sockstack.demo; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.http.MediaType; import org.springframework.test.context.junit4.SpringRunner; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.MvcResult; import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import org.springframework.test.web.servlet.setup.MockMvcBuilders; import org.springframework.web.context.WebApplicationContext; @RunWith(SpringRunner.class) @SpringBootTest public class SpringBootStudyDemo1ApplicationTests { @Autowired private WebApplicationContext webApplicationContext; private MockMvc mockMvc; @Before public void buildMockMvc() { mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build(); } @Test public void testHelloController() throws Exception { MvcResult mvcResult = mockMvc.perform(MockMvcRequestBuilders.get("/").accept(MediaType.TEXT_HTML_VALUE)).andReturn(); int status = mvcResult.getResponse().getStatus(); String contentAsString = mvcResult.getResponse().getContentAsString(); Assert.assertEquals(200, status); Assert.assertEquals("hello SockStack!", contentAsString); } } ``` 启动测试,测试结果: ![https://raw.githubusercontent.com/sockstack/hexo_blog_img/master/spring-boot-study-demo/%E5%88%9B%E5%BB%BA%E9%A1%B9%E7%9B%AE5.png](https://raw.githubusercontent.com/sockstack/hexo_blog_img/master/spring-boot-study-demo/创建项目5.png) 测试通过,同样也可以在浏览器打开`127.0.0.1:8080`,查看结果
PHP程序猿的SpringBoot之旅-SpringBoot项目创建
作者
sockstack
许可协议
CC BY 4.0
发布于
2023-07-17
修改于
2024-11-21
上一篇:百度快速收录
下一篇:Spring 包以及作用说明
尚未登录
登录 / 注册
文章分类
博客重构之路
5
Spring Boot简单入门
4
k8s 入门教程
0
MySQL 知识
1
NSQ 消息队列
0
ThinkPHP5 源码分析
5
使用 Docker 从零开始搭建私人代码仓库
3
日常开发汇总
3
标签列表
springboot
hyperf
swoole
webman
php
多线程
数据结构
docker
k8s
thinkphp
mysql
tailwindcss
flowbite
css
前端