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

com.plumelog.lite.controller.PlumeLogPageController Maven / Gradle / Ivy

package com.plumelog.lite.controller;

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

@Controller
public class PlumeLogPageController {
    @RequestMapping("/plumelog")
    public String index() {
        return "plumelog";
    }
    @RequestMapping("/webConsole")
    public String webConsole() {
        return "webConsole";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy