-
Notifications
You must be signed in to change notification settings - Fork 3k
文件上传增加S3协议的OSS支持 #328
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
liujiang157
wants to merge
9
commits into
hs-web:master
Choose a base branch
from
liujiang157:feature/oss-support
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
文件上传增加S3协议的OSS支持 #328
Changes from 1 commit
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
fe9da58
文件上传增加S3协议的OSS支持
liujiang157 28e1325
解耦两种文件上传方式的的Configuration
liujiang157 d9fece3
提交上传流的返回路径
liujiang157 72c89ca
补齐文件流上传测试
liujiang157 a5c1e7d
调整代码
liujiang157 a491553
新增S3FileProperties
liujiang157 ec8edfa
修改代码规范问题
liujiang157 947c695
提交UriComponentsBuilder构建url
liujiang157 6e7dd9e
修改上传static文件逻辑
liujiang157 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
...web-system-file/src/main/java/org/hswebframework/web/file/S3FileStorageConfiguration.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
package org.hswebframework.web.file; | ||
|
||
import org.hswebframework.web.file.service.FileStorageService; | ||
import org.hswebframework.web.file.service.S3FileStorageService; | ||
import org.hswebframework.web.file.web.S3FileController; | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean; | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; | ||
import org.springframework.boot.context.properties.EnableConfigurationProperties; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import software.amazon.awssdk.auth.credentials.AwsBasicCredentials; | ||
import software.amazon.awssdk.auth.credentials.StaticCredentialsProvider; | ||
import software.amazon.awssdk.regions.Region; | ||
import software.amazon.awssdk.services.s3.S3Client; | ||
|
||
import java.net.URI; | ||
|
||
@Configuration | ||
@ConditionalOnClass(S3Client.class) | ||
@ConditionalOnProperty(name = "file.storage", havingValue = "s3", matchIfMissing = false) | ||
@EnableConfigurationProperties(S3StorageProperties.class) | ||
public class S3FileStorageConfiguration { | ||
|
||
@Bean | ||
@ConditionalOnBean(S3StorageProperties.class) | ||
@ConditionalOnMissingBean(name = "s3FileController") | ||
public S3FileController s3FileController(S3StorageProperties properties, | ||
FileStorageService storageService) { | ||
return new S3FileController(properties, storageService); | ||
} | ||
|
||
@Bean | ||
@ConditionalOnMissingBean | ||
public S3Client s3Client(S3StorageProperties properties) { | ||
return S3Client.builder() | ||
.endpointOverride(URI.create(properties.getEndpoint())) | ||
.credentialsProvider(StaticCredentialsProvider.create( | ||
AwsBasicCredentials.create(properties.getAccessKey(), properties.getSecretKey()))) | ||
.region(Region.of(properties.getRegion())) | ||
.build(); | ||
} | ||
|
||
@Bean | ||
@ConditionalOnMissingBean(FileStorageService.class) | ||
liujiang157 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
public FileStorageService s3FileStorageService(S3StorageProperties properties, S3Client s3Client) { | ||
return new S3FileStorageService(properties, s3Client); | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.