Developing a Personal Task Manager with Spring Boot and Vue.js

System Architecture and EnvironmentThe architecture employs a decoupled frontend and backend. The backend leverages Spring Boot with JDK 1.8, serving via embedded Tomcat, while data persistence relies on MySQL 5.7. Build management is handled via Maven. The client-side consumes RESTful APIs through a Vue.js interface, ensuring a responsive and ...

Posted on Sat, 19 Sep 2026 16:40:46 +0000 by alimadzi

Implementing Image Uploads with MinIO Object Storage in Spring Boot

Setting Up MinIO Server MinIO is an open-source object storage server that enables users to deploy private cloud storage solutions with simplicity, high availability, and scalability. Pull Docker Image docker pull minio/minio Start Container docker run -p 9000:9000 -p 9090:9090 \ --name minio-container \ -d --restart=always \ -e "MINI ...

Posted on Sat, 12 Sep 2026 16:54:36 +0000 by ccrevcypsys

Managing File Uploads to Windows Network Shares in ASP.NET Core

Configuration Setup First define the necessary settings in appsettings.json: { "SharedFolderSettings": { "RemotePath": "\\\\192.168.1.200\\Files", "PublicBaseUrl": "http://files.example.com/", "User": "shareuser", "Password": "sharepassword" ...

Posted on Wed, 02 Sep 2026 16:27:47 +0000 by CoderGoblin

Java Web Application Integration with MinIO Object Storage

Introduction MinIO is an open source object storage solution comptaible with Amazon S3 APIs. It's designed for storing unstructured data such as images, videos, audio files, and logs, with support for objects up to 5TB in size. Dependencies Add the following dependencies to your project: <dependency> <groupId>io.minio</groupI ...

Posted on Tue, 18 Aug 2026 16:51:45 +0000 by novice4eva

Day 3 Part 1: Dish Management (AOP, Custom Annotations, Reflection, File Upload)

The automatic filling of common fields primarily uses AOP (Aspect-Oriented Programming), involving reflection mechanisms and custom annotations. For adding new dishes, we learn about file upload techniques using Alibaba Cloud OSS for cloud storage, along with handling relationships between two tables—retrieving dish IDs from the dish_flavor tab ...

Posted on Sun, 09 Aug 2026 16:04:58 +0000 by tzuriel

Django URL Routing, Reverse Resolution, and Virtual Environments

Table Relationships in Django Use Cases for One-to-One Relationships In QQ, basic user info is linked to detailed info—this saves query time. One-to-one tables can be merged into one or split into two separate tables. Foreign keys should be placed on the many side of a one-to-many relationship. Create base tables first before establishing forei ...

Posted on Tue, 04 Aug 2026 16:52:05 +0000 by reub77

Implementing Multi-File Upload with Ant Design Pro 5 and Express Backend

To implement multi-file upload functionality using Ant Design Pro 5 and an Express server, you'll need to handle both frontend component configuration and backend file processsing. Front end Component Setup Configure the Ant Design Upload component to support multiple file selection: import { Upload } from 'antd'; import { InboxOutlined } from ...

Posted on Wed, 08 Jul 2026 17:40:03 +0000 by dalecosp

Implementing a Basic Media Server with Java REST Endpoints

A media server manages storage, organization, and delivery of digital media assets. Java provides a robust foundation for building such systems, offering features for network communication and file handling. This example outlines a core architectural model for a server and demonstrates fundamental file operations using RESTful web services. Typ ...

Posted on Sun, 28 Jun 2026 18:00:11 +0000 by HuggieBear

Integrating OSS Object Storage with Spring Boot

This project demonstrates how to integrate an object storage service with a Spring Boot application. We will use Alibaba Cloud OSS (Object Storage Service) as the example provider. First, insure you have created an OSS instance on Alibaba Cloud and obtained the access keys (Access Key ID and Access Key Secret). (Refer to the Alibaba Cloud docum ...

Posted on Sun, 21 Jun 2026 18:03:27 +0000 by ukalpa

Managing Aliyun OSS Storage Operations in Python

Interacting with Aliyun Object Storage Service (OSS) requires authenticating the client and utilizing the bucket interface to perform CRUD operations on objects. The implementation below defines a class OSSManager to encapsulate these functionalities, including file transfers, streaming data, and generating temporary access URLs.Client Initiali ...

Posted on Fri, 19 Jun 2026 17:38:33 +0000 by insub2