mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-10-31 10:18:42 +08:00 
			
		
		
		
	Merge branch 'master' of https://gitee.com/zhijiantianya/ruoyi-vue-pro into feature/1.8.0-uniapp
This commit is contained in:
		| @@ -58,6 +58,7 @@ | ||||
|         <jsch.version>0.1.55</jsch.version> | ||||
|         <tika-core.version>2.4.1</tika-core.version> | ||||
|         <aj-captcha.version>1.3.0</aj-captcha.version> | ||||
|         <netty-all.version>4.1.82.Final</netty-all.version> | ||||
|         <!-- 三方云服务相关 --> | ||||
|         <minio.version>8.2.2</minio.version> | ||||
|         <aliyun-java-sdk-core.version>4.6.0</aliyun-java-sdk-core.version> | ||||
| @@ -521,6 +522,12 @@ | ||||
|                 <version>${jsch.version}</version> | ||||
|             </dependency> | ||||
|  | ||||
|             <dependency> | ||||
|                 <groupId>io.netty</groupId> | ||||
|                 <artifactId>netty-all</artifactId> | ||||
|                 <version>${netty-all.version}</version> | ||||
|             </dependency> | ||||
|  | ||||
|             <!-- 三方云服务相关 --> | ||||
|             <dependency> | ||||
|                 <groupId>cn.iocoder.boot</groupId> | ||||
|   | ||||
| @@ -9,6 +9,7 @@ import cn.iocoder.yudao.framework.tenant.core.db.TenantDatabaseInterceptor; | ||||
| import cn.iocoder.yudao.framework.tenant.core.job.TenantJob; | ||||
| import cn.iocoder.yudao.framework.tenant.core.job.TenantJobHandlerDecorator; | ||||
| import cn.iocoder.yudao.framework.tenant.core.mq.TenantRedisMessageInterceptor; | ||||
| import cn.iocoder.yudao.framework.tenant.core.redis.TenantRedisCacheManager; | ||||
| import cn.iocoder.yudao.framework.tenant.core.security.TenantSecurityWebFilter; | ||||
| import cn.iocoder.yudao.framework.tenant.core.service.TenantFrameworkService; | ||||
| import cn.iocoder.yudao.framework.tenant.core.service.TenantFrameworkServiceImpl; | ||||
| @@ -25,6 +26,14 @@ import org.springframework.boot.context.properties.EnableConfigurationProperties | ||||
| import org.springframework.boot.web.servlet.FilterRegistrationBean; | ||||
| import org.springframework.context.annotation.Bean; | ||||
| import org.springframework.context.annotation.Configuration; | ||||
| import org.springframework.context.annotation.Primary; | ||||
| import org.springframework.data.redis.cache.RedisCacheConfiguration; | ||||
| import org.springframework.data.redis.cache.RedisCacheManager; | ||||
| import org.springframework.data.redis.cache.RedisCacheWriter; | ||||
| import org.springframework.data.redis.connection.RedisConnectionFactory; | ||||
| import org.springframework.data.redis.core.RedisTemplate; | ||||
|  | ||||
| import java.util.Objects; | ||||
|  | ||||
| @Configuration | ||||
| @ConditionalOnProperty(prefix = "yudao.tenant", value = "enable", matchIfMissing = true) // 允许使用 yudao.tenant.enable=false 禁用多租户 | ||||
| @@ -110,4 +119,15 @@ public class YudaoTenantAutoConfiguration { | ||||
|         }; | ||||
|     } | ||||
|  | ||||
|     @Bean | ||||
|     @Primary // 引入租户时,tenantRedisCacheManager 为主 Bean | ||||
|     public RedisCacheManager tenantRedisCacheManager(RedisTemplate<String, Object> redisTemplate, | ||||
|                                                      RedisCacheConfiguration redisCacheConfiguration) { | ||||
|         // 创建 RedisCacheWriter 对象 | ||||
|         RedisConnectionFactory connectionFactory = Objects.requireNonNull(redisTemplate.getConnectionFactory()); | ||||
|         RedisCacheWriter cacheWriter = RedisCacheWriter.nonLockingRedisCacheWriter(connectionFactory); | ||||
|         // 创建 TenantRedisCacheManager 对象 | ||||
|         return new TenantRedisCacheManager(cacheWriter, redisCacheConfiguration); | ||||
|     } | ||||
|  | ||||
| } | ||||
|   | ||||
| @@ -0,0 +1,38 @@ | ||||
| package cn.iocoder.yudao.framework.tenant.core.redis; | ||||
|  | ||||
| import cn.iocoder.yudao.framework.tenant.core.context.TenantContextHolder; | ||||
| import lombok.extern.slf4j.Slf4j; | ||||
| import org.jetbrains.annotations.NotNull; | ||||
| import org.springframework.cache.Cache; | ||||
| import org.springframework.data.redis.cache.RedisCacheConfiguration; | ||||
| import org.springframework.data.redis.cache.RedisCacheManager; | ||||
| import org.springframework.data.redis.cache.RedisCacheWriter; | ||||
|  | ||||
| /** | ||||
|  * 多租户的 {@link RedisCacheManager} 实现类 | ||||
|  * | ||||
|  * 操作指定 name 的 {@link Cache} 时,自动拼接租户后缀,格式为 name + ":" + tenantId | ||||
|  * | ||||
|  * @author airhead | ||||
|  */ | ||||
| @Slf4j | ||||
| public class TenantRedisCacheManager extends RedisCacheManager { | ||||
|  | ||||
|     public TenantRedisCacheManager(RedisCacheWriter cacheWriter, | ||||
|                                    RedisCacheConfiguration defaultCacheConfiguration) { | ||||
|         super(cacheWriter, defaultCacheConfiguration); | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|     public Cache getCache(@NotNull String name) { | ||||
|         // 如果开启多租户,则 name 拼接租户后缀 | ||||
|         if (!TenantContextHolder.isIgnore() | ||||
|             && TenantContextHolder.getTenantId() != null) { | ||||
|             name = name + ":" + TenantContextHolder.getTenantId(); | ||||
|         } | ||||
|  | ||||
|         // 继续基于父方法 | ||||
|         return super.getCache(name); | ||||
|     } | ||||
|  | ||||
| } | ||||
| @@ -32,6 +32,11 @@ | ||||
|             <artifactId>spring-boot-starter-cache</artifactId> <!-- 实现对 Caches 的自动化配置 --> | ||||
|         </dependency> | ||||
|  | ||||
|         <dependency> | ||||
|             <groupId>io.netty</groupId> | ||||
|             <artifactId>netty-all</artifactId> | ||||
|         </dependency> | ||||
|  | ||||
|     </dependencies> | ||||
|  | ||||
| </project> | ||||
|   | ||||
| @@ -1,6 +1,7 @@ | ||||
| package cn.iocoder.yudao.framework.redis.config; | ||||
|  | ||||
| import org.springframework.boot.autoconfigure.cache.CacheProperties; | ||||
| import org.springframework.boot.context.properties.EnableConfigurationProperties; | ||||
| import org.springframework.cache.annotation.EnableCaching; | ||||
| import org.springframework.context.annotation.Bean; | ||||
| import org.springframework.context.annotation.Configuration; | ||||
| @@ -13,6 +14,7 @@ import org.springframework.data.redis.serializer.RedisSerializer; | ||||
|  * Cache 配置类,基于 Redis 实现 | ||||
|  */ | ||||
| @Configuration | ||||
| @EnableConfigurationProperties({CacheProperties.class}) | ||||
| @EnableCaching | ||||
| public class YudaoCacheAutoConfiguration { | ||||
|  | ||||
|   | ||||
| @@ -51,7 +51,7 @@ spring: | ||||
|           #          url: jdbc:oracle:thin:@127.0.0.1:1521:xe # Oracle 连接的示例 | ||||
|           #          url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=${spring.datasource.dynamic.datasource.master.name} # SQLServer 连接的示例 | ||||
|           username: root | ||||
|           password: 123456 | ||||
|           password: ${RUOYI_VUE_PRO} | ||||
|         #          username: sa | ||||
|         #          password: JSm:g(*%lU4ZAkz06cd52KqT3)i1?H7W | ||||
|         slave: # 模拟从库,可根据自己需要修改 | ||||
| @@ -62,7 +62,7 @@ spring: | ||||
|           #          url: jdbc:oracle:thin:@127.0.0.1:1521:xe # Oracle 连接的示例 | ||||
|           #          url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=${spring.datasource.dynamic.datasource.slave.name} # SQLServer 连接的示例 | ||||
|           username: root | ||||
|           password: 123456 | ||||
|           password: ${RUOYI_VUE_PRO} | ||||
|   #          username: sa | ||||
|   #          password: JSm:g(*%lU4ZAkz06cd52KqT3)i1?H7W | ||||
|  | ||||
|   | ||||
| @@ -77,7 +77,7 @@ | ||||
|             <el-form-item label="处理器的参数:">{{ form.handlerParam }}</el-form-item> | ||||
|             <el-form-item label="第几次执行:">{{ form.executeIndex }}</el-form-item> | ||||
|             <el-form-item label="执行时间:">{{ parseTime(form.beginTime) + ' ~ ' + parseTime(form.endTime) }}</el-form-item> | ||||
|             <el-form-item label="执行时长:">{{ parseTime(form.duration) + ' 毫秒' }}</el-form-item> | ||||
|             <el-form-item label="执行时长:">{{ form.duration + ' 毫秒' }}</el-form-item> | ||||
|             <el-form-item label="任务状态:"> | ||||
|               <dict-tag :type="DICT_TYPE.INFRA_JOB_LOG_STATUS" :value="form.status" /> | ||||
|             </el-form-item> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 YunaiV
					YunaiV