Skip to content

Commit 5103400

Browse files
authored
v6.0.9
v6.0.9
2 parents d560ba4 + 046a1a0 commit 5103400

File tree

2,814 files changed

+5678
-30665
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,814 files changed

+5678
-30665
lines changed

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</p>
77
<p align="center">
88
<a target="_blank" href="https://search.maven.org/search?q=org.aoju">
9-
<img src="https://img.shields.io/badge/maven--central-v6.0.8-blue.svg?label=Maven%20Central" />
9+
<img src="https://img.shields.io/badge/maven--central-v6.0.9-blue.svg?label=Maven%20Central" />
1010
</a>
1111
<a target="_blank" href="https://travis-ci.org/aoju/bus">
1212
<img src="https://travis-ci.org/aoju/bus.svg?branch=master">
@@ -20,9 +20,6 @@
2020
<a target="_blank" href="https://www.mysql.com">
2121
<img src="https://img.shields.io/badge/Mysql-5.7-blue.svg">
2222
</a>
23-
<a target="_blank" href="https://swagger.io">
24-
<img src="https://img.shields.io/badge/swagger-2.9.2-brightgreen.svg">
25-
</a>
2623
<a target="_blank" href="http://dubbo.apache.org">
2724
<img src="https://img.shields.io/badge/dubbo-2.7.5-yellow.svg">
2825
</a>
@@ -101,7 +98,7 @@ Bus (应用/服务总线) 是一个微服务套件、基础框架,它基于Jav
10198
<dependency>
10299
<groupId>org.aoju</groupId>
103100
<artifactId>bus-all</artifactId>
104-
<version>6.0.8</version>
101+
<version>6.0.9</version>
105102
</dependency>
106103
```
107104
或者单独使用某个组件
@@ -115,7 +112,7 @@ Bus (应用/服务总线) 是一个微服务套件、基础框架,它基于Jav
115112

116113
### Gradle
117114
```
118-
implementation 'org.aoju:bus-all:6.0.8'
115+
implementation 'org.aoju:bus-all:6.0.9'
119116
```
120117

121118
### Downlad

bus-all/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.aoju</groupId>
88
<artifactId>bus-all</artifactId>
9-
<version>6.0.8</version>
9+
<version>6.0.9</version>
1010
<packaging>jar</packaging>
1111

1212
<name>${project.artifactId}</name>

bus-all/src/main/java/org/aoju/bus/Bus.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* </p>
4343
*
4444
* @author Kimi Liu
45-
* @version 6.0.8
45+
* @version 6.0.9
4646
* @since JDK 1.8+
4747
*/
4848
public class Bus {

bus-base/pom.xml

Lines changed: 1 addition & 83 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.aoju</groupId>
88
<artifactId>bus-base</artifactId>
9-
<version>6.0.8</version>
9+
<version>6.0.9</version>
1010
<packaging>jar</packaging>
1111

1212
<name>${project.artifactId}</name>
@@ -19,16 +19,10 @@
1919
<project.compiler.version>1.8</project.compiler.version>
2020
<spring.boot.version>2.3.0.RELEASE</spring.boot.version>
2121
<lombok.version>1.18.12</lombok.version>
22-
<swagger.version>3.0.0</swagger.version>
2322
<persistence.version>2.2</persistence.version>
2423
</properties>
2524

2625
<dependencies>
27-
<dependency>
28-
<groupId>${project.groupId}</groupId>
29-
<artifactId>bus-mapper</artifactId>
30-
<version>${project.version}</version>
31-
</dependency>
3226
<dependency>
3327
<groupId>${project.groupId}</groupId>
3428
<artifactId>bus-pager</artifactId>
@@ -46,82 +40,6 @@
4640
<version>${persistence.version}</version>
4741
<optional>true</optional>
4842
</dependency>
49-
<dependency>
50-
<groupId>io.springfox</groupId>
51-
<artifactId>springfox-swagger2</artifactId>
52-
<version>${swagger.version}</version>
53-
<optional>true</optional>
54-
<exclusions>
55-
<exclusion>
56-
<groupId>org.springframework</groupId>
57-
<artifactId>spring-core</artifactId>
58-
</exclusion>
59-
<exclusion>
60-
<groupId>org.springframework</groupId>
61-
<artifactId>spring-aop</artifactId>
62-
</exclusion>
63-
<exclusion>
64-
<groupId>org.springframework</groupId>
65-
<artifactId>spring-beans</artifactId>
66-
</exclusion>
67-
<exclusion>
68-
<groupId>org.springframework</groupId>
69-
<artifactId>spring-context</artifactId>
70-
</exclusion>
71-
<exclusion>
72-
<groupId>org.springframework</groupId>
73-
<artifactId>spring-expression</artifactId>
74-
</exclusion>
75-
<exclusion>
76-
<groupId>com.fasterxml.jackson.core</groupId>
77-
<artifactId>jackson-databind</artifactId>
78-
</exclusion>
79-
<exclusion>
80-
<groupId>com.fasterxml.jackson.core</groupId>
81-
<artifactId>jackson-core</artifactId>
82-
</exclusion>
83-
<exclusion>
84-
<groupId>com.fasterxml.jackson.core</groupId>
85-
<artifactId>jackson-annotations</artifactId>
86-
</exclusion>
87-
<exclusion>
88-
<artifactId>byte-buddy</artifactId>
89-
<groupId>net.bytebuddy</groupId>
90-
</exclusion>
91-
<exclusion>
92-
<artifactId>slf4j-api</artifactId>
93-
<groupId>org.slf4j</groupId>
94-
</exclusion>
95-
<exclusion>
96-
<groupId>com.google.guava</groupId>
97-
<artifactId>guava</artifactId>
98-
</exclusion>
99-
<exclusion>
100-
<groupId>com.fasterxml.jackson.core</groupId>
101-
<artifactId>jackson-annotations</artifactId>
102-
</exclusion>
103-
<exclusion>
104-
<groupId>io.swagger</groupId>
105-
<artifactId>swagger-annotations</artifactId>
106-
</exclusion>
107-
<exclusion>
108-
<groupId>io.swagger</groupId>
109-
<artifactId>swagger-models</artifactId>
110-
</exclusion>
111-
</exclusions>
112-
</dependency>
113-
<dependency>
114-
<groupId>io.swagger</groupId>
115-
<artifactId>swagger-annotations</artifactId>
116-
<version>1.5.22</version>
117-
<optional>true</optional>
118-
</dependency>
119-
<dependency>
120-
<groupId>io.swagger</groupId>
121-
<artifactId>swagger-models</artifactId>
122-
<version>1.5.22</version>
123-
<optional>true</optional>
124-
</dependency>
12543
<dependency>
12644
<groupId>org.springframework.boot</groupId>
12745
<artifactId>spring-boot-starter-web</artifactId>

bus-base/src/main/java/org/aoju/bus/base/advice/BaseAdvice.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
* 异常信息拦截处理
4848
*
4949
* @author Kimi Liu
50-
* @version 6.0.8
50+
* @version 6.0.9
5151
* @since JDK 1.8+
5252
*/
5353
@ControllerAdvice

bus-base/src/main/java/org/aoju/bus/base/consts/Consts.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* 公共常量
3232
*
3333
* @author Kimi Liu
34-
* @version 6.0.8
34+
* @version 6.0.9
3535
* @since JDK 1.8+
3636
*/
3737
public class Consts extends Normal {

bus-base/src/main/java/org/aoju/bus/base/consts/ErrorCode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* 系统响应码
3535
*
3636
* @author Kimi Liu
37-
* @version 6.0.8
37+
* @version 6.0.9
3838
* @since JDK 1.8+
3939
*/
4040
public class ErrorCode {

bus-base/src/main/java/org/aoju/bus/base/entity/BaseEntity.java

Lines changed: 25 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
********************************************************************************/
2525
package org.aoju.bus.base.entity;
2626

27-
import io.swagger.annotations.ApiModelProperty;
2827
import lombok.Data;
2928
import lombok.EqualsAndHashCode;
3029
import org.aoju.bus.base.consts.Consts;
@@ -40,7 +39,7 @@
4039
* Entity 基本信息.
4140
*
4241
* @author Kimi Liu
43-
* @version 6.0.8
42+
* @version 6.0.9
4443
* @since JDK 1.8+
4544
*/
4645
@Data
@@ -49,31 +48,47 @@ public class BaseEntity extends Tracer {
4948

5049
private static final long serialVersionUID = 1L;
5150

52-
@ApiModelProperty(value = "状态", notes = "-1删除,0无效,1正常")
51+
/**
52+
* 数据状态:-1删除,0无效,1正常
53+
*/
5354
protected String status;
5455

55-
@ApiModelProperty("创建人")
56+
/**
57+
* 创建者
58+
*/
5659
protected String creator;
5760

58-
@ApiModelProperty("创建时间")
61+
/**
62+
* 创建时间
63+
*/
5964
protected String created;
6065

61-
@ApiModelProperty("修改人")
66+
/**
67+
* 修改者
68+
*/
6269
protected String modifier;
6370

64-
@ApiModelProperty("修改时间")
71+
/**
72+
* 修改时间
73+
*/
6574
protected String modified;
6675

76+
/**
77+
* 分页页码,默认值:1
78+
*/
6779
@Transient
68-
@ApiModelProperty(value = "页码", notes = "默认值:1")
6980
protected Integer pageNo = 1;
7081

82+
/**
83+
* 分页大小,默认值:20
84+
*/
7185
@Transient
72-
@ApiModelProperty(value = "分页大小", notes = "默认值:20")
7386
protected Integer pageSize = 20;
7487

88+
/**
89+
* 排序方式,asc desc
90+
*/
7591
@Transient
76-
@ApiModelProperty(value = "数据排序")
7792
protected String orderBy;
7893

7994
/**

bus-base/src/main/java/org/aoju/bus/base/entity/Entity.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
********************************************************************************/
2525
package org.aoju.bus.base.entity;
2626

27-
import io.swagger.annotations.ApiModelProperty;
2827
import lombok.Data;
2928

3029
import javax.persistence.Id;
@@ -34,16 +33,18 @@
3433
* Entity 实体
3534
*
3635
* @author Kimi Liu
37-
* @version 6.0.8
36+
* @version 6.0.9
3837
* @since JDK 1.8+
3938
*/
4039
@Data
4140
public abstract class Entity implements Serializable {
4241

4342
private static final long serialVersionUID = 1L;
4443

44+
/**
45+
* 数据主键
46+
*/
4547
@Id
46-
@ApiModelProperty("主键")
4748
protected String id;
4849

4950
}

bus-base/src/main/java/org/aoju/bus/base/entity/Message.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* 返回值公用类
3434
*
3535
* @author Kimi Liu
36-
* @version 6.0.8
36+
* @version 6.0.9
3737
* @since JDK 1.8+
3838
*/
3939
@Data

0 commit comments

Comments
 (0)