一步一步教你SSM整合swagger(ssm整合,swagger,wa,开发技术)

时间:2024-04-28 14:07:51 作者 : 石家庄SEO 分类 : 开发技术
  • TAG :

一:什么是swagger?

 swagger是一款非常好用的写API文档的框架。其他自行百度

二:ssm整合swagger?

1:在maven的pom文件中引入依赖:(注意版本,否则会导致tomcat不能正常启动

<!-- 引入swagger --> <!--springfox的核心jar包 --> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.7.0</version> </dependency> <!--springfox-ui的jar包(里面包含了swagger的界面静态文件) --> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> <version>2.7.0</version> </dependency> <!--springfox依赖的jar包;如果你的项目中已经集成了无需重复 --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.9.0</version> </dependency>

2:创建SwaggerConfig.java文件、即:swagger的配置文件,最好放到单独的文件夹下

@WebAppConfiguration@EnableSwagger2@EnableWebMvc@ComponentScan(basePackages="com.zgz.cn.controller")public class SwaggerConfig { @Bean public Docket api() { return new Docket(DocumentationType.SWAGGER_2) .select() .apis(RequestHandlerSelectors.any()) .build() .apiInfo(apiInfo()); } private ApiInfo apiInfo() { return new ApiInfoBuilder() .title("xxx项目接口文档") .description("xxx项目接口测试") .version("1.0.0") .termsOfServiceUrl("") .license("") .licenseUrl("") .build(); }}

3:在SpringMVC的配置文件中配置:(配置所有控制器所在的包)

<!-- 配置swagger的bean --> <!-- 将静态资源交由默认的servlet处理 --> <mvc:default-servlet-handler/> <!-- 向容器自动注入配置 --> <context:annotation-config/> <!-- 将SwaggerConfig配置类注入 --> <bean class="com.zgz.cn.swagger.SwaggerConfig"/> <!-- 配置swagger资源不被拦截 --><!-- <bean id="swagger2Config" class="springfox.documentation.swagger2.configuration.Swagger2DocumentationConfiguration"/> --> <mvc:resources location="classpath:/META-INF/resources/" mapping="swagger-ui.html"/> <mvc:resources location="classpath:/META-INF/resources/webjars/" mapping="/webjars/**"/>

4:在web.xml中配置所有的请求都经过DispatcherServlet处理

<servlet-mapping> <servlet-name>springMVC</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping>

5:在控制器中使用注解:(swagger常用注解)
一步一步教你SSM整合swagger
6:测试(访问地址:项目名/swagger-ui.html )
一步一步教你SSM整合swagger

 </div> <div class="zixun-tj-product adv-bottom"></div> </div> </div> <div class="prve-next-news">
本文:一步一步教你SSM整合swagger的详细内容,希望对您有所帮助,信息来源于网络。
上一篇:浅谈jsp的7个动作下一篇:

5 人围观 / 0 条评论 ↓快速评论↓

(必须)

(必须,保密)

阿狸1 阿狸2 阿狸3 阿狸4 阿狸5 阿狸6 阿狸7 阿狸8 阿狸9 阿狸10 阿狸11 阿狸12 阿狸13 阿狸14 阿狸15 阿狸16 阿狸17 阿狸18