Use swagger in spring boot

Source: Internet
Author: User

First, Pom.xml

<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.6.1</version>
</dependency>

<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.6.1</version>
</dependency>

Second, create Swagger2 class
@Configuration
@EnableSwagger2
public class Swagger2 {
@Bean
Public Docket Createrestapi () {
List<parameter> pars = new arraylist<parameter> ();
return new Docket (documentationtype.swagger_2)
. Apiinfo (Apiinfo ())
. Select ()
. APIs (Requesthandlerselectors.withclassannotation (Restcontroller.class))
. Paths (Pathselectors.any ())
. Build ()
. Globaloperationparameters (Pars)
. Apiinfo (Apiinfo ());
}

Private Apiinfo Apiinfo () {
return new Apiinfobuilder ()
. Title ("Xiao Wang RESTful API")
. Description ("Write API with Swagger2")
. Termsofserviceurl ("https://www.cnblogs.com/")
. Version ("1.0")
. build ();
}
}
Three, start location configuration
@SpringBootApplication
@EnableSwagger2
public class Smlzapplication {

public static void Main (string[] args) {
Springapplication.run (Smlzapplication.class, args);
}
}
Iv. Use of
@PostMapping ("/save-book")
@ApiOperation (value = "Add book", notes = "Not connected to database temporarily")
SaveBook (@RequestBody book) {
Return Bookserivce.insertbybook (book);
}


Use swagger in spring boot

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.