Could not Upload File using MongoDb GridFs
问题 I'm new to Spring-Boot,i'm trying to upload file to Mongodb Database, save its objectId and link it to my document, in order to download it Later. Here is my class Person: @Document public class Person { @Id private String id; private String firstName; private String lastName; private String age; private String filename; private ObjectId file; ....} This is my controller method: @RequestMapping(value="/addperson",method=RequestMethod.POST) public String ajout(Model model,@Valid PersonForm pf)