当前位置: 首页 > news >正文

计算机网站建设考试试卷网站建设的费用包括哪些内容

计算机网站建设考试试卷,网站建设的费用包括哪些内容,wordpress 阿里云景象,张家港做网站公司效率工具 推荐一个程序员常用的工具网站#xff1a;程序员常用工具#xff08;http://tools.cxyroad.com#xff09;#xff0c;有时间戳、JSON格式化、文本对比、HASH生成、UUID生成等常用工具#xff0c;效率加倍嘎嘎好用。 云服务器 云服务器限时免费领#xff1a;轻量… 效率工具 推荐一个程序员常用的工具网站程序员常用工具http://tools.cxyroad.com有时间戳、JSON格式化、文本对比、HASH生成、UUID生成等常用工具效率加倍嘎嘎好用。 云服务器 云服务器限时免费领轻量服务器2核4G腾讯云2核2G4M云服务器新老同享99元/年续费同价阿里云2核2G3M的ECS服务器只需99元/年续费同价 整合Spring Boot框架集成Knife4j 在现代Web开发中API文档对于开发者来说至关重要。它不仅能帮助前后端开发者明确接口的使用方式还能提供接口调试和验证功能。在Spring Boot项目中集成Swagger是一个常见的选择。而Knife4j前身是Swagger Bootstrap UI在Swagger的基础上提供了更丰富的功能和更友好的界面。本篇文章将详细介绍如何在Spring Boot项目中集成Knife4j实现API文档的自动生成和管理。 一、什么是Knife4j Knife4j是对Swagger的增强提供了更丰富的功能和更友好的UI。它能够生成更加直观和美观的API文档并且支持接口调试、接口分组、Markdown文档等功能极大地方便了开发和测试。 1.1 Knife4j的主要功能 美观的UI提供了比Swagger UI更加美观的界面。接口调试可以直接在页面上调试接口查看返回结果。接口分组支持对API进行分组管理方便查找和管理。Markdown支持可以在文档中嵌入Markdown格式的说明提升文档的可读性。 二、环境准备 在开始之前确保你的开发环境中已经安装了以下工具 JDK 1.8或更高版本Maven或GradleIDEIntelliJ IDEA或Eclipse等 三、Spring Boot项目中集成Knife4j 3.1 创建Spring Boot项目 首先创建一个新的Spring Boot项目。如果你已经有了一个现成的Spring Boot项目可以跳过此步骤。 3.2 添加依赖 在Spring Boot项目中添加Knife4j的依赖。以Maven为例在pom.xml文件中添加以下依赖 dependencies!-- Spring Boot 依赖 --dependencygroupIdorg.springframework.boot/groupIdartifactIdspring-boot-starter-web/artifactId/dependency!-- Knife4j 依赖 --dependencygroupIdcom.github.xiaoymin/groupIdartifactIdknife4j-spring-boot-starter/artifactIdversion4.0.0/version/dependency!-- Swagger 依赖 --dependencygroupIdio.springfox/groupIdartifactIdspringfox-boot-starter/artifactIdversion3.0.0/version/dependency /dependencies如果你使用Gradle则在build.gradle文件中添加以下依赖 dependencies {implementation org.springframework.boot:spring-boot-starter-webimplementation com.github.xiaoymin:knife4j-spring-boot-starter:4.0.0implementation io.springfox:springfox-boot-starter:3.0.0 }3.3 配置Swagger和Knife4j 在Spring Boot项目的配置文件中进行Swagger和Knife4j的基本配置。通常在src/main/resources目录下创建或修改application.yml或application.properties文件。 使用application.yml进行配置 spring:application:name: demo-applicationknife4j:enable: truetitle: API文档description: API接口文档version: 1.0.0contact:name: 开发者url: http://example.comemail: developerexample.comswagger:api-docs:path: /v3/api-docsenabled: truedocket:default:group-name: defaultpaths-to-match: /**api-info:title: API文档version: 1.0.0description: API接口文档contact:name: 开发者url: http://example.comemail: developerexample.com使用application.properties进行配置 spring.application.namedemo-applicationknife4j.enabletrue knife4j.titleAPI文档 knife4j.descriptionAPI接口文档 knife4j.version1.0.0 knife4j.contact.name开发者 knife4j.contact.urlhttp://example.com knife4j.contact.emaildeveloperexample.comswagger.api-docs.path/v3/api-docs swagger.enabledtrue swagger.docket.default.group-namedefault swagger.docket.default.paths-to-match/** swagger.docket.default.api-info.titleAPI文档 swagger.docket.default.api-info.version1.0.0 swagger.docket.default.api-info.descriptionAPI接口文档 swagger.docket.default.api-info.contact.name开发者 swagger.docket.default.api-info.contact.urlhttp://example.com swagger.docket.default.api-info.contact.emaildeveloperexample.com3.4 创建Swagger配置类 在项目中创建一个Swagger配置类启用Swagger和Knife4j。 import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import springfox.documentation.builders.PathSelectors; import springfox.documentation.builders.RequestHandlerSelectors; import springfox.documentation.spi.DocumentationType; import springfox.documentation.spring.web.plugins.Docket; import springfox.documentation.swagger2.annotations.EnableSwagger2;Configuration EnableSwagger2 public class SwaggerConfig {Beanpublic Docket api() {return new Docket(DocumentationType.OAS_30).select().apis(RequestHandlerSelectors.basePackage(com.example.demo)).paths(PathSelectors.any()).build();} }在这里我们创建了一个Swagger配置类SwaggerConfig并在其中定义了一个Docket bean用于扫描指定包中的API接口。 3.5 创建示例Controller 为了验证Swagger和Knife4j的集成效果我们创建一个简单的Controller import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation;RestController RequestMapping(/api) Api(tags 示例接口) public class DemoController {GetMapping(/hello)ApiOperation(问候接口)public String hello() {return Hello, Knife4j!;} }3.6 运行项目并访问Knife4j界面 启动Spring Boot项目打开浏览器并访问http://localhost:8080/doc.html即可看到Knife4j生成的API文档界面。 四、高级配置和优化 4.1 接口分组 在实际项目中API接口可能会很多可以使用分组功能来管理不同模块的接口。在SwaggerConfig中配置多个Docket bean来实现分组 Configuration EnableSwagger2 public class SwaggerConfig {Beanpublic Docket groupOne() {return new Docket(DocumentationType.OAS_30).groupName(组一).select().apis(RequestHandlerSelectors.basePackage(com.example.demo.group1)).paths(PathSelectors.any()).build();}Beanpublic Docket groupTwo() {return new Docket(DocumentationType.OAS_30).groupName(组二).select().apis(RequestHandlerSelectors.basePackage(com.example.demo.group2)).paths(PathSelectors.any()).build();} }4.2 使用注解增强文档 可以通过Swagger的注解来增强API文档的可读性和信息量如ApiOperation、ApiParam、ApiModel等。 import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty;ApiModel(description 用户实体) public class User {ApiModelProperty(value 用户ID, example 1)private Long id;ApiModelProperty(value 用户名, example JohnDoe)private String username;// getters and setters }4.3 配置安全认证 如果API需要认证授权可以在Swagger配置中添加安全配置 import springfox.documentation.service.ApiKey; import springfox.documentation.service.SecurityReference; import springfox.documentation.spi.service.contexts.SecurityContext;Configuration EnableSwagger2 public class SwaggerConfig {Beanpublic Docket api() {return new Docket(DocumentationType.OAS_30).select().apis(RequestHandlerSelectors.any()).paths(PathSelectors.any()).build().securitySchemes(Arrays.asList(apiKey())).securityContexts(Arrays.asList(securityContext()));}private ApiKey apiKey() {return new ApiKey(JWT, Authorization, header);}private SecurityContext securityContext() {return SecurityContext.builder().securityReferences(defaultAuth()).build();}private ListSecurityReference defaultAuth() {AuthorizationScope authorizationScope new AuthorizationScope(global, accessEverything);AuthorizationScope[] authorizationScopes new AuthorizationScope[1];authorizationScopes[0] authorizationScope;return Arrays.asList(new SecurityReference(JWT, authorizationScopes));} }五、总结 通过本文的介绍我们了解了如何在Spring Boot项目中集成Knife4j提升API文档的美观性和可用性。Knife4j不仅提供了友好的界面还支持丰富的功能如接口调试、接口分组和Markdown文档等。 在实际项目中合理配置和使用Knife4j不仅能提升开发效率还能为前后端联调和测试提供极大的便利。如果你还没有在项目中使用Knife4j不妨尝试一下相信你会喜欢上这个强大的工具。
http://www.zqtcl.cn/news/801740/

相关文章:

  • 大连网站建设谁家好软件开发需要什么技术
  • 广州网站建设哪家便宜成都电商app开发
  • 网站qq访客统计青岛网站设计定制
  • 山东嘉祥做网站的有哪几家销售外包
  • 怎么做网站_旅游网站定位
  • 湛江seo推广公司aso优化渠道
  • 网站设计培训机构内蒙古网上办事大厅官网
  • 什么是网站空间信息网站备案号中信息有变
  • 网站建设的基础怎么提升网站流量
  • 网站开发线框网页设计网站建设过程报告
  • 怎么用html做移动网站吗免费装修设计软件
  • 门头沟石家庄网站建设鞍山怎么样做一个自己的网站
  • 网站安装代码宣传网站建设背景
  • 网站空间续费东莞网站建设(信科分公司)
  • 少儿教育网站建设价格网页制作讲解视频
  • 网站开发方向的工作网站怎么做排名
  • 建设网站烧钱iis配置网站是什么
  • 新网站建设特色网站建设信息表
  • 商城做网站家具网站模板
  • 国有企业网站建设网站悬浮qq
  • 上海建站宝盒微网站生成app
  • 做网站是什么时候分页有哪些制作网站的公司
  • 专业柳州网站建设哪家好5千ip的网站能赚多少钱
  • 网站开发代理最火网页游戏
  • 做网站运营工资多少网站建设协议需要注意的问题
  • 如何建设一个人工智能网站qq头像网站源码
  • 有什么网站可以做外贸出口信息泉州网站制作运营商专业
  • 创业seo快速排名优化公司
  • 安丘网站开发王野天 女演员
  • 沈阳软件公司 网站制作wordpress未验证邮箱用户