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";
|
}*/
|
}
|