api接口分类,appToken类别

This commit is contained in:
wenc000 2020-05-09 19:30:34 +08:00
parent 626a4e320c
commit 7c54f28631
4 changed files with 15 additions and 13 deletions

View File

@ -142,18 +142,18 @@ public class SwaggerConfig {
}
@Bean
public Docket createRestApiWeb() {
public Docket createRestApiWechatMiniApp() {
List<ResponseMessage> responseMessageList = responseMessageList();
return new Docket(DocumentationType.SWAGGER_2)
.globalResponseMessage(RequestMethod.POST, responseMessageList)
.globalResponseMessage(RequestMethod.DELETE, responseMessageList)
.globalResponseMessage(RequestMethod.PUT, responseMessageList)
.globalResponseMessage(RequestMethod.GET, responseMessageList)
.groupName(ISystemConstant.API_GROUP_WEB)
.groupName(ISystemConstant.API_GROUP_WECHAT_MINI_APP)
.apiInfo(apiInfo())
.select()
.apis(RequestHandlerSelectors.basePackage(swaggerBasePackage))
.paths(PathSelectors.ant("/web/**"))
.paths(PathSelectors.ant("/wxminiapp/**"))
.build();
}

View File

@ -33,9 +33,9 @@ public interface ISystemConstant {
*/
String API_TAGS_WECHAT_PREFIX = "微信接口-";
/**
* 网页接口
* 微信小程序接口
*/
String API_TAGS_WEB_PREFIX = "网页接口-";
String API_TAGS_WECHAT_MINI_APP_PREFIX = "微信小程序接口-";
/**
* 系统接口分组
*/
@ -57,17 +57,13 @@ public interface ISystemConstant {
*/
String API_GROUP_WECHAT = "WECHAT";
/**
* 网页接口分组
* 微信小程序接口分组
*/
String API_GROUP_WEB = "WEB";
String API_GROUP_WECHAT_MINI_APP = "WXMINIAPP";
/**
* api前缀
*/
String API_PREFIX = "/api";
/**
* 网页前缀
*/
String API_WEB_PREFIX = "/web";
/**
* 路由前缀
*/
@ -100,6 +96,10 @@ public interface ISystemConstant {
* 微信路由前缀
*/
String WECHAT_ROUTE_PREFIX = "/wechatroute";
/**
* 微信小程序前缀
*/
String WECHAT_MINI_APP_PREFIX = "/wxminiapp";
/**
* true
*/

View File

@ -13,6 +13,7 @@ package com.cm.common.enums;
public enum AppTokenTypeEnum {
WECHAT("wechat"),
WECHAT_MINI_APP("wxminiapp"),
APP("app");
private String type;

View File

@ -35,11 +35,12 @@ public class LicenseTest {
// 东河新三务公开00-16-3E-00-79-BC
// 本机F0-79-60-1E-49-FC
// 应急管理局测试服务器(58.18.22.25)00-50-56-BE-3C-BC
// 包头政法委00-50-56-93-2D-29
// 内蒙古艺校18-66-DA-E8-EC-D4
// String mac = AddressUtil.getMacAddress();
// System.out.println(mac);
String license = License.getLicense("2020-04-22", "40", "18-66-DA-E8-EC-D4", "_System_License_");
// 环保统一用户FA-16-3E-17-20-7D
String license = License.getLicense("2020-05-08", "10000", "FA-16-3E-17-20-7D", "_System_License_");
System.out.println(license);
}