-html
一、本章節主要搭建了一個簡單的頁面上傳Web控制器,主要爲後序工做加入 zuul 微服務而作的準備; 二、不過在本章節用命令上傳文件的時候,在windows命令窗口有時候會出現中文亂碼什麼的,請注意看本文 FileUploadController 是如何解決這個亂碼問題的; 三、至於使用 curl 命令須要下載什麼安裝包之類的,這個就請你們找找度娘怎麼弄吧。
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>springms-file-upload</artifactId> <version>1.0-SNAPSHOT</version> <packaging>jar</packaging> <parent> <groupId>com.springms.cloud</groupId> <artifactId>springms-spring-cloud</artifactId> <version>1.0-SNAPSHOT</version> </parent> <dependencies> <!-- web模塊 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- 客戶端發現模塊 --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka</artifactId> </dependency> <!-- 監控和管理生產環境的模塊 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> </dependencies> </project>
server: port: 8190 eureka: client: serviceUrl: defaultZone: http://admin:admin@localhost:8761/eureka/ instance: prefer-ip-address: true spring: application: name: springms-file-upload http: multipart: max-file-size: 20Mb # Max file size,默認1M max-request-size: 20Mb # Max request size,默認10M ##################################################################################################### # 打印日誌 logging: level: root: INFO com.springms: DEBUG com.netflix: debug #####################################################################################################
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> </head> <body> <form method="POST" enctype="multipart/form-data" action="/upload"> File to upload: <input type="file" name="file"> <input type="submit" value="Upload"> </form> </body> </html>
package com.springms.cloud.controller; import org.springframework.util.FileCopyUtils; import org.springframework.web.bind.annotation.*; import org.springframework.web.multipart.MultipartFile; import java.io.File; import java.io.IOException; /** * 上傳文件控制器。 * * @author hmilyylimh * * @version 0.0.1 * * @date 2017/9/26 * */ @RestController public class FileUploadController { /** * 上傳文件。 * * @param file * @return * @throws IOException */ @RequestMapping(value = "/upload", method = RequestMethod.POST) @ResponseBody public String uploadFile(@RequestParam(value = "file", required = true)MultipartFile file) throws IOException{ byte[] bytes = file.getBytes(); File fileToSave = new File(file.getOriginalFilename()); FileCopyUtils.copy(bytes, fileToSave); return fileToSave.getAbsolutePath(); } // 解決 windows 的 curl 命令執行後返回亂碼 // chcp 65001 就是換成UTF-8代碼頁 // chcp 936 能夠換回默認的GBK // chcp 437 是美國英語 // 在命令行標題欄上點擊右鍵,選擇"屬性"->"字體",將字體修改成True Type字體"Lucida Console",而後點擊肯定將屬性應用到當前窗口。 }
package com.springms.cloud; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; /** * 簡單文件上傳微服務採起curl或者頁面點擊實現文件上傳。 * * @author hmilyylimh * * @version 0.0.1 * * @date 2017/9/26 * */ @SpringBootApplication @EnableEurekaClient public class MsFileUploadApplication { public static void main(String[] args) { SpringApplication.run(MsFileUploadApplication.class, args); System.out.println("【【【【【【 FileUpload微服務 】】】】】】已啓動."); } }
/**************************************************************************************** 1、簡單文件上傳微服務,並加入 zuul 微服務後用 zuul 微服務地址採起curl或者頁面點擊實現文件上傳(頁面上傳文件): 一、編寫 FileUploadController 文件,添加應用程序的註解 EnableEurekaClient 配置; 二、啓動 springms-discovery-eureka 模塊服務,啓動1個端口; 三、啓動 springms-file-upload 模塊服務; 四、新起網頁頁籤,輸入 http://localhost:8190/index.html 正常狀況下是能看到選擇文件上傳的界面; 五、選擇文件,而後點擊 upload 上傳文件,而後能夠在該項目所在的根目錄能夠看到剛剛上傳的那個文件,並且網頁也會將剛剛上傳完後的磁盤路徑呈如今頁面上; ****************************************************************************************/ /**************************************************************************************** 2、簡單文件上傳微服務,並加入 zuul 微服務後用 zuul 微服務地址採起curl或者頁面點擊實現文件上傳(命令上傳文件): 一、編寫 FileUploadController 文件,添加應用程序的註解 EnableEurekaClient 配置; 二、啓動 springms-discovery-eureka 模塊服務,啓動1個端口; 三、啓動 springms-file-upload 模塊服務; 四、進入 curl.exe 所在的目錄,嘗試 curl.exe www.baidu.com 看看是否正常,正常狀況下會打印百度首頁的一堆信息; 五、執行命令:curl.exe -F GBK "file=@文件名稱" localhost:8190/upload 六、正常狀況下,第5步驟執行後,直接返回上傳成功文件所在的磁盤全路徑; ****************************************************************************************/
https://gitee.com/ylimhhmily/SpringCloudTutorial.gitjava
SpringCloudTutorial交流QQ羣: 235322432git
SpringCloudTutorial交流微信羣: 微信溝通羣二維碼圖片連接web
歡迎關注,您的確定是對我最大的支持!!!spring