Skip to content

Commit

Permalink
!61 v3.2.1.3
Browse files Browse the repository at this point in the history
Merge pull request !61 from 码匠君/develop
  • Loading branch information
herodotus-ecosystem authored and gitee-org committed Jan 3, 2024
2 parents 113b943 + 6061515 commit fe6ffec
Show file tree
Hide file tree
Showing 139 changed files with 171 additions and 171 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<p align="center">
<a href="https://spring.io/projects/spring-boot" target="_blank"><img src="https://shields.io/badge/Spring%20Boot-3.2.1-blue.svg?logo=spring" alt="Spring Boot 3.2.1"></a>
<a href="#" target="_blank"><img src="https://shields.io/badge/Version-3.2.1.2-red.svg?logo=spring" alt="Version 3.2.1.2"></a>
<a href="#" target="_blank"><img src="https://shields.io/badge/Version-3.2.1.3-red.svg?logo=spring" alt="Version 3.2.1.3"></a>
<a href="https://bell-sw.com/pages/downloads/#downloads" target="_blank"><img src="https://img.shields.io/badge/JDK-17%2B-green.svg?logo=openjdk" alt="Java 17"></a>
<a href="./LICENSE"><img src="https://shields.io/badge/License-Apache--2.0-blue.svg?logo=apache" alt="License Apache 2.0"></a>
<a href="https://www.herodotus.cn"><img src="https://visitor-badge.laobi.icu/badge?page_id=dante-cloud&title=Total%20Visits" alt="Total Visits"></a>
Expand Down
2 changes: 1 addition & 1 deletion oss-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<parent>
<groupId>cn.herodotus.engine</groupId>
<artifactId>dependencies</artifactId>
<version>3.2.1.2</version>
<version>3.2.1.3</version>
<relativePath/>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion oss-dialect/dialect-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>cn.herodotus.oss</groupId>
<artifactId>oss-dialect</artifactId>
<version>3.2.1.2</version>
<version>3.2.1.3</version>
</parent>

<artifactId>dialect-autoconfigure</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

package cn.herodotus.oss.dialect.autoconfigure;

import cn.herodotus.engine.assistant.core.function.ErrorCodeMapperBuilderCustomizer;
import cn.herodotus.engine.assistant.definition.function.ErrorCodeMapperBuilderCustomizer;
import cn.herodotus.oss.dialect.aliyun.configuration.OssDialectAliyunConfiguration;
import cn.herodotus.oss.dialect.autoconfigure.annotation.ConditionalOnUseAliyunDialect;
import cn.herodotus.oss.dialect.autoconfigure.annotation.ConditionalOnUseMinioDialect;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@

package cn.herodotus.oss.dialect.autoconfigure.customizer;

import cn.herodotus.engine.assistant.core.constants.ErrorCodeMapperBuilderOrdered;
import cn.herodotus.engine.assistant.core.exception.ErrorCodeMapperBuilder;
import cn.herodotus.engine.assistant.core.function.ErrorCodeMapperBuilderCustomizer;
import cn.herodotus.engine.assistant.definition.constants.ErrorCodeMapperBuilderOrdered;
import cn.herodotus.engine.assistant.definition.function.ErrorCodeMapperBuilderCustomizer;
import cn.herodotus.engine.assistant.definition.support.ErrorCodeMapperBuilder;
import cn.herodotus.oss.dialect.core.constants.OssErrorCodes;
import org.springframework.core.Ordered;

Expand Down
2 changes: 1 addition & 1 deletion oss-dialect/dialect-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>cn.herodotus.oss</groupId>
<artifactId>oss-dialect</artifactId>
<version>3.2.1.2</version>
<version>3.2.1.3</version>
</parent>

<artifactId>dialect-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

package cn.herodotus.oss.dialect.core.constants;

import cn.herodotus.engine.assistant.core.constants.BaseConstants;
import cn.herodotus.engine.assistant.definition.constants.BaseConstants;

/**
* <p>Description: 对象存储统一常量 </p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

package cn.herodotus.oss.dialect.core.constants;

import cn.herodotus.engine.assistant.core.exception.feedback.InternalServerErrorFeedback;
import cn.herodotus.engine.assistant.core.exception.feedback.ServiceUnavailableFeedback;
import cn.herodotus.engine.assistant.definition.feedback.InternalServerErrorFeedback;
import cn.herodotus.engine.assistant.definition.feedback.ServiceUnavailableFeedback;

/**
* <p>Description: 对象存储错误代码 </p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

package cn.herodotus.oss.dialect.core.exception;

import cn.herodotus.engine.assistant.core.domain.Feedback;
import cn.herodotus.engine.assistant.core.exception.PlatformException;
import cn.herodotus.engine.assistant.definition.domain.Feedback;
import cn.herodotus.engine.assistant.definition.exception.PlatformRuntimeException;
import cn.herodotus.oss.dialect.core.constants.OssErrorCodes;

/**
Expand All @@ -35,7 +35,7 @@
* @author : gengwei.zheng
* @date : 2023/6/7 21:36
*/
public class OssBucketPolicyTooLargeException extends PlatformException {
public class OssBucketPolicyTooLargeException extends PlatformRuntimeException {

public OssBucketPolicyTooLargeException() {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

package cn.herodotus.oss.dialect.core.exception;

import cn.herodotus.engine.assistant.core.domain.Feedback;
import cn.herodotus.engine.assistant.core.exception.PlatformException;
import cn.herodotus.engine.assistant.definition.domain.Feedback;
import cn.herodotus.engine.assistant.definition.exception.PlatformRuntimeException;
import cn.herodotus.oss.dialect.core.constants.OssErrorCodes;

/**
Expand All @@ -35,7 +35,7 @@
* @author : gengwei.zheng
* @date : 2023/6/6 12:47
*/
public class OssConnectException extends PlatformException {
public class OssConnectException extends PlatformRuntimeException {

public OssConnectException() {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

package cn.herodotus.oss.dialect.core.exception;

import cn.herodotus.engine.assistant.core.domain.Feedback;
import cn.herodotus.engine.assistant.core.exception.PlatformException;
import cn.herodotus.engine.assistant.definition.domain.Feedback;
import cn.herodotus.engine.assistant.definition.exception.PlatformRuntimeException;
import cn.herodotus.oss.dialect.core.constants.OssErrorCodes;

/**
Expand All @@ -35,7 +35,7 @@
* @author : gengwei.zheng
* @date : 2021/11/8 14:30
*/
public class OssErrorResponseException extends PlatformException {
public class OssErrorResponseException extends PlatformRuntimeException {

public OssErrorResponseException() {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

package cn.herodotus.oss.dialect.core.exception;

import cn.herodotus.engine.assistant.core.domain.Feedback;
import cn.herodotus.engine.assistant.core.exception.PlatformException;
import cn.herodotus.engine.assistant.definition.domain.Feedback;
import cn.herodotus.engine.assistant.definition.exception.PlatformRuntimeException;
import cn.herodotus.oss.dialect.core.constants.OssErrorCodes;

/**
Expand All @@ -35,7 +35,7 @@
* @author : gengwei.zheng
* @date : 2022/7/4 11:08
*/
public class OssExecutionException extends PlatformException {
public class OssExecutionException extends PlatformRuntimeException {

public OssExecutionException() {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

package cn.herodotus.oss.dialect.core.exception;

import cn.herodotus.engine.assistant.core.domain.Feedback;
import cn.herodotus.engine.assistant.core.exception.PlatformException;
import cn.herodotus.engine.assistant.definition.domain.Feedback;
import cn.herodotus.engine.assistant.definition.exception.PlatformRuntimeException;
import cn.herodotus.oss.dialect.core.constants.OssErrorCodes;

/**
Expand All @@ -35,7 +35,7 @@
* @author : gengwei.zheng
* @date : 2021/11/8 14:35
*/
public class OssIOException extends PlatformException {
public class OssIOException extends PlatformRuntimeException {

public OssIOException() {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

package cn.herodotus.oss.dialect.core.exception;

import cn.herodotus.engine.assistant.core.domain.Feedback;
import cn.herodotus.engine.assistant.core.exception.PlatformException;
import cn.herodotus.engine.assistant.definition.domain.Feedback;
import cn.herodotus.engine.assistant.definition.exception.PlatformRuntimeException;
import cn.herodotus.oss.dialect.core.constants.OssErrorCodes;

/**
Expand All @@ -35,7 +35,7 @@
* @author : gengwei.zheng
* @date : 2021/11/8 14:32
*/
public class OssInsufficientDataException extends PlatformException {
public class OssInsufficientDataException extends PlatformRuntimeException {

public OssInsufficientDataException() {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

package cn.herodotus.oss.dialect.core.exception;

import cn.herodotus.engine.assistant.core.domain.Feedback;
import cn.herodotus.engine.assistant.core.exception.PlatformException;
import cn.herodotus.engine.assistant.definition.domain.Feedback;
import cn.herodotus.engine.assistant.definition.exception.PlatformRuntimeException;
import cn.herodotus.oss.dialect.core.constants.OssErrorCodes;

/**
Expand All @@ -35,7 +35,7 @@
* @author : gengwei.zheng
* @date : 2021/11/8 14:32
*/
public class OssInternalException extends PlatformException {
public class OssInternalException extends PlatformRuntimeException {

public OssInternalException() {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

package cn.herodotus.oss.dialect.core.exception;

import cn.herodotus.engine.assistant.core.domain.Feedback;
import cn.herodotus.engine.assistant.core.exception.PlatformException;
import cn.herodotus.engine.assistant.definition.domain.Feedback;
import cn.herodotus.engine.assistant.definition.exception.PlatformRuntimeException;
import cn.herodotus.oss.dialect.core.constants.OssErrorCodes;

/**
Expand All @@ -35,7 +35,7 @@
* @author : gengwei.zheng
* @date : 2022/7/4 11:09
*/
public class OssInterruptedException extends PlatformException {
public class OssInterruptedException extends PlatformRuntimeException {

public OssInterruptedException() {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

package cn.herodotus.oss.dialect.core.exception;

import cn.herodotus.engine.assistant.core.domain.Feedback;
import cn.herodotus.engine.assistant.core.exception.PlatformException;
import cn.herodotus.engine.assistant.definition.domain.Feedback;
import cn.herodotus.engine.assistant.definition.exception.PlatformRuntimeException;
import cn.herodotus.oss.dialect.core.constants.OssErrorCodes;

/**
Expand All @@ -35,7 +35,7 @@
* @author : gengwei.zheng
* @date : 2023/6/25 11:02
*/
public class OssInvalidCipherTextException extends PlatformException {
public class OssInvalidCipherTextException extends PlatformRuntimeException {

public OssInvalidCipherTextException() {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

package cn.herodotus.oss.dialect.core.exception;

import cn.herodotus.engine.assistant.core.domain.Feedback;
import cn.herodotus.engine.assistant.core.exception.PlatformException;
import cn.herodotus.engine.assistant.definition.domain.Feedback;
import cn.herodotus.engine.assistant.definition.exception.PlatformRuntimeException;
import cn.herodotus.oss.dialect.core.constants.OssErrorCodes;

/**
Expand All @@ -35,7 +35,7 @@
* @author : gengwei.zheng
* @date : 2021/11/8 14:32
*/
public class OssInvalidKeyException extends PlatformException {
public class OssInvalidKeyException extends PlatformRuntimeException {

public OssInvalidKeyException() {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

package cn.herodotus.oss.dialect.core.exception;

import cn.herodotus.engine.assistant.core.domain.Feedback;
import cn.herodotus.engine.assistant.core.exception.PlatformException;
import cn.herodotus.engine.assistant.definition.domain.Feedback;
import cn.herodotus.engine.assistant.definition.exception.PlatformRuntimeException;
import cn.herodotus.oss.dialect.core.constants.OssErrorCodes;

/**
Expand All @@ -35,7 +35,7 @@
* @author : gengwei.zheng
* @date : 2021/11/8 14:35
*/
public class OssInvalidResponseException extends PlatformException {
public class OssInvalidResponseException extends PlatformRuntimeException {

public OssInvalidResponseException() {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

package cn.herodotus.oss.dialect.core.exception;

import cn.herodotus.engine.assistant.core.domain.Feedback;
import cn.herodotus.engine.assistant.core.exception.PlatformException;
import cn.herodotus.engine.assistant.definition.domain.Feedback;
import cn.herodotus.engine.assistant.definition.exception.PlatformRuntimeException;
import cn.herodotus.oss.dialect.core.constants.OssErrorCodes;

/**
Expand All @@ -35,7 +35,7 @@
* @author : gengwei.zheng
* @date : 2021/11/8 14:36
*/
public class OssNoSuchAlgorithmException extends PlatformException {
public class OssNoSuchAlgorithmException extends PlatformRuntimeException {

public OssNoSuchAlgorithmException() {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

package cn.herodotus.oss.dialect.core.exception;

import cn.herodotus.engine.assistant.core.domain.Feedback;
import cn.herodotus.engine.assistant.core.exception.PlatformException;
import cn.herodotus.engine.assistant.definition.domain.Feedback;
import cn.herodotus.engine.assistant.definition.exception.PlatformRuntimeException;
import cn.herodotus.oss.dialect.core.constants.OssErrorCodes;

/**
Expand All @@ -35,7 +35,7 @@
* @author : gengwei.zheng
* @date : 2021/11/8 14:36
*/
public class OssServerException extends PlatformException {
public class OssServerException extends PlatformRuntimeException {
public OssServerException() {
super();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

package cn.herodotus.oss.dialect.core.exception;

import cn.herodotus.engine.assistant.core.domain.Feedback;
import cn.herodotus.engine.assistant.core.exception.PlatformException;
import cn.herodotus.engine.assistant.definition.domain.Feedback;
import cn.herodotus.engine.assistant.definition.exception.PlatformRuntimeException;
import cn.herodotus.oss.dialect.core.constants.OssErrorCodes;

/**
Expand All @@ -35,7 +35,7 @@
* @author : gengwei.zheng
* @date : 2021/11/8 14:36
*/
public class OssXmlParserException extends PlatformException {
public class OssXmlParserException extends PlatformRuntimeException {

public OssXmlParserException() {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

package cn.herodotus.oss.dialect.core.service;

import cn.herodotus.engine.assistant.core.definition.AbstractObjectPool;
import cn.herodotus.engine.assistant.core.support.AbstractObjectPool;

/**
* <p>Description: 对象存储 Service 抽象定义 </p>
Expand Down
2 changes: 1 addition & 1 deletion oss-dialect/dialect-sdk-aliyun/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>cn.herodotus.oss</groupId>
<artifactId>dante-oss</artifactId>
<version>3.2.1.2</version>
<version>3.2.1.3</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

package cn.herodotus.oss.dialect.aliyun.definition.pool;

import cn.herodotus.engine.assistant.core.definition.AbstractObjectPool;
import cn.herodotus.engine.assistant.core.support.AbstractObjectPool;
import cn.herodotus.oss.dialect.core.client.AbstractOssClientPooledObjectFactory;
import com.aliyun.oss.OSS;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

package cn.herodotus.oss.dialect.aliyun.definition.service;

import cn.herodotus.engine.assistant.core.definition.AbstractObjectPool;
import cn.herodotus.engine.assistant.core.support.AbstractObjectPool;
import cn.herodotus.oss.dialect.core.service.BaseOssService;
import com.aliyun.oss.OSS;

Expand Down
Loading

0 comments on commit fe6ffec

Please sign in to comment.