Merge branch '6.2.x'

This commit is contained in:
rstoyanchev
2025-05-28 11:10:06 +01:00
4 changed files with 37 additions and 13 deletions

View File

@@ -19,7 +19,7 @@ Java::
private String name;
private MultipartFile file;
private FilePart file;
// ...
@@ -42,7 +42,7 @@ Kotlin::
----
class MyForm(
val name: String,
val file: MultipartFile)
val file: FilePart)
@Controller
class FileUploadController {