Newer
Older
NotifyInfo / NotifyServer3 / src / main / java / me / notify / notifyserver3 / controller / MainController.java
bello on 29 Oct 2019 491 bytes notify3
package me.notify.notifyserver3.controller;

import me.notify.notifyserver3.service.RegService;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;

@Controller
public class MainController {


    @Resource
    RegService regService;


    @RequestMapping("/")
    public String main(HttpServletRequest request) {

        return "index";
    }


}