intellij 2018 更新了一个新内容,可以方便生成spring boot 的rest接口测试
一、效果如下
- SpringBootREST.gif
二、先在pom.xml文件中引入依赖 spring-boot-starter-actuator
.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<version>2.0.0.RELEASE</version>
</dependency>
三、修改启动配置 打开 enable JMX agent
- image.png
- image.png
四、启动spring-boot
项目
- 项目一定要启动成功后才能看见这个绿色小三角
- image.png
- 编辑请求文件, 更多语法看这里 >>> HTTP Client in IntelliJ IDEA Code Editor
image.png
五:更多特性
注: 这个功能是替代原来的rest client
- image.png
- image.png
参考:
- Intellij 2018.1更新内容 -- 看spring boot 部分
- HTTP Client in IntelliJ IDEA Code Editor -- http文件语法
- Access HTTP request mappings from the editor
网友评论