FastDFS连接池
使用common-pool2
直持spring
通过nginx进行http访问
支持防盗链
xmlns=""
xsi:schemaLocation=" .xsd">
spring boot
## l
fastdfs:
g_connect_timeout: 60
g_network_timeout: 80
g_anti_steal_token: false
poolConfig:
maxTotal: 100
maxIdle: 10
protocol:
tracker_servers: 127.0.0.1:22122
g_tracker_http_port: 8080
nginx_address: 127.0.0.1:80
@Configuration
public class FastDfsConfig {
public static final String ROOT_CONFIG_PREFIX = "fastdfs";
@Resource
private FastDFSTemplateFactory fastDFSFactory;
@Bean(initMethod = "init")
@ConfigurationProperties(prefix = ROOT_CONFIG_PREFIX)
public FastDFSTemplateFactory fastDFSFactory() {
return new FastDFSTemplateFactory();
}
@Bean
public FastDFSTemplate fastDFSTemplate() {
return new FastDFSTemplate(fastDFSFactory);
}
}
如需要缩略图大小
可以参考nginx配置image_filter
location ~/group1/M00 {
alias /fastdfs/storage/data;
ngx_fastdfs_module;
set $flag '';
if ($args ~* "width=([1-9]d*)") {
set $width $1;
set $flag "${flag}A";
}
if ($args ~* "height=([1-9]d*)") {
set $height $1;
set $flag "${flag}B";
}
if ($flag != AB){
set $height 9999;
set $width 9999;
}
image_filter resize $width $height;
}
本文发布于:2024-02-05 02:35:49,感谢您对本站的认可!
本文链接:https://www.4u4v.net/it/170722056062240.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
留言与评论(共有 0 条评论) |