Changeset f25e8dd in Git for src/main/java
- Timestamp:
- 02/05/22 22:48:19 (3 years ago)
- Branches:
- main
- Children:
- 2efe93e
- Parents:
- 5b447b0
- Location:
- src/main/java/com/wediscussmovies/project
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/wediscussmovies/project/configuration/SecurityConfig.java
r5b447b0 rf25e8dd 5 5 import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder; 6 6 import org.springframework.security.config.annotation.web.builders.HttpSecurity; 7 import org.springframework.security.config.annotation.web.builders.WebSecurity; 7 8 import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter; 8 9 … … 15 16 } 16 17 18 @Override 19 public void configure(WebSecurity web) throws Exception { 20 web.ignoring().antMatchers("/*.jpg"); 21 web.ignoring().antMatchers("/*.png"); 22 web.ignoring().antMatchers("/*.css"); 23 web.ignoring().antMatchers("/*.js"); 24 } 17 25 18 26 @Override … … 21 29 http.csrf().disable() 22 30 .authorizeRequests() 23 .antMatchers("/movies","/ actors","/directors","/discussions","/replies","/register","/genres").permitAll()31 .antMatchers("/movies","/movies/**/","/actors","/persons/**/","/directors","/discussions","/discussions/**/","/discussions/all/**/","/replies","/register","/genres").permitAll() 24 32 .anyRequest() 25 33 .authenticated() -
src/main/java/com/wediscussmovies/project/model/Movie.java
r5b447b0 rf25e8dd 6 6 import com.wediscussmovies.project.model.relation.MovieRates; 7 7 import lombok.Data; 8 import org.hibernate.annotations.Fetch; 8 9 9 10 import javax.persistence.*; … … 37 38 private Double imdbRating; 38 39 39 @OneToMany(mappedBy = "movie" )40 @OneToMany(mappedBy = "movie", fetch = FetchType.LAZY) 40 41 private Collection<MovieActors> actors; 41 42 @OneToMany(mappedBy = "movie") -
src/main/java/com/wediscussmovies/project/web/controller/MovieController.java
r5b447b0 rf25e8dd 61 61 } 62 62 63 @GetMapping("/{id}") 64 public String getMovie(@PathVariable Integer id, Model model){ 65 model.addAttribute("movie", movieService.findById(id)); 66 67 Authentication auth = SecurityContextHolder.getContext().getAuthentication(); 68 if (!(auth instanceof AnonymousAuthenticationToken)){ 69 UserDetails userDetails = (UserDetails) auth.getPrincipal(); 70 User user = (User) userDetails; 71 model.addAttribute("likedMovies",this.movieService.findLikedMoviesByUser(user)); 72 model.addAttribute("user",user); 73 } 74 75 model.addAttribute("contentTemplate", "movieShow"); 76 return "template"; 77 } 63 78 64 79 @GetMapping("/add") -
src/main/java/com/wediscussmovies/project/web/controller/PersonController.java
r5b447b0 rf25e8dd 45 45 model.addAttribute("persons", persons); 46 46 model.addAttribute("contentTemplate", "personsList"); 47 return "template"; 48 } 49 50 @GetMapping("/persons/{id}") 51 public String getPerson(@PathVariable Integer id, Model model){ 52 Person person = personService.findById(id); 53 //Error handling, could be null!!!!!!!!! 54 model.addAttribute("person", person); 55 56 model.addAttribute("contentTemplate", "personShow"); 47 57 return "template"; 48 58 }
Note:
See TracChangeset
for help on using the changeset viewer.