MinIO Object Storage Integration with RuoYi Framework
Dependencies and Configuration
Add MinIO SDK dependency in pom.xml:
<dependency>
<groupId>io.minio</groupId>
<artifactId>minio</artifactId>
<version>8.5.7</version>
</dependency>
Configure application.yml:
minio:
endpoint: http://server-ip:9000
access-id: minio-user
secret-key: secur ...
Posted on Thu, 30 Jul 2026 16:21:36 +0000 by 11Tami
Controlling Component Cache Behavior During Route Navigation in RuoYi
Route-Level Cache Control
In RuoYi framework, you can prevent specific routes from using cached components by modifying the route configuration in src/api/router/index.js. Add the noCache: true parameter to the route's meta object:
{
path: '/storage',
component: Layout,
hidden: true,
redirect: 'noredirect',
children: [
{
pat ...
Posted on Thu, 14 May 2026 03:18:11 +0000 by Jeroen_nld