Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

trying to load the large image in mongoDB but could nt upload it

my servive code :
        DriverPhoto photo = new DriverPhoto();
        photo.setDriverImage(new Binary(BsonBinarySubType.BINARY, image.getBytes()));
        photo.setDriverName(name)

Entity
    @Document(collection = "driver_images")
public class DriverPhoto {
    @Indexed(unique = true)
    private String driverName;

Controller 

public ResponseEntity<StatusResponse> addDriverPhoto(@RequestParam("driver_name") String name, @RequestParam MultipartFile image,
                                                     @RequestParam("userId") String userId, @RequestParam("type") String type) throws IOException {

Could you pls give any suggestion, how to load the large image in mongoDB with spring

question from:https://stackoverflow.com/questions/65945787/upload-the-large-image-in-mongodb-with-spring-boot

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
987 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...