sql >> データベース >  >> NoSQL >> MongoDB

binairyやその他のデータを使用して画像を投稿する

    それを理解し、モデルで画像をバイナリとして設定します

    @RequestMapping(value = "/update", method = RequestMethod.POST, consumes = "multipart/form-data")
        public ResponseEntity<Payee> update(@RequestPart("payee") @Valid Payee payee, @RequestPart("file") @Valid MultipartFile image) throws IOException
        {
            // routine to update a payee including image
            if (image != null)
                payee.setImage(new Binary(BsonBinarySubType.BINARY, image.getBytes()));
            Payee result = payeeRepository.save(payee);
            return ResponseEntity.ok().body(result);
        }
    



    1. プロセスのメモリが不足しているときに大きなJavascriptオブジェクトを削除する

    2. MongoDBシェルで調整可能なカーソルを作成するにはどうすればよいですか?

    3. 1つのRedisLuaスクリプトで複数のDBを使用しますか?

    4. Ubuntu Linux、R、およびRStudioで奇妙なソケット接続エラーが発生したdoRedis