Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/com/wediscussmovies/project/model/Movie.java

    rf25e8dd r5b447b0  
    66import com.wediscussmovies.project.model.relation.MovieRates;
    77import lombok.Data;
    8 import org.hibernate.annotations.Fetch;
    98
    109import javax.persistence.*;
     
    3837    private Double imdbRating;
    3938
    40     @OneToMany(mappedBy = "movie", fetch = FetchType.LAZY)
     39    @OneToMany(mappedBy = "movie")
    4140    private Collection<MovieActors> actors;
    4241    @OneToMany(mappedBy = "movie")
Note: See TracChangeset for help on using the changeset viewer.