package controller;
import java.io.IOException;
import java.io.PrintWriter;
import org.apache.struts2.ServletActionContext;
import bean.Function;
/**
*
*/
import bean.Modul;
/**
* @author Administrator
*
*/
public class Menu {
private String ulid;
private Integer modulId;
/**
*
*/
public Menu() {
// TODO Auto-generated constructor stub
}
public String getUlid() {
return ulid;
}
public void setUlid(String ulid) {
this.ulid = ulid;
}
public Integer getModulId() {
return modulId;
}
public void setModulId(Integer modulId) {
this.modulId = modulId;
}
public void listModulMenu() {
String responseText="";
try {
ServletActionContext.getResponse().setContentType("text/html; charset=utf-8");
ServletActionContext.getResponse().setHeader("Cache-Control","no-cache");
ServletActionContext.getResponse().setCharacterEncoding("utf-8");
PrintWriter out= ServletActionContext.getResponse().getWriter();
/* String correctStr=new String(loginname.getBytes("ISO8859_1"),"GB2312");
if(correctStr.equals("admin"))
{
}*/
java.util.List<Modul> moduls = Modul.build();
for (Modul modul : moduls) {
if (!responseText.equals(""))
{
responseText += "," + modul.getId().toString() + "|" +modul.getName();
}
else
{
responseText = modul.getId().toString() +"|"+modul.getName();
}
}
out.print(responseText);
out.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public void listFunctionMenu() {
String responseText=ulid;
try {
ServletActionContext.getResponse().setContentType("text/html; charset=utf-8");
ServletActionContext.getResponse().setHeader("Cache-Control","no-cache");
ServletActionContext.getResponse().setCharacterEncoding("utf-8");
PrintWriter out= ServletActionContext.getResponse().getWriter();
/* String correctStr=new String(loginname.getBytes("ISO8859_1"),"GB2312");
if(correctStr.equals("admin"))
{
}*/
java.util.List<Function> functions = Function.build();
for (Function func : functions) {
responseText += "," + func.getUrl() + "|" +func.getName()+"|"+modulId+"|"+func.getId();
}
out.print(responseText);
out.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
龙年行大运
- 粉丝: 1385
- 资源: 3960
最新资源
- 基于Beego开发的问答系统详细文档+优秀项目+全部资料.zip
- 基于beego框架的接口在线文档管理系统详细文档+优秀项目+全部资料.zip
- 基于beego框架的cms系统详细文档+优秀项目+全部资料.zip
- 基于GF(Go Frame)的后台管理系统详细文档+优秀项目+全部资料.zip
- 基于Gin + Ant Design Pro的前后端分离管理系统的前后端模块详细文档+优秀项目+全部资料.zip
- 基于Excel VBA和Go语言的自动化考试系统详细文档+优秀项目+全部资料.zip
- 基于gin+websocket+mongodb实现 IM 即时聊天系统,基于WS连接的即时聊天,支持单聊,在线回复以及历史记录查询详细文档+优秀项目+全部资料.zip
- 基于Gin + Vue + Element UI & Arco Design & Ant Design 的前后端分离权限管理系统脚手架(包含了
- 基于gin+vue+element搭建的商城管理系统详细文档+优秀项目+全部资料.zip
- 基于Go + Vue开发的管理系统脚手架, 前后端分离, 仅包含项目开发的必需部分, 基于角色的访问控制(RBAC), 分包合理, 精简易于扩展。 后端Go包含
- 基于go micro + gin + kafka + etcd的分布式消息即时通信微服务系统详细文档+优秀项目+全部资料.zip
- 基于Go + Golang + Uniapp + Vue + ElementUi + Goframe框架的新零售社交电商系统(除了go商城系统外,还有java商
- 基于Go 标准库构建的博客系统、此项目非常适合作为 Go 新手的第一个上手项目详细文档+优秀项目+全部资料.zip
- 基于go,gin,JWT,权限管理系统详细文档+优秀项目+全部资料.zip
- 基于Go Web开发实战,基于Go语言,Beego框架开发的B2C模式的电商系统详细文档+优秀项目+全部资料.zip
- 基于go、gorm、gin、mysql及layui构建的人力资源管理系统。提供员工管理、考试管理、薪资考勤管理、权限管理及分公司分库数据隔离等功能详细文档+优秀项目+全部资料.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈