더북(TheBook)

4. com.springmvc.domain 패키지의 Book 클래스에 도서 이미지에 대한 필드 이름인 bookImage를 추가하고, Setter()Getter() 메서드를 추가로 작성합니다.

코드 9-6 Book.java

package com.springmvc.domain;

import org.springframework.web.multipart.MultipartFile;

public class Book {
    ...
    private String condition;        // 신규 도서 또는 중고 도서 또는 전자책
    private MultipartFile bookImage; // 도서 이미지

    ...
    public Book(String bookId, String name, int unitPrice) {
        super();
        this.bookId = bookId;
        this.name = name;
        this.unitPrice = unitPrice;
    }

 

    public MultipartFile getBookImage() {
        return bookImage;
    }

    public void setBookImage(MultipartFile bookImage) {
        this.bookImage = bookImage;
    }
}

MultipartFile 타입인 bookImageSetter()Getter() 메서드입니다.

신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.