SSM框架搭建(二)--整合swagger
程序员文章站
2022-03-16 17:04:34
...
描述 |
用的多的简单方式是使用postman进行接口测试,这种测试需要开发人员自己输入url,参数等信息,使用swagger项目启动后通过swagger界面就可直接看到对应的controller及其下的接口,例如一些需要输入某个实体的参数直接就给出了model,只需要修改参数即可测试,方便,快捷。
添加jar包依赖 |
在web层的pom文件中添加swagger的jar包依赖
<!--swagger-->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
</dependency>
配置bean |
在spring-mvc.xml文件中添加swagger的bean
<bean class="springfox.documentation.swagger2.configuration.Swagger2DocumentationConfiguration" id="swagger2Config"/>
<mvc:resources location="classpath:/META-INF/resources/" mapping="swagger-ui.html"/>
<mvc:resources location="classpath:/META-INF/resources/webjars/" mapping="/webjars/**"/>
访问swagger |
项目发布地址/swagger-ui.html,例如,在我本地是http://localhost:8080/swagger-ui.html
上一篇: Swagger-editor教程
下一篇: 一篇文章就能让小白对React得心应手?
推荐阅读
-
一步步教你整合SSM框架(Spring MVC+Spring+MyBatis)详细教程
-
使用IDEA配置Maven搭建开发框架ssm教程
-
redis与ssm整合方法(mybatis二级缓存)
-
Java框架搭建之Maven、Mybatis、Spring MVC整合搭建(图文)
-
搭建ssh框架的基本步骤(ssh框架整合实战教程)
-
maven搭建ssm框架步骤(用eclipse搭建ssm框架)
-
maven搭建ssm框架步骤(用eclipse搭建ssm框架)
-
搭建ssh框架的基本步骤(ssh框架整合实战教程)
-
Z从壹开始前后端分离【 .NET Core2.0/3.0 +Vue2.0 】框架之二 || 后端项目搭建
-
从零开始搭建前后端分离的NetCore2.2(EF Core CodeFirst+Autofac)+Vue的项目框架之十一Swagger使用一