画像をバイト配列に保存し、mongoDb データベースに保存し、バイト配列を画像ファイルに戻し、.GSP ページに表示したかった
ドメイン
class Profile{
static mapWith = "mongo"
String firstname
String lastname
byte[] imgpath
}
コントローラ
def saveimage{
File filepath = new File("C:\\man-of-steel-theme.jpg");
def encodedData = filepath.bytes;
profile.imgpath=encodedData;
profile.save();
}
これでは、正しいバイト配列がmongodbに保存され、画像ファイルを取得できないかどうかわかりません