IndexCtrl.java 489 Bytes
package com.example.demo;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.ModelAndView;

/**
 * Created by jack on 2018/4/18.
 */
@RestController
public class IndexCtrl {
    @Autowired
    ShowCtrl showCtrl;

    @GetMapping("/index")
    public ModelAndView index() {
        return showCtrl.index();
    }

}