easy-yapi
easy-yapi copied to clipboard
Generate API document to yapi
大佬我看到你的导出export上面 写了这个注解 但是我不太理解这个注解的作用 当他为true和false的时候的区别是什么 默认为true
**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Detailed Steps to reproduce the behavior: 1. Open '...' 2. Click on '....' 3. See...
项目背景: 多模块项目,在项目的根目录下面,存在一个配置文件 .easy.api.config 我用来配置公共属性,和默认值 模块内部,会在模块的根目录下面,存在一个配置文件 .easy.api.config 用来配置个性化的属性,比如说归属到的module,和folder 插件版本:2.5.4.191.0 以下是几种尝试过的配置: 一、 1) 根目录下面 存在 如下配置 module.name=A folder.name=defaultFolderName 2)模块内部存在配置: module.name=A folder.name=realFolder 二、 1) 根目录下面 存在 如下配置 module.name=A folder.name=defaultFolderName 2)模块内部存在配置: module.name=B folder.name=#folder 三、...
`package com.example.springboottest.entity; import com.example.springboottest.anno.Group1; import com.example.springboottest.anno.Group2; import com.example.springboottest.anno.GroupParent; import com.example.springboottest.anno.MyConstraint; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import javax.validation.Valid; import javax.validation.constraints.*; import javax.validation.groups.Default; @Data @AllArgsConstructor @NoArgsConstructor public class UserValid { @NotNull(message...
请问为什么我的接口设置了`@ApiParam(required = true)`,在settings的BuildInConfig中也添加了`[email protected]`,但是输出的接口文档的request body仍然没有显示是否必传的一列信息? 
GUI页面
大佬 问一下你的GUI页面是怎么写的,然后那个form文件是如何呗使用的,因为我用了你同样的方法创建一个页面,但是没有样式显现, 修改这个东西,需要会一些什么
method.doc[groovy:it.containingClass().hasDoc("deprecated")]=groovy:"\n「已废弃」" + it.containingClass().doc("deprecated") method.doc[groovy:it.containingClass().hasAnn("java.lang.Deprecated")]=「已废弃」 你这个不是方法吗,方法的话 好像containingClass 调不动
check_groups=``` for(annMap in annMaps){ def fieldGroups = annMap["groups"] ?: [helper.findClass("javax.validation.groups.Default")] def paramGroups = session.get("json-group") ?: [helper.findClass("javax.validation.groups.Default")] for(fieldGroup in fieldGroups){ for(paramGroup in paramGroups){ //你这里写反了 if(paramGroup.isExtend(fieldGroup.name())){ return true } } } }...