在Spring Boot中上傳文件依賴包可以通過以下兩種方式進行:
在pom.xml
文件中添加以下依賴:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
如果需要上傳文件到服務器,還需要添加以下依賴:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
在使用Spring Initializr生成項目時,在"Dependencies"選項中選擇"Spring Web"和"Spring Boot DevTools"依賴,這將自動添加所需的依賴包。
無論哪種方式,一旦依賴被添加到項目中,可以使用@RequestMapping
注解來處理文件上傳請求,并使用MultipartHttpServletRequest
來獲取上傳的文件。