upload.html 293 B

12345678910111213
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <body>
  4. <h1>Spring Boot file upload example</h1>
  5. <form method="POST" action="/upload" enctype="multipart/form-data">
  6. <input type="file" name="file" /><br/><br/>
  7. <input type="submit" value="Submit" />
  8. </form>
  9. </body>
  10. </html>