Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
835 views
in Technique[技术] by (71.8m points)

upload the large image in mongodb with spring boot

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

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

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...