写在前面

现在已经是八月份了,我已经荒废了半年居多,不得不说谈恋爱确实是个麻烦的事,谈好了皆大欢喜,分手了就是萎靡不振,需要很长一段时间才能缓过来。

人还是要有梦想的,至于实现只不过是一个契机,但凡不懒,你都可能是下一个被命运眷顾的幸运儿(仅限技术,追妹纸另当别论)。

一直以来就有个心愿,想使用前后端分离技术,写一个Web系统,主要技术栈Spring Boot+ Vue3 ,想一想就很兴奋那种,很久没有这种感觉了。

话不多说,开始更文了。

创建Spring Boot项目

  • 单击 File -> New -> Project… 命令,弹出新建项目框。

  • 选择 Spring Initializr 选项,单击 Next 按钮,Idea 很强大已经帮我们做了集成。

  • 选择 Web ,这里我选择的版本是2.4.0,如果无法选中,到时候在pom文件中自行修改即可,单击Next按钮,最后确定信息无误单击 Finish 按钮。

  • 删除无用的文件.mvn、 mvnw、 mvnw.cmd

项目结构

  • src/main/java:程序开发以及主程序入口
  • src/main/resources:配置文件
  • src/test/java:测试程序

简单接口编写

按照国际惯例,先整一个Hello World吧。

首先创建一个名为HelloController的类,示例代码如下:

package com.rongrong.wiki.demo;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController; /**
*
* @description
* @version 1.0
* @author longrong.lang
*
*/
@RestController
public class HelloController {
@RequestMapping(method= RequestMethod.GET,value = "/hello")
public String sayHello(){
return "hello,Spring Boot!";
}
}

启动主程序

打开浏览器访问 http://localhost:8080/hello,就可以看到以下内容:

hello,Spring Boot!

单元测试

我们使用Spring Boot中自带的MockMvc进行测试,不了解的同学可以自己百度查询学习,如果对PowerMock或者其他单元测试框架Mock比较书的同学上手会很快。

在测试程序中,创建一个名为HelloControllerTest的测试类,示例代码如下:

package com.rongrong.wiki.test;

import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.http.MediaType;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.MvcResult;
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.equalTo; /**
* @author longrong.lang
* @version 1.0
* @description
*/
@AutoConfigureMockMvc
@SpringBootTest
public class HelloControllerTest {
@Autowired
MockMvc mockMvc; @Test
@DisplayName("测试返回字符串")
public void testHello() throws Exception {
MvcResult mvcResult = mockMvc.perform(MockMvcRequestBuilders.get("/hello").accept(MediaType.APPLICATION_FORM_URLENCODED)).andReturn();
String content = mvcResult.getResponse().getContentAsString();
assertThat(content,equalTo("hello,Spring Boot!"));
} }

说明:

  • @Autowired这个注解应该很熟悉吧,个人感觉这里采用的是Spring Mvc的思路,比如自动导入Bean
  • 关于Mock部分参考单元测试框架Mock去学习即可

运行结果

最后

到此,使用 Spring Boot 快速搭建项目完成,如果觉得对您有帮助,请关注,点赞,并转发。

聪明的人都去瞧瞧努力了,你还在犹豫什么呢?行动起来,来一起入坑!

最新文章

  1. javaScript之BOM操作1
  2. height与line-height的深入理解及应用
  3. java io流之BufferReader&BufferedWriter
  4. 安装sqlserver2012时出现的丧心病狂的错误
  5. backbone模型层浅析
  6. Why we need template on Django ?
  7. Jquery操作Cookie取值错误的解决方法
  8. 【ACM/ICPC2013】POJ基础图论题简析(一)
  9. 贪心 BZOJ 3671:[Noi2014]随机数生成器
  10. php进程继续执行
  11. python高级编程:有用的设计模式3
  12. CentOS5.4下安装codeblocks 12.11
  13. call_grant_sel.sql
  14. C语言mktime()
  15. UOJ Round #1 [数论 | DP 排列]
  16. 护眼党必备良心app
  17. weblogic启动项目,设置内容、设置的数据源链接不生效
  18. SVN入门使用
  19. shell命令——if
  20. 冲刺Two之站立会议2

热门文章

  1. 1、springboot2新建web项目
  2. 严重:Exception sending context initialized event to listener instance of class [myJava.MyServletContextListener] java.lang.NullPointerException
  3. WSL中使用systemctl报错问题
  4. 章节1-Prometheus基础(1)
  5. 简单聊一下Uwsgi和Django的爱恨情仇
  6. Chirp Z-Transform
  7. 手写笔记变PDF-几行代码变命令行程序为图形化界面
  8. Automation Framework Design 自动化框架设计思想
  9. python删除文件中某一行
  10. 【LeetCode】66. 加一