co.edu.utb.softeng.springtodos.controllers.PagesController.java Source code

Java tutorial

Introduction

Here is the source code for co.edu.utb.softeng.springtodos.controllers.PagesController.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package co.edu.utb.softeng.springtodos.controllers;

import java.util.HashMap;
import java.util.Map;
import org.springframework.security.access.annotation.Secured;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

/**
 *
 * @author William
 */

@Controller
public class PagesController {

    private final String apiUrl = "http://localhost:8080/SpringToDos/";

    //@Secured("ROLE_ADMIN")
    @RequestMapping(value = "/")
    public ModelAndView getHomePage() {
        Map<String, Object> params = new HashMap<>();
        params.put("apiUrl", apiUrl);
        return new ModelAndView("index", params);
    }
}