Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

Commit 9f19569

Browse files
committed
🐛 修复objectConverter和bucketConverter没有注入问题
📝 修改文档
1 parent 26c1b0c commit 9f19569

File tree

72 files changed

+147
-146
lines changed

Some content is hidden

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

72 files changed

+147
-146
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2020 opcooc ([email protected])
189+
Copyright 2021 opcooc ([email protected])
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@
6969
<dependency>
7070
<groupId>com.opcooc</groupId>
7171
<artifactId>opcooc-storage-spring-boot-starter</artifactId>
72-
<version>1.0.0</version>
72+
<version>1.0.1</version>
7373
</dependency>
7474
```
7575
- Gradle
7676
```groovy
77-
compile group: 'com.opcooc', name: 'opcooc-storage-spring-boot-starter', version: '1.0.0'
77+
implementation 'com.opcooc:opcooc-storage-spring-boot-starter:1.0.1'
7878
```
7979

8080
## 添加配置,在 `application.yml` 中添加配置信息
@@ -271,7 +271,7 @@
271271

272272
-------------------------------------------------------------------------------
273273

274-
> 该展示只是 opcooc-storage-spring-boot-starter 功能的一小部分。如果您想了解更多信息,请参阅项目demo [documentation](https://github.com/opcooc/opcooc-storage-spring-boot-starter/wiki).
274+
> 该展示只是 opcooc-storage-spring-boot-starter 功能的一小部分。如果您想了解更多信息,请参阅项目[demo项目](https://github.com/opcooc/opcooc-storage-spring-boot-starter-example) 或 wiki: [documentation](https://github.com/opcooc/opcooc-storage-spring-boot-starter/wiki).
275275

276276
## 友情链接
277277

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ javaSourceCompatibility=11
66
javaTargetCompatibility=11
77

88
#project version
9-
opcoocVersion=1.0.0
9+
opcoocVersion=1.0.1
1010

1111
sonatypeUsername=*
1212
sonatypePassword=*

license.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright © 2020-2029 organization opcooc
1+
Copyright © 2020-2030 organization opcooc
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

src/main/java/com/opcooc/storage/StorageClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2020-2029 organization opcooc
2+
* Copyright © 2020-2030 organization opcooc
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -70,7 +70,7 @@
7070
* 2.objectConverter objectName 自定义转换器
7171
*
7272
* @author shenqicheng
73-
* @since 1.2.0
73+
* @since 1.0.0
7474
*/
7575
@Slf4j
7676
public class StorageClient implements InitializingBean, Client {

src/main/java/com/opcooc/storage/annotation/OS.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2020-2029 organization opcooc
2+
* Copyright © 2020-2030 organization opcooc
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -25,7 +25,7 @@
2525
* 切换 storage client 的注解
2626
*
2727
* @author shenqicheng
28-
* @since 1.2.0
28+
* @since 1.0.0
2929
*/
3030
@Target({ElementType.TYPE, ElementType.METHOD})
3131
@Retention(RetentionPolicy.RUNTIME)

src/main/java/com/opcooc/storage/aop/DynamicClientAnnotationAdvisor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2020-2029 organization opcooc
2+
* Copyright © 2020-2030 organization opcooc
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/com/opcooc/storage/aop/DynamicClientAnnotationInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2020-2029 organization opcooc
2+
* Copyright © 2020-2030 organization opcooc
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/com/opcooc/storage/args/BaseArgs.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2020-2029 organization opcooc
2+
* Copyright © 2020-2030 organization opcooc
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@
2020

2121
/**
2222
* @author shenqicheng
23-
* @since 1.2.0
23+
* @since 1.0.0
2424
*/
2525
@SuperBuilder(toBuilder = true)
2626
public abstract class BaseArgs {

src/main/java/com/opcooc/storage/args/BucketArgs.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2020-2029 organization opcooc
2+
* Copyright © 2020-2030 organization opcooc
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -27,7 +27,7 @@
2727

2828
/**
2929
* @author shenqicheng
30-
* @since 1.2.0
30+
* @since 1.0.0
3131
*/
3232
@Getter
3333
@SuperBuilder(toBuilder = true)

0 commit comments

Comments
 (0)