source: src/main/java/com/example/moviezone/web/HomeController.java@ ac25203

Last change on this file since ac25203 was ac25203, checked in by DenicaKj <dkorvezir@…>, 22 months ago

Spring Security

  • Property mode set to 100644
File size: 408 bytes
Line 
1package com.example.moviezone.web;
2
3
4import com.example.moviezone.service.FilmService;
5import org.springframework.stereotype.Controller;
6import org.springframework.web.bind.annotation.RequestMapping;
7
8@Controller
9@RequestMapping("/")
10public class HomeController {
11
12private final FilmService filmService;
13
14 public HomeController(FilmService filmService) {
15 this.filmService = filmService;
16 }
17
18
19}
Note: See TracBrowser for help on using the repository browser.