All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.saphyra.randwo.page.IndexController Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package com.github.saphyra.randwo.page;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.servlet.ModelAndView;

import com.github.saphyra.randwo.page.component.ModelAndViewFactory;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;

@Controller
@Slf4j
@RequiredArgsConstructor
public class IndexController {
    private static final String INDEX_MAPPING = "/";

    private final ModelAndViewFactory modelAndViewFactory;

    @GetMapping(INDEX_MAPPING)
    ModelAndView index() {
        log.info("Request arrived to {}", INDEX_MAPPING);
        return modelAndViewFactory.create("index");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy