廖井涛
2025-11-28 67f0be5a1d634ba3274fa9366ceacc3580f056b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.northglass.web.manage;
 
import javax.servlet.http.HttpServletRequest;
 
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
 
 
 
@Controller
@RequestMapping(value="/manage")
public class ManageController {
    
    @RequestMapping(method=RequestMethod.GET)
    public String manage(Model model) {
        return "manage/NewFile";
    }
/*    
    @RequestMapping(method=RequestMethod.GET, value="/qiegemanage")
    public String qiegeManage(Model model) {
        return "manage/qiegemanage";
    }
    
    @RequestMapping(method=RequestMethod.GET, value="/ceshi")
    public String ceshi(Model model) {
        return "manage/ceshi";
    }
    
    @RequestMapping(method=RequestMethod.GET, value="/qiegemanage2")
    public String qiegeManage2(Model model) {
        return "manage/qiegemanage2";
    }*/
}