package com.project.milvus.controller; import com.project.milvus.service.MilvusDemoService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; @RestController @RequestMapping("/milvus") public class MilvusController { @Autowired private MilvusDemoService milvusDemoService; }