Last change
on this file since 2269653 was ac25203, checked in by DenicaKj <dkorvezir@…>, 22 months ago |
Spring Security
|
-
Property mode
set to
100644
|
File size:
408 bytes
|
Line | |
---|
1 | package com.example.moviezone.web;
|
---|
2 |
|
---|
3 |
|
---|
4 | import com.example.moviezone.service.FilmService;
|
---|
5 | import org.springframework.stereotype.Controller;
|
---|
6 | import org.springframework.web.bind.annotation.RequestMapping;
|
---|
7 |
|
---|
8 | @Controller
|
---|
9 | @RequestMapping("/")
|
---|
10 | public class HomeController {
|
---|
11 |
|
---|
12 | private 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.