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

com.github.saphyra.randwo.page.LabelsController 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 LabelsController {
    static final String LABELS_MAPPING = "/labels";

    private final ModelAndViewFactory modelAndViewFactory;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy