Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibizlab-boot-starters
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibizlab-boot-starters
提交
0c59b969
提交
0c59b969
编写于
8月 17, 2022
作者:
sq3536
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
undertow
上级
1910313c
变更
4
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
23 行增加
和
30 行删除
+23
-30
SwaggerDisplayEnum.java
...n/java/cn/ibizlab/util/annotation/SwaggerDisplayEnum.java
+14
-0
SimpleAuditService.java
...main/java/cn/ibizlab/util/service/SimpleAuditService.java
+0
-4
pom.xml
ibizlab-boot-starter-parent/pom.xml
+7
-9
pom.xml
ibizlab-boot-starter/pom.xml
+2
-17
未找到文件。
ibizlab-boot-starter-data/src/main/java/cn/ibizlab/util/annotation/SwaggerDisplayEnum.java
0 → 100644
浏览文件 @
0c59b969
package
cn
.
ibizlab
.
util
.
annotation
;
import
java.lang.annotation.ElementType
;
import
java.lang.annotation.Retention
;
import
java.lang.annotation.RetentionPolicy
;
import
java.lang.annotation.Target
;
@Target
({
ElementType
.
TYPE
})
@Retention
(
RetentionPolicy
.
RUNTIME
)
public
@interface
SwaggerDisplayEnum
{
String
code
()
default
"value"
;
String
desc
()
default
"label"
;
Class
<?>
type
()
default
String
.
class
;
}
\ No newline at end of file
ibizlab-boot-starter-data/src/main/java/cn/ibizlab/util/service/SimpleAuditService.java
浏览文件 @
0c59b969
...
...
@@ -37,10 +37,6 @@ public class SimpleAuditService extends ServiceImpl<IBZDataAuditMapper, IBZDataA
private
static
List
cacheMap
=
Collections
.
synchronizedList
(
new
ArrayList
());
public
static
void
main
(
String
[]
args
)
{
System
.
out
.
println
(
SimpleAuditService
.
class
.
getAnnotations
());
}
/**
* 定时保存审计记录
*/
...
...
ibizlab-boot-starter-parent/pom.xml
浏览文件 @
0c59b969
...
...
@@ -47,7 +47,9 @@
<log4j2.version>
2.16.0
</log4j2.version>
<fastjson.version>
1.2.83
</fastjson.version>
<!-- Swagger2 -->
<springfox-swagger.version>
2.9.2
</springfox-swagger.version>
<swagger2.version>
1.5.22
</swagger2.version>
<swagger3.version>
2.1.2
</swagger3.version>
<knife4j.version>
2.0.9
</knife4j.version>
<!--MapStruct高性能属性映射工具-->
<mapstruct.version>
1.3.0.Final
</mapstruct.version>
<lombok-mapstruct-binding.version>
0.2.0
</lombok-mapstruct-binding.version>
...
...
@@ -179,16 +181,12 @@
<!-- Swagger2 -->
<dependency>
<groupId>
io.springfox
</groupId>
<artifactId>
springfox-swagger2
</artifactId>
<version>
${springfox-swagger.version}
</version>
</dependency>
<dependency>
<groupId>
io.springfox
</groupId>
<artifactId>
springfox-swagger-ui
</artifactId>
<version>
${springfox-swagger.version}
</version>
<groupId>
com.github.xiaoymin
</groupId>
<artifactId>
knife4j-spring-boot-starter
</artifactId>
<version>
${knife4j.version}
</version>
</dependency>
<dependency>
<groupId>
org.mapstruct
</groupId>
<artifactId>
mapstruct-jdk8
</artifactId>
...
...
ibizlab-boot-starter/pom.xml
浏览文件 @
0c59b969
...
...
@@ -36,11 +36,6 @@
<artifactId>
spring-boot-starter-undertow
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-webflux
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-core
</artifactId>
...
...
@@ -160,18 +155,8 @@
<!-- Swagger2 -->
<dependency>
<groupId>
io.springfox
</groupId>
<artifactId>
springfox-swagger2
</artifactId>
<exclusions>
<exclusion>
<artifactId>
mapstruct
</artifactId>
<groupId>
org.mapstruct
</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
io.springfox
</groupId>
<artifactId>
springfox-swagger-ui
</artifactId>
<groupId>
com.github.xiaoymin
</groupId>
<artifactId>
knife4j-spring-boot-starter
</artifactId>
</dependency>
</dependencies>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录