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

com.redismq.server.controller.IndexController Maven / Gradle / Ivy

package com.redismq.server.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class IndexController {
 
    @RequestMapping("/")
    public String index(){
        return "index";
    }
 
    @RequestMapping("/index.html")
    public String indexHtml(){
        return "index";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy